Class: Aws::AppMesh::Types::VirtualGatewayTlsValidationContextFileTrust
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::VirtualGatewayTlsValidationContextFileTrust
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
Note:
When making an API call, you may pass VirtualGatewayTlsValidationContextFileTrust data as a hash:
{
certificate_chain: "FilePath", # required
}
An object that represents a Transport Layer Security (TLS) validation context trust for a local file.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_chain ⇒ String
The certificate trust chain 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 trust chain for a certificate stored on the file system of the virtual node that the proxy is running on.
9287 9288 9289 9290 9291 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 9287 class VirtualGatewayTlsValidationContextFileTrust < Struct.new( :certificate_chain) SENSITIVE = [] include Aws::Structure end |