Class: Aws::AppMesh::Types::ListenerTls
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::ListenerTls
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
An object that represents the Transport Layer Security (TLS) properties for a listener.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate ⇒ Types::ListenerTlsCertificate
A reference to an object that represents a listener's Transport Layer Security (TLS) certificate.
-
#mode ⇒ String
Specify one of the following modes.
-
#validation ⇒ Types::ListenerTlsValidationContext
A reference to an object that represents a listener's Transport Layer Security (TLS) validation context.
Instance Attribute Details
#certificate ⇒ Types::ListenerTlsCertificate
A reference to an object that represents a listener's Transport Layer Security (TLS) certificate.
3373 3374 3375 3376 3377 3378 3379 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3373 class ListenerTls < Struct.new( :certificate, :mode, :validation) SENSITIVE = [] include Aws::Structure end |
#mode ⇒ String
Specify one of the following modes.
****STRICT – Listener only accepts connections with TLS enabled.
****PERMISSIVE – Listener accepts connections with or without TLS enabled.
****DISABLED – Listener only accepts connections without TLS.
3373 3374 3375 3376 3377 3378 3379 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3373 class ListenerTls < Struct.new( :certificate, :mode, :validation) SENSITIVE = [] include Aws::Structure end |
#validation ⇒ Types::ListenerTlsValidationContext
A reference to an object that represents a listener's Transport Layer Security (TLS) validation context.
3373 3374 3375 3376 3377 3378 3379 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3373 class ListenerTls < Struct.new( :certificate, :mode, :validation) SENSITIVE = [] include Aws::Structure end |