CfnResourceGatewayProps
- class aws_cdk.aws_vpclattice.CfnResourceGatewayProps(*, ip_address_type=None, name=None, security_group_ids=None, subnet_ids=None, tags=None, vpc_identifier=None)
Bases:
object
Properties for defining a
CfnResourceGateway
.- Parameters:
ip_address_type (
Optional
[str
]) – The type of IP address used by the resource gateway.name (
Optional
[str
]) – The name of the resource gateway.security_group_ids (
Optional
[Sequence
[str
]]) – The IDs of the security groups applied to the resource gateway.subnet_ids (
Optional
[Sequence
[str
]]) – The IDs of the VPC subnets for the resource gateway.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – The tags for the resource gateway.vpc_identifier (
Optional
[str
]) – The ID of the VPC for the resource gateway.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_vpclattice as vpclattice cfn_resource_gateway_props = vpclattice.CfnResourceGatewayProps( ip_address_type="ipAddressType", name="name", security_group_ids=["securityGroupIds"], subnet_ids=["subnetIds"], tags=[CfnTag( key="key", value="value" )], vpc_identifier="vpcIdentifier" )
Attributes
- ip_address_type
The type of IP address used by the resource gateway.
- name
The name of the resource gateway.
- security_group_ids
The IDs of the security groups applied to the resource gateway.
- subnet_ids
The IDs of the VPC subnets for the resource gateway.
- tags
The tags for the resource gateway.
- vpc_identifier
The ID of the VPC for the resource gateway.