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
When making an API call, you may pass ListenerTls data as a hash:
{
certificate: { # required
acm: {
certificate_arn: "Arn", # required
},
file: {
certificate_chain: "FilePath", # required
private_key: "FilePath", # required
},
sds: {
secret_name: "SdsSecretName", # 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: "SdsSecretName", # required
},
},
},
}
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.
5439 5440 5441 5442 5443 5444 5445 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5439 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.
5439 5440 5441 5442 5443 5444 5445 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5439 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.
5439 5440 5441 5442 5443 5444 5445 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5439 class ListenerTls < Struct.new( :certificate, :mode, :validation) SENSITIVE = [] include Aws::Structure end |