Class: Aws::AppMesh::Types::ListenerTlsCertificate

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

Overview

Note:

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

Note:

ListenerTlsCertificate is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ListenerTlsCertificate 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::ListenerTlsAcmCertificate

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



3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3425

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

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

#fileTypes::ListenerTlsFileCertificate

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



3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3425

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

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

#sdsTypes::ListenerTlsSdsCertificate

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



3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3425

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

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



3425
3426
3427
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3425

def unknown
  @unknown
end