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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb

Overview

Note:

When making an API call, you may pass VirtualGatewayListenerTlsFileCertificate data as a hash:

{
  certificate_chain: "FilePath", # required
  private_key: "FilePath", # required
}

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)

8824
8825
8826
8827
8828
8829
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 8824

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)

8824
8825
8826
8827
8828
8829
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 8824

class VirtualGatewayListenerTlsFileCertificate < Struct.new(
  :certificate_chain,
  :private_key)
  SENSITIVE = []
  include Aws::Structure
end