Class: Aws::AppMesh::Types::TlsValidationContext
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::TlsValidationContext
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
Note:
When making an API call, you may pass TlsValidationContext data as a hash:
{
subject_alternative_names: {
match: { # required
exact: ["SubjectAlternativeName"], # required
},
},
trust: { # required
acm: {
certificate_authority_arns: ["Arn"], # required
},
file: {
certificate_chain: "FilePath", # required
},
sds: {
secret_name: "SdsSecretName", # required
},
},
}
An object that represents how the proxy will validate its peer during Transport Layer Security (TLS) negotiation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#subject_alternative_names ⇒ Types::SubjectAlternativeNames
A reference to an object that represents the SANs for a Transport Layer Security (TLS) validation context.
-
#trust ⇒ Types::TlsValidationContextTrust
A reference to where to retrieve the trust chain when validating a peer’s Transport Layer Security (TLS) certificate.
Instance Attribute Details
#subject_alternative_names ⇒ Types::SubjectAlternativeNames
A reference to an object that represents the SANs for a Transport Layer Security (TLS) validation context.
6707 6708 6709 6710 6711 6712 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 6707 class TlsValidationContext < Struct.new( :subject_alternative_names, :trust) SENSITIVE = [] include Aws::Structure end |
#trust ⇒ Types::TlsValidationContextTrust
A reference to where to retrieve the trust chain when validating a peer’s Transport Layer Security (TLS) certificate.
6707 6708 6709 6710 6711 6712 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 6707 class TlsValidationContext < Struct.new( :subject_alternative_names, :trust) SENSITIVE = [] include Aws::Structure end |