Class: Aws::AppMesh::Types::ListenerTlsCertificate
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::ListenerTlsCertificate
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
ListenerTlsCertificate is a union - when making an API calls you must set exactly one of the members.
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.
Defined Under Namespace
Classes: Acm, File, Sds, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#acm ⇒ Types::ListenerTlsAcmCertificate
A reference to an object that represents an Certificate Manager certificate.
-
#file ⇒ Types::ListenerTlsFileCertificate
A reference to an object that represents a local file certificate.
-
#sds ⇒ Types::ListenerTlsSdsCertificate
A reference to an object that represents a listener's Secret Discovery Service certificate.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#acm ⇒ Types::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 |
#file ⇒ Types::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 |
#sds ⇒ Types::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 |
#unknown ⇒ Object
Returns the value of attribute unknown
3425 3426 3427 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3425 def unknown @unknown end |