CfnRequesterGatewayProps
- class aws_cdk.aws_rtbfabric.CfnRequesterGatewayProps(*, security_group_ids, subnet_ids, vpc_id, description=None, tags=None)
Bases:
objectProperties for defining a
CfnRequesterGateway.- Parameters:
security_group_ids (
Sequence[Union[str,ISecurityGroupRef]]) – The unique identifiers of the security groups.subnet_ids (
Sequence[Union[str,ISubnetRef]]) – The unique identifiers of the subnets.vpc_id (
Union[str,IVPCRef]) – The unique identifier of the Virtual Private Cloud (VPC).description (
Optional[str]) – An optional description for the requester gateway.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – A map of the key-value pairs of the tag or tags to assign to the resource.
- See:
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_rtbfabric as rtbfabric cfn_requester_gateway_props = rtbfabric.CfnRequesterGatewayProps( security_group_ids=["securityGroupIds"], subnet_ids=["subnetIds"], vpc_id="vpcId", # the properties below are optional description="description", tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
An optional description for the requester gateway.
- security_group_ids
The unique identifiers of the security groups.
- subnet_ids
The unique identifiers of the subnets.
- tags
A map of the key-value pairs of the tag or tags to assign to the resource.
- vpc_id
The unique identifier of the Virtual Private Cloud (VPC).