CfnRequesterGatewayProps

class aws_cdk.aws_rtbfabric.CfnRequesterGatewayProps(*, security_group_ids, subnet_ids, vpc_id, description=None, tags=None)

Bases: object

Properties 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html#cfn-rtbfabric-requestergateway-description

security_group_ids

The unique identifiers of the security groups.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html#cfn-rtbfabric-requestergateway-securitygroupids

subnet_ids

The unique identifiers of the subnets.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html#cfn-rtbfabric-requestergateway-subnetids

tags

A map of the key-value pairs of the tag or tags to assign to the resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html#cfn-rtbfabric-requestergateway-tags

vpc_id

The unique identifier of the Virtual Private Cloud (VPC).

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rtbfabric-requestergateway.html#cfn-rtbfabric-requestergateway-vpcid