Class: Aws::APIGateway::Types::ClientCertificate

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-apigateway/types.rb

Overview

Represents a client certificate used to configure client-side SSL authentication while sending requests to the integration endpoint.

<div class=“remarks”> Client certificates are used to authenticate an API by the backend server. To authenticate an API client (or user), use IAM roles and policies, a custom Authorizer or an Amazon Cognito user pool. </div>

<div class=“seeAlso”>

Use Client-Side Certificate][1

</div>

[1]: docs.aws.amazon.com/apigateway/latest/developerguide/getting-started-client-side-ssl-authentication.html

Instance Attribute Summary collapse

Instance Attribute Details

#client_certificate_idString

The identifier of the client certificate.

Returns:

  • (String)


454
455
456
457
458
459
460
461
# File 'lib/aws-sdk-apigateway/types.rb', line 454

class ClientCertificate < Struct.new(
  :client_certificate_id,
  :description,
  :pem_encoded_certificate,
  :created_date,
  :expiration_date)
  include Aws::Structure
end

#created_dateTime

The timestamp when the client certificate was created.

Returns:

  • (Time)


454
455
456
457
458
459
460
461
# File 'lib/aws-sdk-apigateway/types.rb', line 454

class ClientCertificate < Struct.new(
  :client_certificate_id,
  :description,
  :pem_encoded_certificate,
  :created_date,
  :expiration_date)
  include Aws::Structure
end

#descriptionString

The description of the client certificate.

Returns:

  • (String)


454
455
456
457
458
459
460
461
# File 'lib/aws-sdk-apigateway/types.rb', line 454

class ClientCertificate < Struct.new(
  :client_certificate_id,
  :description,
  :pem_encoded_certificate,
  :created_date,
  :expiration_date)
  include Aws::Structure
end

#expiration_dateTime

The timestamp when the client certificate will expire.

Returns:

  • (Time)


454
455
456
457
458
459
460
461
# File 'lib/aws-sdk-apigateway/types.rb', line 454

class ClientCertificate < Struct.new(
  :client_certificate_id,
  :description,
  :pem_encoded_certificate,
  :created_date,
  :expiration_date)
  include Aws::Structure
end

#pem_encoded_certificateString

The PEM-encoded public key of the client certificate, which can be used to configure certificate authentication in the integration endpoint .

Returns:

  • (String)


454
455
456
457
458
459
460
461
# File 'lib/aws-sdk-apigateway/types.rb', line 454

class ClientCertificate < Struct.new(
  :client_certificate_id,
  :description,
  :pem_encoded_certificate,
  :created_date,
  :expiration_date)
  include Aws::Structure
end