Class: Aws::AppMesh::Types::TlsValidationContextTrust

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-appmesh/types.rb

Overview

Note:

TlsValidationContextTrust is a union - when making an API calls you must set exactly one of the members.

Note:

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.

Direct Known Subclasses

Acm, File, Sds, Unknown

Defined Under Namespace

Classes: Acm, File, Sds, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#acmTypes::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

#fileTypes::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

#sdsTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



4373
4374
4375
# File 'lib/aws-sdk-appmesh/types.rb', line 4373

def unknown
  @unknown
end