interface CfnRequesterGatewayMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RTBFabric.Mixins.CfnRequesterGatewayMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrtbfabric/mixins#CfnRequesterGatewayMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.rtbfabric.mixins.CfnRequesterGatewayMixinProps |
Python | aws_cdk.mixins_preview.aws_rtbfabric.mixins.CfnRequesterGatewayMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_rtbfabric » mixins » 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 { mixins as rtbfabric_mixins } from '@aws-cdk/mixins-preview/aws-rtbfabric';
const cfnRequesterGatewayMixinProps: rtbfabric_mixins.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[] | The unique identifiers of the security groups. |
| subnet | string[] | 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 | The unique identifier of the Virtual Private Cloud (VPC). |
description?
Type:
string
(optional)
An optional description for the requester gateway.
securityGroupIds?
Type:
string[]
(optional)
The unique identifiers of the security groups.
subnetIds?
Type:
string[]
(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
(optional)
The unique identifier of the Virtual Private Cloud (VPC).

.NET
Go
Java
Python
TypeScript