interface ManagedEndpointConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_rtbfabric.CfnResponderGateway.ManagedEndpointConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrtbfabric#CfnResponderGateway_ManagedEndpointConfigurationProperty |
Java | software.amazon.awscdk.services.rtbfabric.CfnResponderGateway.ManagedEndpointConfigurationProperty |
Python | aws_cdk.aws_rtbfabric.CfnResponderGateway.ManagedEndpointConfigurationProperty |
TypeScript | aws-cdk-lib » aws_rtbfabric » CfnResponderGateway » ManagedEndpointConfigurationProperty |
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 managedEndpointConfigurationProperty: rtbfabric.CfnResponderGateway.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 | |
| eks | IResolvable | Eks |
autoScalingGroupsConfiguration?
Type:
IResolvable | Auto
(optional)
eksEndpointsConfiguration?
Type:
IResolvable | Eks
(optional)

.NET
Go
Java
Python
TypeScript