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

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

Overview

The input for the DeleteCertificate operation.

Constant Summary collapse

SENSITIVE =
[]

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)


4806
4807
4808
4809
4810
4811
# File 'lib/aws-sdk-iot/types.rb', line 4806

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

#force_deleteBoolean

Forces the deletion of a certificate if it is inactive and is not attached to an IoT thing.

Returns:

  • (Boolean)


4806
4807
4808
4809
4810
4811
# File 'lib/aws-sdk-iot/types.rb', line 4806

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