Class: Aws::AppMesh::Types::VirtualGatewayListener
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::VirtualGatewayListener
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
Note:
When making an API call, you may pass VirtualGatewayListener data as a hash:
{
connection_pool: {
grpc: {
max_requests: 1, # required
},
http: {
max_connections: 1, # required
max_pending_requests: 1,
},
http2: {
max_requests: 1, # required
},
},
health_check: {
healthy_threshold: 1, # required
interval_millis: 1, # required
path: "String",
port: 1,
protocol: "http", # required, accepts http, http2, grpc
timeout_millis: 1, # required
unhealthy_threshold: 1, # required
},
port_mapping: { # required
port: 1, # required
protocol: "http", # required, accepts http, http2, grpc
},
tls: {
certificate: { # required
acm: {
certificate_arn: "Arn", # required
},
file: {
certificate_chain: "FilePath", # required
private_key: "FilePath", # required
},
sds: {
secret_name: "VirtualGatewaySdsSecretName", # required
},
},
mode: "STRICT", # required, accepts STRICT, PERMISSIVE, DISABLED
validation: {
subject_alternative_names: {
match: { # required
exact: ["SubjectAlternativeName"], # required
},
},
trust: { # required
file: {
certificate_chain: "FilePath", # required
},
sds: {
secret_name: "VirtualGatewaySdsSecretName", # required
},
},
},
},
}
An object that represents a listener for a virtual gateway.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#connection_pool ⇒ Types::VirtualGatewayConnectionPool
The connection pool information for the virtual gateway listener.
-
#health_check ⇒ Types::VirtualGatewayHealthCheckPolicy
The health check information for the listener.
-
#port_mapping ⇒ Types::VirtualGatewayPortMapping
The port mapping information for the listener.
-
#tls ⇒ Types::VirtualGatewayListenerTls
A reference to an object that represents the Transport Layer Security (TLS) properties for the listener.
Instance Attribute Details
#connection_pool ⇒ Types::VirtualGatewayConnectionPool
The connection pool information for the virtual gateway listener.
8653 8654 8655 8656 8657 8658 8659 8660 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 8653 class VirtualGatewayListener < Struct.new( :connection_pool, :health_check, :port_mapping, :tls) SENSITIVE = [] include Aws::Structure end |
#health_check ⇒ Types::VirtualGatewayHealthCheckPolicy
The health check information for the listener.
8653 8654 8655 8656 8657 8658 8659 8660 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 8653 class VirtualGatewayListener < Struct.new( :connection_pool, :health_check, :port_mapping, :tls) SENSITIVE = [] include Aws::Structure end |
#port_mapping ⇒ Types::VirtualGatewayPortMapping
The port mapping information for the listener.
8653 8654 8655 8656 8657 8658 8659 8660 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 8653 class VirtualGatewayListener < Struct.new( :connection_pool, :health_check, :port_mapping, :tls) SENSITIVE = [] include Aws::Structure end |
#tls ⇒ Types::VirtualGatewayListenerTls
A reference to an object that represents the Transport Layer Security (TLS) properties for the listener.
8653 8654 8655 8656 8657 8658 8659 8660 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 8653 class VirtualGatewayListener < Struct.new( :connection_pool, :health_check, :port_mapping, :tls) SENSITIVE = [] include Aws::Structure end |