Class: Aws::AppMesh::Types::ListenerTlsValidationContextTrust
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::ListenerTlsValidationContextTrust
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
ListenerTlsValidationContextTrust is a union - when making an API calls you must set exactly one of the members.
ListenerTlsValidationContextTrust is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ListenerTlsValidationContextTrust corresponding to the set member.
An object that represents a listener's Transport Layer Security (TLS) validation context trust.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file ⇒ Types::TlsValidationContextFileTrust
An object that represents a Transport Layer Security (TLS) validation context trust for a local file.
-
#sds ⇒ Types::TlsValidationContextSdsTrust
A reference to an object that represents a listener's Transport Layer Security (TLS) Secret Discovery Service validation context trust.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#file ⇒ Types::TlsValidationContextFileTrust
An object that represents a Transport Layer Security (TLS) validation context trust for a local file.
3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3533 class ListenerTlsValidationContextTrust < Struct.new( :file, :sds, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class File < ListenerTlsValidationContextTrust; end class Sds < ListenerTlsValidationContextTrust; end class Unknown < ListenerTlsValidationContextTrust; end end |
#sds ⇒ Types::TlsValidationContextSdsTrust
A reference to an object that represents a listener's Transport Layer Security (TLS) Secret Discovery Service validation context trust.
3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3533 class ListenerTlsValidationContextTrust < Struct.new( :file, :sds, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class File < ListenerTlsValidationContextTrust; end class Sds < ListenerTlsValidationContextTrust; end class Unknown < ListenerTlsValidationContextTrust; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
3533 3534 3535 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3533 def unknown @unknown end |