Interface CfnResponderGateway.ManagedEndpointConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnResponderGateway.ManagedEndpointConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnResponderGateway

@Stability(Stable) public static interface CfnResponderGateway.ManagedEndpointConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.rtbfabric.*;
 ManagedEndpointConfigurationProperty managedEndpointConfigurationProperty = ManagedEndpointConfigurationProperty.builder()
         .autoScalingGroupsConfiguration(AutoScalingGroupsConfigurationProperty.builder()
                 .autoScalingGroupNameList(List.of("autoScalingGroupNameList"))
                 .roleArn("roleArn")
                 .build())
         .eksEndpointsConfiguration(EksEndpointsConfigurationProperty.builder()
                 .clusterApiServerCaCertificateChain("clusterApiServerCaCertificateChain")
                 .clusterApiServerEndpointUri("clusterApiServerEndpointUri")
                 .clusterName("clusterName")
                 .endpointsResourceName("endpointsResourceName")
                 .endpointsResourceNamespace("endpointsResourceNamespace")
                 .roleArn("roleArn")
                 .build())
         .build();
 

See Also: