CfnRequesterGatewayMixinProps
- class aws_cdk.mixins_preview.aws_rtbfabric.mixins.CfnRequesterGatewayMixinProps(*, description=None, security_group_ids=None, subnet_ids=None, tags=None, vpc_id=None)
Bases:
objectProperties for CfnRequesterGatewayPropsMixin.
- Parameters:
description (
Optional[str]) – An optional description for the requester gateway.security_group_ids (
Optional[Sequence[str]]) – The unique identifiers of the security groups.subnet_ids (
Optional[Sequence[str]]) – The unique identifiers of the subnets.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.vpc_id (
Optional[str]) – The unique identifier of the Virtual Private Cloud (VPC).
- 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.mixins_preview.aws_rtbfabric import mixins as rtbfabric_mixins cfn_requester_gateway_mixin_props = rtbfabric_mixins.CfnRequesterGatewayMixinProps( description="description", security_group_ids=["securityGroupIds"], subnet_ids=["subnetIds"], tags=[CfnTag( key="key", value="value" )], vpc_id="vpcId" )
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).