Class: Aws::AppMesh::Types::ListenerTlsFileCertificate
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::ListenerTlsFileCertificate
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
An object that represents a local file certificate. The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_chain ⇒ String
The certificate chain for the certificate.
-
#private_key ⇒ String
The private key for a certificate stored on the file system of the virtual node that the proxy is running on.
Instance Attribute Details
#certificate_chain ⇒ String
The certificate chain for the certificate.
3460 3461 3462 3463 3464 3465 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3460 class ListenerTlsFileCertificate < Struct.new( :certificate_chain, :private_key) SENSITIVE = [] include Aws::Structure end |
#private_key ⇒ String
The private key for a certificate stored on the file system of the virtual node that the proxy is running on.
3460 3461 3462 3463 3464 3465 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 3460 class ListenerTlsFileCertificate < Struct.new( :certificate_chain, :private_key) SENSITIVE = [] include Aws::Structure end |