@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.067Z") @Stability(value=Stable) public interface CfnVpcAttachmentProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.networkmanager.*;
CfnVpcAttachmentProps cfnVpcAttachmentProps = CfnVpcAttachmentProps.builder()
.coreNetworkId("coreNetworkId")
.options(VpcOptionsProperty.builder()
.ipv6Support(false)
.build())
.subnetArns(List.of("subnetArns"))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.vpcArn("vpcArn")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnVpcAttachmentProps.Builder
A builder for
CfnVpcAttachmentProps |
static class |
CfnVpcAttachmentProps.Jsii$Proxy
An implementation for
CfnVpcAttachmentProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnVpcAttachmentProps.Builder |
builder() |
default String |
getCoreNetworkId()
The core network ID.
|
default Object |
getOptions()
Options for creating the VPC attachment.
|
default List<String> |
getSubnetArns()
The subnet ARNs.
|
default List<CfnTag> |
getTags()
The tags associated with the VPC attachment.
|
default String |
getVpcArn()
The ARN of the VPC attachment.
|
@Stability(value=Stable) @Nullable default String getCoreNetworkId()
@Stability(value=Stable) @Nullable default Object getOptions()
@Stability(value=Stable) @Nullable default List<String> getSubnetArns()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) @Nullable default String getVpcArn()
@Stability(value=Stable) static CfnVpcAttachmentProps.Builder builder()
CfnVpcAttachmentProps.Builder of CfnVpcAttachmentPropsCopyright © 2022. All rights reserved.