interface CfnResponderGatewayMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RTBFabric.Mixins.CfnResponderGatewayMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrtbfabric/mixins#CfnResponderGatewayMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.rtbfabric.mixins.CfnResponderGatewayMixinProps |
Python | aws_cdk.mixins_preview.aws_rtbfabric.mixins.CfnResponderGatewayMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_rtbfabric » mixins » CfnResponderGatewayMixinProps |
Properties for CfnResponderGatewayPropsMixin.
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 cfnResponderGatewayMixinProps: rtbfabric_mixins.CfnResponderGatewayMixinProps = {
description: 'description',
domainName: 'domainName',
managedEndpointConfiguration: {
autoScalingGroupsConfiguration: {
autoScalingGroupNameList: ['autoScalingGroupNameList'],
roleArn: 'roleArn',
},
eksEndpointsConfiguration: {
clusterApiServerCaCertificateChain: 'clusterApiServerCaCertificateChain',
clusterApiServerEndpointUri: 'clusterApiServerEndpointUri',
clusterName: 'clusterName',
endpointsResourceName: 'endpointsResourceName',
endpointsResourceNamespace: 'endpointsResourceNamespace',
roleArn: 'roleArn',
},
},
port: 123,
protocol: 'protocol',
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
tags: [{
key: 'key',
value: 'value',
}],
trustStoreConfiguration: {
certificateAuthorityCertificates: ['certificateAuthorityCertificates'],
},
vpcId: 'vpcId',
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
| port? | number | The networking port to use. |
| protocol? | string | The networking protocol to use. |
| 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. |
| trust | IResolvable | Trust | The configuration of the trust store. |
| vpc | string | 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.
port?
Type:
number
(optional)
The networking port to use.
protocol?
Type:
string
(optional)
The networking protocol to use.
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.
trustStoreConfiguration?
Type:
IResolvable | Trust
(optional)
The configuration of the trust store.
vpcId?
Type:
string
(optional)
The unique identifier of the Virtual Private Cloud (VPC).

.NET
Go
Java
Python
TypeScript