interface ManagedEndpointConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RTBFabric.Mixins.CfnResponderGatewayPropsMixin.ManagedEndpointConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrtbfabric/mixins#CfnResponderGatewayPropsMixin_ManagedEndpointConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.rtbfabric.mixins.CfnResponderGatewayPropsMixin.ManagedEndpointConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_rtbfabric.mixins.CfnResponderGatewayPropsMixin.ManagedEndpointConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_rtbfabric » mixins » CfnResponderGatewayPropsMixin » ManagedEndpointConfigurationProperty |
Describes the configuration of a managed endpoint.
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 managedEndpointConfigurationProperty: rtbfabric_mixins.CfnResponderGatewayPropsMixin.ManagedEndpointConfigurationProperty = {
autoScalingGroupsConfiguration: {
autoScalingGroupNameList: ['autoScalingGroupNameList'],
roleArn: 'roleArn',
},
eksEndpointsConfiguration: {
clusterApiServerCaCertificateChain: 'clusterApiServerCaCertificateChain',
clusterApiServerEndpointUri: 'clusterApiServerEndpointUri',
clusterName: 'clusterName',
endpointsResourceName: 'endpointsResourceName',
endpointsResourceNamespace: 'endpointsResourceNamespace',
roleArn: 'roleArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| auto | IResolvable | Auto | Describes the configuration of an auto scaling group. |
| eks | IResolvable | Eks | Describes the configuration of an Amazon Elastic Kubernetes Service endpoint. |
autoScalingGroupsConfiguration?
Type:
IResolvable | Auto
(optional)
Describes the configuration of an auto scaling group.
eksEndpointsConfiguration?
Type:
IResolvable | Eks
(optional)
Describes the configuration of an Amazon Elastic Kubernetes Service endpoint.

.NET
Go
Java
Python
TypeScript