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 AWS Certicate Manager (ACM) 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 AWS Certicate Manager (ACM) certificate.
5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5484 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.
5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5484 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.
5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5484 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
5484 5485 5486 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5484 def unknown @unknown end |