Container for the parameters to the UpdateSigningCertificate operation.

Changes the status of the specified signing certificate from active to disabled, or vice versa. This action can be used to disable a user's signing certificate as part of a certificate rotation work flow.

If the UserName field is not specified, the UserName is determined implicitly based on the AWS Access Key ID used to sign the request. Because this action works for access keys under the AWS account, this API can be used to manage root credentials even if the AWS account has no associated users.

For information about rotating certificates, see Managing Keys and Certificates in Using AWS Identity and Access Management .

Namespace: Amazon.IdentityManagement.Model
Assembly: AWSSDK (in AWSSDK.dll) Version: 1.4.10.0 (1.4.10.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public class UpdateSigningCertificateRequest : AmazonWebServiceRequest
Public Class UpdateSigningCertificateRequest _
	Inherits AmazonWebServiceRequest
public ref class UpdateSigningCertificateRequest : public AmazonWebServiceRequest

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
UpdateSigningCertificateRequest()()()()
Initializes a new instance of the UpdateSigningCertificateRequest class
CertificateId
The ID of the signing certificate you want to update.

Constraints:

Length
24 - 128
Pattern
[\w]*

Equals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
GetHashCode()()()()
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType()()()()
Gets the Type of the current instance.
(Inherited from Object.)
Status
The status you want to assign to the certificate. Active means the certificate can be used for API calls to AWS, while Inactive means the certificate cannot be used.

Constraints:

Allowed Values
Active, Inactive

ToString()()()()
Returns a String that represents the current Object.
(Inherited from Object.)
UserName
Name of the user the signing certificate belongs to.

Constraints:

Length
1 - 128
Pattern
[\w+=,.@-]*

WithCertificateId(String)
Sets the CertificateId property
WithStatus(String)
Sets the Status property
WithUserName(String)
Sets the UserName property

Inheritance Hierarchy

System..::..Object
  Amazon.Runtime..::..AmazonWebServiceRequest
    Amazon.IdentityManagement.Model..::..UpdateSigningCertificateRequest

See Also