Class: Aws::AppMesh::Types::ListenerTlsFileCertificate

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)


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_keyString

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

Returns:

  • (String)


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