interface CfnRequesterGatewayProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RTBFabric.CfnRequesterGatewayProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrtbfabric#CfnRequesterGatewayProps |
Java | software.amazon.awscdk.services.rtbfabric.CfnRequesterGatewayProps |
Python | aws_cdk.aws_rtbfabric.CfnRequesterGatewayProps |
TypeScript | aws-cdk-lib » aws_rtbfabric » CfnRequesterGatewayProps |
Properties for defining a CfnRequesterGateway.
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-lib';
const cfnRequesterGatewayProps: rtbfabric.CfnRequesterGatewayProps = {
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
vpcId: 'vpcId',
// the properties below are optional
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| security | string[] | The unique identifiers of the security groups. |
| subnet | string[] | The unique identifiers of the subnets. |
| vpc | string | The unique identifier of the Virtual Private Cloud (VPC). |
| description? | string | An optional description for the requester gateway. |
| tags? | Cfn[] | A map of the key-value pairs of the tag or tags to assign to the resource. |
securityGroupIds
Type:
string[]
The unique identifiers of the security groups.
subnetIds
Type:
string[]
The unique identifiers of the subnets.
vpcId
Type:
string
The unique identifier of the Virtual Private Cloud (VPC).
description?
Type:
string
(optional)
An optional description for the requester gateway.
tags?
Type:
Cfn[]
(optional)
A map of the key-value pairs of the tag or tags to assign to the resource.

.NET
Go
Java
Python
TypeScript