@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.251Z") @Stability(value=Stable) public interface CfnLocalGatewayRouteTableVPCAssociationProps 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.ec2.*;
CfnLocalGatewayRouteTableVPCAssociationProps cfnLocalGatewayRouteTableVPCAssociationProps = CfnLocalGatewayRouteTableVPCAssociationProps.builder()
.localGatewayRouteTableId("localGatewayRouteTableId")
.vpcId("vpcId")
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnLocalGatewayRouteTableVPCAssociationProps.Builder
A builder for
CfnLocalGatewayRouteTableVPCAssociationProps |
static class |
CfnLocalGatewayRouteTableVPCAssociationProps.Jsii$Proxy
An implementation for
CfnLocalGatewayRouteTableVPCAssociationProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnLocalGatewayRouteTableVPCAssociationProps.Builder |
builder() |
String |
getLocalGatewayRouteTableId()
The ID of the local gateway route table.
|
default List<CfnTag> |
getTags()
The tags assigned to the association.
|
String |
getVpcId()
The ID of the VPC.
|
@Stability(value=Stable) @NotNull String getLocalGatewayRouteTableId()
@Stability(value=Stable) @NotNull String getVpcId()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnLocalGatewayRouteTableVPCAssociationProps.Builder builder()
Copyright © 2022. All rights reserved.