Class: Aws::AppMesh::Types::TlsValidationContextTrust
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::TlsValidationContextTrust
- Includes:
- Structure, Structure::Union
- Defined in:
- 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.
4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 |
# File 'lib/aws-sdk-appmesh/types.rb', line 4373 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.
4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 |
# File 'lib/aws-sdk-appmesh/types.rb', line 4373 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.
4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 |
# File 'lib/aws-sdk-appmesh/types.rb', line 4373 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
4373 4374 4375 |
# File 'lib/aws-sdk-appmesh/types.rb', line 4373 def unknown @unknown end |