Class: Aws::AppMesh::Types::VirtualGatewayListenerTlsFileCertificate
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::VirtualGatewayListenerTlsFileCertificate
- 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 mesh endpoint that the proxy is running on.
Instance Attribute Details
#certificate_chain ⇒ String
The certificate chain for the certificate.
5356 5357 5358 5359 5360 5361 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5356 class VirtualGatewayListenerTlsFileCertificate < 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 mesh endpoint that the proxy is running on.
5356 5357 5358 5359 5360 5361 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5356 class VirtualGatewayListenerTlsFileCertificate < Struct.new( :certificate_chain, :private_key) SENSITIVE = [] include Aws::Structure end |