Class: Aws::IAM::Types::DeleteSigningCertificateRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#certificate_idString

The ID of the signing certificate to delete.

The format of this parameter, as described by its [regex] pattern, is a string of characters that can be upper- or lower-cased letters or digits.

[1]: wikipedia.org/wiki/regex

Returns:

  • (String)


2236
2237
2238
2239
2240
2241
# File 'lib/aws-sdk-iam/types.rb', line 2236

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

#user_nameString

The name of the user the signing certificate belongs to.

This parameter allows (through its [regex pattern]) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-

[1]: wikipedia.org/wiki/regex

Returns:

  • (String)


2236
2237
2238
2239
2240
2241
# File 'lib/aws-sdk-iam/types.rb', line 2236

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