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.
5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5640 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.
5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5640 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
5640 5641 5642 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5640 def unknown @unknown end |