Class: Aws::AppMesh::Types::VirtualGatewayListenerTlsSdsCertificate
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::VirtualGatewayListenerTlsSdsCertificate
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
When making an API call, you may pass VirtualGatewayListenerTlsSdsCertificate data as a hash:
{
secret_name: "VirtualGatewaySdsSecretName", # required
}
An object that represents the virtual gateway's listener's Secret Discovery Service certificate.The proxy must be configured with a local SDS provider via a Unix Domain Socket. See App MeshTLS documentation for more info.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#secret_name ⇒ String
A reference to an object that represents the name of the secret secret requested from the Secret Discovery Service provider representing Transport Layer Security (TLS) materials like a certificate or certificate chain.
Instance Attribute Details
#secret_name ⇒ String
A reference to an object that represents the name of the secret secret requested from the Secret Discovery Service provider representing Transport Layer Security (TLS) materials like a certificate or certificate chain.
8856 8857 8858 8859 8860 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 8856 class VirtualGatewayListenerTlsSdsCertificate < Struct.new( :secret_name) SENSITIVE = [] include Aws::Structure end |