interface CfnResponderGatewayProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RTBFabric.CfnResponderGatewayProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrtbfabric#CfnResponderGatewayProps |
Java | software.amazon.awscdk.services.rtbfabric.CfnResponderGatewayProps |
Python | aws_cdk.aws_rtbfabric.CfnResponderGatewayProps |
TypeScript | aws-cdk-lib » aws_rtbfabric » CfnResponderGatewayProps |
Properties for defining a CfnResponderGateway.
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 cfnResponderGatewayProps: rtbfabric.CfnResponderGatewayProps = {
port: 123,
protocol: 'protocol',
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
vpcId: 'vpcId',
// the properties below are optional
description: 'description',
domainName: 'domainName',
managedEndpointConfiguration: {
autoScalingGroupsConfiguration: {
autoScalingGroupNameList: ['autoScalingGroupNameList'],
roleArn: 'roleArn',
},
eksEndpointsConfiguration: {
clusterApiServerCaCertificateChain: 'clusterApiServerCaCertificateChain',
clusterApiServerEndpointUri: 'clusterApiServerEndpointUri',
clusterName: 'clusterName',
endpointsResourceName: 'endpointsResourceName',
endpointsResourceNamespace: 'endpointsResourceNamespace',
roleArn: 'roleArn',
},
},
tags: [{
key: 'key',
value: 'value',
}],
trustStoreConfiguration: {
certificateAuthorityCertificates: ['certificateAuthorityCertificates'],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| port | number | The networking port to use. |
| protocol | string | The networking protocol to use. |
| security | (string | ISecurity)[] | The unique identifiers of the security groups. |
| subnet | (string | ISubnet)[] | The unique identifiers of the subnets. |
| vpc | string | IVPCRef | The unique identifier of the Virtual Private Cloud (VPC). |
| description? | string | An optional description for the responder gateway. |
| domain | string | The domain name for the responder gateway. |
| managed | IResolvable | Managed | The configuration for the managed endpoint. |
| tags? | Cfn[] | A map of the key-value pairs of the tag or tags to assign to the resource. |
| trust | IResolvable | Trust | The configuration of the trust store. |
port
Type:
number
The networking port to use.
protocol
Type:
string
The networking protocol to use.
securityGroupIds
Type:
(string | ISecurity)[]
The unique identifiers of the security groups.
subnetIds
Type:
(string | ISubnet)[]
The unique identifiers of the subnets.
vpcId
Type:
string | IVPCRef
The unique identifier of the Virtual Private Cloud (VPC).
description?
Type:
string
(optional)
An optional description for the responder gateway.
domainName?
Type:
string
(optional)
The domain name for the responder gateway.
managedEndpointConfiguration?
Type:
IResolvable | Managed
(optional)
The configuration for the managed endpoint.
tags?
Type:
Cfn[]
(optional)
A map of the key-value pairs of the tag or tags to assign to the resource.
trustStoreConfiguration?
Type:
IResolvable | Trust
(optional)
The configuration of the trust store.

.NET
Go
Java
Python
TypeScript