Class: Aws::IAM::Types::DeleteSigningCertificateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IAM::Types::DeleteSigningCertificateRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iam/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
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.
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_name ⇒ String
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: _+=,.@-
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 |