CfnResourceGatewayProps
- class aws_cdk.aws_vpclattice.CfnResourceGatewayProps(*, name, subnet_ids, vpc_identifier, ip_address_type=None, ipv4_addresses_per_eni=None, security_group_ids=None, tags=None)
- Bases: - object- Properties for defining a - CfnResourceGateway.- Parameters:
- name ( - str) – The name of the resource gateway.
- subnet_ids ( - Sequence[- str]) – The IDs of the VPC subnets for the resource gateway.
- vpc_identifier ( - str) – The ID of the VPC for the resource gateway.
- ip_address_type ( - Optional[- str]) – The type of IP address used by the resource gateway.
- ipv4_addresses_per_eni ( - Union[- int,- float,- None]) – The number of IPv4 addresses in each ENI for the resource gateway.
- security_group_ids ( - Optional[- Sequence[- str]]) – The IDs of the security groups applied to the resource gateway.
- tags ( - Optional[- Sequence[- Union[- CfnTag,- Dict[- str,- Any]]]]) – The tags 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( name="name", subnet_ids=["subnetIds"], vpc_identifier="vpcIdentifier", # the properties below are optional ip_address_type="ipAddressType", ipv4_addresses_per_eni=123, security_group_ids=["securityGroupIds"], tags=[CfnTag( key="key", value="value" )] ) - Attributes - ip_address_type
- The type of IP address used by the resource gateway. 
 - ipv4_addresses_per_eni
- The number of IPv4 addresses in each ENI for 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.