Class: Aws::IAM::Types::DeleteSigningCertificateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::DeleteSigningCertificateRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Note:
When making an API call, you may pass DeleteSigningCertificateRequest data as a hash:
{
user_name: "existingUserNameType",
certificate_id: "certificateIdType", # required
}
Instance Attribute Summary collapse
-
#certificate_id ⇒ String
The ID of the signing certificate to delete.
-
#user_name ⇒ String
The name of the user the signing certificate belongs to.
Instance Attribute Details
#certificate_id ⇒ String
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.
2104 2105 2106 2107 2108 |
# File 'lib/aws-sdk-iam/types.rb', line 2104 class DeleteSigningCertificateRequest < Struct.new( :user_name, :certificate_id) include Aws::Structure end |
#user_name ⇒ String
The name of the user the signing certificate belongs to.
This parameter allows (per 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: _+=,.@-
2104 2105 2106 2107 2108 |
# File 'lib/aws-sdk-iam/types.rb', line 2104 class DeleteSigningCertificateRequest < Struct.new( :user_name, :certificate_id) include Aws::Structure end |