Class: Aws::EC2::Types::CertificateAuthenticationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::CertificateAuthenticationRequest
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
Note:
When making an API call, you may pass CertificateAuthenticationRequest data as a hash:
{
client_root_certificate_chain_arn: "String",
}
Information about the client certificate to be used for authentication.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_root_certificate_chain_arn ⇒ String
The ARN of the client certificate.
Instance Attribute Details
#client_root_certificate_chain_arn ⇒ String
The ARN of the client certificate. The certificate must be signed by a certificate authority (CA) and it must be provisioned in AWS Certificate Manager (ACM).
3853 3854 3855 3856 3857 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 3853 class CertificateAuthenticationRequest < Struct.new( :client_root_certificate_chain_arn) SENSITIVE = [] include Aws::Structure end |