DeleteSigningCertificate() public method

Deletes a signing certificate associated with the specified IAM user.

If you do not specify a user name, IAM determines the user name implicitly based on the AWS access key ID signing the request. Because this action works for access keys under the AWS account, you can use this action to manage root credentials even if the AWS account has no associated IAM users.

/// The request was rejected because it attempted to create resources beyond the current /// AWS account limits. The error message describes the limit exceeded. /// /// The request was rejected because it referenced an entity that does not exist. The /// error message describes the entity. /// /// The request processing has failed because of an unknown error, exception or failure. ///
public DeleteSigningCertificate ( DeleteSigningCertificateRequest request ) : Amazon.IdentityManagement.Model.DeleteSigningCertificateResponse
request Amazon.IdentityManagement.Model.DeleteSigningCertificateRequest Container for the necessary parameters to execute the DeleteSigningCertificate service method.
return Amazon.IdentityManagement.Model.DeleteSigningCertificateResponse
示例#1
0
 public static void DeleteCertificatesForUser(AmazonIdentityManagementServiceClient client, string username)
 {
     ListSigningCertificatesResponse response =
         client.ListSigningCertificates(new ListSigningCertificatesRequest() { UserName = username });
     foreach (SigningCertificate cert in response.Certificates)
     {
         client.DeleteSigningCertificate(new DeleteSigningCertificateRequest() { UserName = username, CertificateId = cert.CertificateId });
     }
 }