Class: Aws::AppMesh::Types::VirtualGatewayListenerTlsCertificate

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

Overview

Note:

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

Note:

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

An object that represents a listener's Transport Layer Security (TLS) certificate.

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::VirtualGatewayListenerTlsAcmCertificate

A reference to an object that represents an Certificate Manager certificate.



5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5321

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

  class Acm < VirtualGatewayListenerTlsCertificate; end
  class File < VirtualGatewayListenerTlsCertificate; end
  class Sds < VirtualGatewayListenerTlsCertificate; end
  class Unknown < VirtualGatewayListenerTlsCertificate; end
end

#fileTypes::VirtualGatewayListenerTlsFileCertificate

A reference to an object that represents a local file certificate.



5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5321

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

  class Acm < VirtualGatewayListenerTlsCertificate; end
  class File < VirtualGatewayListenerTlsCertificate; end
  class Sds < VirtualGatewayListenerTlsCertificate; end
  class Unknown < VirtualGatewayListenerTlsCertificate; end
end

#sdsTypes::VirtualGatewayListenerTlsSdsCertificate

A reference to an object that represents a virtual gateway's listener's Secret Discovery Service certificate.



5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5321

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

  class Acm < VirtualGatewayListenerTlsCertificate; end
  class File < VirtualGatewayListenerTlsCertificate; end
  class Sds < VirtualGatewayListenerTlsCertificate; end
  class Unknown < VirtualGatewayListenerTlsCertificate; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



5321
5322
5323
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5321

def unknown
  @unknown
end