Class: Aws::AppMesh::Types::ListenerTlsValidationContextTrust

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

Overview

Note:

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

Note:

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.

Direct Known Subclasses

File, Sds, Unknown

Defined Under Namespace

Classes: File, Sds, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

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

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



3533
3534
3535
# File 'lib/aws-sdk-appmesh/types.rb', line 3533

def unknown
  @unknown
end