Interface CfnResponderGatewayProps

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

@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)", date="2025-12-18T18:20:17.013Z") @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")
                         .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: