Interface CfnResponderGatewayProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnResponderGatewayProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.133.0 (build 0f43e37)",
date="2026-07-02T13:32:46.528Z")
@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
.acmCertificateArn("acmCertificateArn")
.description("description")
.domainName("domainName")
.gatewayType("gatewayType")
.listenerConfig(ListenerConfigProperty.builder()
.protocols(List.of("protocols"))
.build())
.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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnResponderGatewayPropsstatic final classAn implementation forCfnResponderGatewayProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default Stringdefault StringAn optional description for the responder gateway.default StringThe domain name for the responder gateway.default Stringdefault ObjectReturns union: eitherIResolvableorCfnResponderGateway.ListenerConfigPropertydefault ObjectThe configuration for the managed endpoint.getPort()The networking port to use.The networking protocol to use.The unique identifiers of the security groups.The unique identifiers of the subnets.getTags()A map of the key-value pairs of the tag or tags to assign to the resource.default ObjectThe configuration of the trust store.getVpcId()The unique identifier of the Virtual Private Cloud (VPC).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPort
The networking port to use.- See Also:
-
getProtocol
The networking protocol to use.- See Also:
-
getSecurityGroupIds
The unique identifiers of the security groups.Returns union: Listinvalid input: '<'either
StringorISecurityGroupRef>- See Also:
-
getSubnetIds
The unique identifiers of the subnets.Returns union: Listinvalid input: '<'either
StringorISubnetRef>- See Also:
-
getVpcId
- See Also:
-
getAcmCertificateArn
- See Also:
-
getDescription
An optional description for the responder gateway.- See Also:
-
getDomainName
The domain name for the responder gateway.- See Also:
-
getGatewayType
- See Also:
-
getListenerConfig
Returns union: eitherIResolvableorCfnResponderGateway.ListenerConfigProperty- See Also:
-
getManagedEndpointConfiguration
The configuration for the managed endpoint.Returns union: either
IResolvableorCfnResponderGateway.ManagedEndpointConfigurationProperty- See Also:
-
getTags
A map of the key-value pairs of the tag or tags to assign to the resource.- See Also:
-
getTrustStoreConfiguration
The configuration of the trust store.Returns union: either
IResolvableorCfnResponderGateway.TrustStoreConfigurationProperty- See Also:
-
builder
- Returns:
- a
CfnResponderGatewayProps.BuilderofCfnResponderGatewayProps
-