Class: Aws::EC2::Types::CertificateAuthenticationRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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.

Instance Attribute Summary collapse

Instance Attribute Details

#client_root_certificate_chain_arnString

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).

Returns:

  • (String)


2728
2729
2730
2731
# File 'lib/aws-sdk-ec2/types.rb', line 2728

class CertificateAuthenticationRequest < Struct.new(
  :client_root_certificate_chain_arn)
  include Aws::Structure
end