Class: Aws::AppMesh::Types::TlsValidationContextTrust
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::TlsValidationContextTrust
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
TlsValidationContextTrust is a union - when making an API calls you must set exactly one of the members.
TlsValidationContextTrust is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TlsValidationContextTrust corresponding to the set member.
An object that represents a Transport Layer Security (TLS) validation context trust.
Defined Under Namespace
Classes: Acm, File, Sds, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#acm ⇒ Types::TlsValidationContextAcmTrust
A reference to an object that represents a Transport Layer Security (TLS) validation context trust for an Certificate Manager certificate.
-
#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 Transport Layer Security (TLS) Secret Discovery Service validation context trust.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#acm ⇒ Types::TlsValidationContextAcmTrust
A reference to an object that represents a Transport Layer Security (TLS) validation context trust for an Certificate Manager certificate.
6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 6814 class TlsValidationContextTrust < Struct.new( :acm, :file, :sds, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Acm < TlsValidationContextTrust; end class File < TlsValidationContextTrust; end class Sds < TlsValidationContextTrust; end class Unknown < TlsValidationContextTrust; end end |
#file ⇒ Types::TlsValidationContextFileTrust
An object that represents a Transport Layer Security (TLS) validation context trust for a local file.
6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 6814 class TlsValidationContextTrust < Struct.new( :acm, :file, :sds, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Acm < TlsValidationContextTrust; end class File < TlsValidationContextTrust; end class Sds < TlsValidationContextTrust; end class Unknown < TlsValidationContextTrust; end end |
#sds ⇒ Types::TlsValidationContextSdsTrust
A reference to an object that represents a Transport Layer Security (TLS) Secret Discovery Service validation context trust.
6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 6814 class TlsValidationContextTrust < Struct.new( :acm, :file, :sds, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Acm < TlsValidationContextTrust; end class File < TlsValidationContextTrust; end class Sds < TlsValidationContextTrust; end class Unknown < TlsValidationContextTrust; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
6814 6815 6816 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 6814 def unknown @unknown end |