Class: Aws::AppMesh::Types::VirtualGatewayListenerTlsValidationContextTrust

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb

Overview

Note:

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

Note:

VirtualGatewayListenerTlsValidationContextTrust is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of VirtualGatewayListenerTlsValidationContextTrust corresponding to the set member.

An object that represents a virtual gateway's 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::VirtualGatewayTlsValidationContextFileTrust

An object that represents a Transport Layer Security (TLS) validation context trust for a local file.



5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5430

class VirtualGatewayListenerTlsValidationContextTrust < Struct.new(
  :file,
  :sds,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class File < VirtualGatewayListenerTlsValidationContextTrust; end
  class Sds < VirtualGatewayListenerTlsValidationContextTrust; end
  class Unknown < VirtualGatewayListenerTlsValidationContextTrust; end
end

#sdsTypes::VirtualGatewayTlsValidationContextSdsTrust

A reference to an object that represents a virtual gateway's listener's Transport Layer Security (TLS) Secret Discovery Service validation context trust.



5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5430

class VirtualGatewayListenerTlsValidationContextTrust < Struct.new(
  :file,
  :sds,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class File < VirtualGatewayListenerTlsValidationContextTrust; end
  class Sds < VirtualGatewayListenerTlsValidationContextTrust; end
  class Unknown < VirtualGatewayListenerTlsValidationContextTrust; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



5430
5431
5432
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5430

def unknown
  @unknown
end