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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnResponderGateway.ManagedEndpointConfigurationPropertystatic final classAn implementation forCfnResponderGateway.ManagedEndpointConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnResponderGateway.AutoScalingGroupsConfigurationPropertydefault ObjectReturns union: eitherIResolvableorCfnResponderGateway.EksEndpointsConfigurationPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAutoScalingGroupsConfiguration
Returns union: eitherIResolvableorCfnResponderGateway.AutoScalingGroupsConfigurationProperty- See Also:
-
getEksEndpointsConfiguration
Returns union: eitherIResolvableorCfnResponderGateway.EksEndpointsConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnResponderGateway.ManagedEndpointConfigurationProperty.Builder builder()
-