@Stability(value=Stable)
public static interface CfnVirtualGateway.VirtualGatewayListenerProperty
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.appmesh.*;
VirtualGatewayListenerProperty virtualGatewayListenerProperty = VirtualGatewayListenerProperty.builder()
.portMapping(VirtualGatewayPortMappingProperty.builder()
.port(123)
.protocol("protocol")
.build())
// the properties below are optional
.connectionPool(VirtualGatewayConnectionPoolProperty.builder()
.grpc(VirtualGatewayGrpcConnectionPoolProperty.builder()
.maxRequests(123)
.build())
.http(VirtualGatewayHttpConnectionPoolProperty.builder()
.maxConnections(123)
// the properties below are optional
.maxPendingRequests(123)
.build())
.http2(VirtualGatewayHttp2ConnectionPoolProperty.builder()
.maxRequests(123)
.build())
.build())
.healthCheck(VirtualGatewayHealthCheckPolicyProperty.builder()
.healthyThreshold(123)
.intervalMillis(123)
.protocol("protocol")
.timeoutMillis(123)
.unhealthyThreshold(123)
// the properties below are optional
.path("path")
.port(123)
.build())
.tls(VirtualGatewayListenerTlsProperty.builder()
.certificate(VirtualGatewayListenerTlsCertificateProperty.builder()
.acm(VirtualGatewayListenerTlsAcmCertificateProperty.builder()
.certificateArn("certificateArn")
.build())
.file(VirtualGatewayListenerTlsFileCertificateProperty.builder()
.certificateChain("certificateChain")
.privateKey("privateKey")
.build())
.sds(VirtualGatewayListenerTlsSdsCertificateProperty.builder()
.secretName("secretName")
.build())
.build())
.mode("mode")
// the properties below are optional
.validation(VirtualGatewayListenerTlsValidationContextProperty.builder()
.trust(VirtualGatewayListenerTlsValidationContextTrustProperty.builder()
.file(VirtualGatewayTlsValidationContextFileTrustProperty.builder()
.certificateChain("certificateChain")
.build())
.sds(VirtualGatewayTlsValidationContextSdsTrustProperty.builder()
.secretName("secretName")
.build())
.build())
// the properties below are optional
.subjectAlternativeNames(SubjectAlternativeNamesProperty.builder()
.match(SubjectAlternativeNameMatchersProperty.builder()
.exact(List.of("exact"))
.build())
.build())
.build())
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnVirtualGateway.VirtualGatewayListenerProperty.Builder
A builder for
CfnVirtualGateway.VirtualGatewayListenerProperty |
static class |
CfnVirtualGateway.VirtualGatewayListenerProperty.Jsii$Proxy
An implementation for
CfnVirtualGateway.VirtualGatewayListenerProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnVirtualGateway.VirtualGatewayListenerProperty.Builder |
builder() |
default Object |
getConnectionPool()
The connection pool information for the listener.
|
default Object |
getHealthCheck()
The health check information for the listener.
|
Object |
getPortMapping()
The port mapping information for the listener.
|
default Object |
getTls()
A reference to an object that represents the Transport Layer Security (TLS) properties for the listener.
|
@Stability(value=Stable) @NotNull Object getPortMapping()
@Stability(value=Stable) @Nullable default Object getConnectionPool()
@Stability(value=Stable) @Nullable default Object getHealthCheck()
@Stability(value=Stable) @Nullable default Object getTls()
@Stability(value=Stable) static CfnVirtualGateway.VirtualGatewayListenerProperty.Builder builder()
Copyright © 2022. All rights reserved.