interface CfnRequesterGatewayMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.RTBFabric.CfnRequesterGatewayMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrtbfabric#CfnRequesterGatewayMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.rtbfabric.CfnRequesterGatewayMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_rtbfabric.CfnRequesterGatewayMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_rtbfabric » CfnRequesterGatewayMixinProps |
Properties for CfnRequesterGatewayPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_rtbfabric as rtbfabric } from '@aws-cdk/cfn-property-mixins';
const cfnRequesterGatewayMixinProps: rtbfabric.CfnRequesterGatewayMixinProps = {
description: 'description',
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
tags: [{
key: 'key',
value: 'value',
}],
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | An optional description for the requester gateway. |
| security | (string | ISecurity)[] | The unique identifiers of the security groups. |
| subnet | (string | ISubnet)[] | The unique identifiers of the subnets. |
| tags? | Cfn[] | A map of the key-value pairs of the tag or tags to assign to the resource. |
| vpc | string | IVPCRef | The unique identifier of the Virtual Private Cloud (VPC). |
description?
Type:
string
(optional)
An optional description for the requester gateway.
securityGroupIds?
Type:
(string | ISecurity)[]
(optional)
The unique identifiers of the security groups.
subnetIds?
Type:
(string | ISubnet)[]
(optional)
The unique identifiers of the subnets.
tags?
Type:
Cfn[]
(optional)
A map of the key-value pairs of the tag or tags to assign to the resource.
vpcId?
Type:
string | IVPCRef
(optional)
The unique identifier of the Virtual Private Cloud (VPC).

.NET
Go
Java
Python
TypeScript