Interface CfnResponderGatewayProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnResponderGatewayProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.130.0 (build 048a5ee)", date="2026-05-21T17:27:44.108Z") @Stability(Stable) public interface CfnResponderGatewayProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnResponderGateway.

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.*;
 CfnResponderGatewayProps cfnResponderGatewayProps = CfnResponderGatewayProps.builder()
         .port(123)
         .protocol("protocol")
         .securityGroupIds(List.of("securityGroupIds"))
         .subnetIds(List.of("subnetIds"))
         .vpcId("vpcId")
         // the properties below are optional
         .description("description")
         .domainName("domainName")
         .managedEndpointConfiguration(ManagedEndpointConfigurationProperty.builder()
                 .autoScalingGroupsConfiguration(AutoScalingGroupsConfigurationProperty.builder()
                         .autoScalingGroupNameList(List.of("autoScalingGroupNameList"))
                         .roleArn("roleArn")
                         // the properties below are optional
                         .healthCheckConfig(HealthCheckConfigProperty.builder()
                                 .path("path")
                                 .port(123)
                                 // the properties below are optional
                                 .healthyThresholdCount(123)
                                 .intervalSeconds(123)
                                 .protocol("protocol")
                                 .statusCodeMatcher("statusCodeMatcher")
                                 .timeoutMs(123)
                                 .unhealthyThresholdCount(123)
                                 .build())
                         .build())
                 .eksEndpointsConfiguration(EksEndpointsConfigurationProperty.builder()
                         .clusterApiServerCaCertificateChain("clusterApiServerCaCertificateChain")
                         .clusterApiServerEndpointUri("clusterApiServerEndpointUri")
                         .clusterName("clusterName")
                         .endpointsResourceName("endpointsResourceName")
                         .endpointsResourceNamespace("endpointsResourceNamespace")
                         .roleArn("roleArn")
                         .build())
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .trustStoreConfiguration(TrustStoreConfigurationProperty.builder()
                 .certificateAuthorityCertificates(List.of("certificateAuthorityCertificates"))
                 .build())
         .build();
 

See Also: