Class: Aws::IoT::Types::DeleteCACertificateRequest

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

Overview

Note:

When making an API call, you may pass DeleteCACertificateRequest data as a hash:

{
  certificate_id: "CertificateId", # required
}

Input for the DeleteCACertificate operation.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#certificate_idString

The ID of the certificate to delete. (The last part of the certificate ARN contains the certificate ID.)

Returns:

  • (String)


5726
5727
5728
5729
5730
# File 'lib/aws-sdk-iot/types.rb', line 5726

class DeleteCACertificateRequest < Struct.new(
  :certificate_id)
  SENSITIVE = []
  include Aws::Structure
end