Class: Aws::AppMesh::Types::VirtualGatewayListenerTlsAcmCertificate
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppMesh::Types::VirtualGatewayListenerTlsAcmCertificate
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb
Overview
Note:
When making an API call, you may pass VirtualGatewayListenerTlsAcmCertificate data as a hash:
{
certificate_arn: "Arn", # required
}
An object that represents an Certificate Manager certificate.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#certificate_arn ⇒ String
The Amazon Resource Name (ARN) for the certificate.
Instance Attribute Details
#certificate_arn ⇒ String
The Amazon Resource Name (ARN) for the certificate. The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS).
8752 8753 8754 8755 8756 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 8752 class VirtualGatewayListenerTlsAcmCertificate < Struct.new( :certificate_arn) SENSITIVE = [] include Aws::Structure end |