Class: Aws::AppMesh::Types::VirtualGatewayListenerTlsFileCertificate

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#certificate_chainString

The certificate chain for the certificate.

Returns:

  • (String)


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_keyString

The private key for a certificate stored on the file system of the mesh endpoint that the proxy is running on.

Returns:

  • (String)


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