Class: Aws::AppMesh::Types::VirtualGatewayListenerTlsValidationContext
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::VirtualGatewayListenerTlsValidationContext
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
Note:
When making an API call, you may pass VirtualGatewayListenerTlsValidationContext data as a hash:
{
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 virtual gateway's listener's Transport Layer Security (TLS) validation context.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#subject_alternative_names ⇒ Types::SubjectAlternativeNames
A reference to an object that represents the SANs for a virtual gateway listener's Transport Layer Security (TLS) validation context.
-
#trust ⇒ Types::VirtualGatewayListenerTlsValidationContextTrust
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 virtual gateway listener's Transport Layer Security (TLS) validation context.
8897 8898 8899 8900 8901 8902 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 8897 class VirtualGatewayListenerTlsValidationContext < Struct.new( :subject_alternative_names, :trust) SENSITIVE = [] include Aws::Structure end |
#trust ⇒ Types::VirtualGatewayListenerTlsValidationContextTrust
A reference to where to retrieve the trust chain when validating a peer’s Transport Layer Security (TLS) certificate.
8897 8898 8899 8900 8901 8902 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 8897 class VirtualGatewayListenerTlsValidationContext < Struct.new( :subject_alternative_names, :trust) SENSITIVE = [] include Aws::Structure end |