Class: Aws::IoT::Types::DeleteCertificateRequest

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 DeleteCertificateRequest data as a hash:

{
  certificate_id: "CertificateId", # required
  force_delete: false,
}

The input for the DeleteCertificate operation.

Instance Attribute Summary collapse

Instance Attribute Details

#certificate_idString

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

Returns:

  • (String)


3175
3176
3177
3178
3179
# File 'lib/aws-sdk-iot/types.rb', line 3175

class DeleteCertificateRequest < Struct.new(
  :certificate_id,
  :force_delete)
  include Aws::Structure
end

#force_deleteBoolean

Forces a certificate request to be deleted.

Returns:

  • (Boolean)


3175
3176
3177
3178
3179
# File 'lib/aws-sdk-iot/types.rb', line 3175

class DeleteCertificateRequest < Struct.new(
  :certificate_id,
  :force_delete)
  include Aws::Structure
end