com.amazonaws.services.identitymanagement.model
Class DeleteSigningCertificateRequest

java.lang.Object
  extended by com.amazonaws.AmazonWebServiceRequest
      extended by com.amazonaws.services.identitymanagement.model.DeleteSigningCertificateRequest

public class DeleteSigningCertificateRequest
extends AmazonWebServiceRequest

Container for the parameters to the DeleteSigningCertificate operation.

Deletes the specified signing certificate associated with the specified user.

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 account, this API can be used to manage root credentials even if the account has no associated users.

See Also:
AmazonIdentityManagement.deleteSigningCertificate(DeleteSigningCertificateRequest)

Constructor Summary
DeleteSigningCertificateRequest()
           
 
Method Summary
 String getCertificateId()
          ID of the signing certificate to delete.
 String getUserName()
          Name of the user the signing certificate belongs to.
 void setCertificateId(String certificateId)
          ID of the signing certificate to delete.
 void setUserName(String userName)
          Name of the user the signing certificate belongs to.
 String toString()
          Returns a string representation of this object; useful for testing and debugging.
 DeleteSigningCertificateRequest withCertificateId(String certificateId)
          ID of the signing certificate to delete.
 DeleteSigningCertificateRequest withUserName(String userName)
          Name of the user the signing certificate belongs to.
 
Methods inherited from class com.amazonaws.AmazonWebServiceRequest
copyPrivateRequestParameters
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DeleteSigningCertificateRequest

public DeleteSigningCertificateRequest()
Method Detail

getUserName

public String getUserName()
Name of the user the signing certificate belongs to.

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

Returns:
Name of the user the signing certificate belongs to.

setUserName

public void setUserName(String userName)
Name of the user the signing certificate belongs to.

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

Parameters:
userName - Name of the user the signing certificate belongs to.

withUserName

public DeleteSigningCertificateRequest withUserName(String userName)
Name of the user the signing certificate belongs to.

Returns a reference to this object so that method calls can be chained together.

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

Parameters:
userName - Name of the user the signing certificate belongs to.
Returns:
A reference to this updated object so that method calls can be chained together.

getCertificateId

public String getCertificateId()
ID of the signing certificate to delete.

Constraints:
Length: 24 - 128
Pattern: [\w]*

Returns:
ID of the signing certificate to delete.

setCertificateId

public void setCertificateId(String certificateId)
ID of the signing certificate to delete.

Constraints:
Length: 24 - 128
Pattern: [\w]*

Parameters:
certificateId - ID of the signing certificate to delete.

withCertificateId

public DeleteSigningCertificateRequest withCertificateId(String certificateId)
ID of the signing certificate to delete.

Returns a reference to this object so that method calls can be chained together.

Constraints:
Length: 24 - 128
Pattern: [\w]*

Parameters:
certificateId - ID of the signing certificate to delete.
Returns:
A reference to this updated object so that method calls can be chained together.

toString

public String toString()
Returns a string representation of this object; useful for testing and debugging.

Overrides:
toString in class Object
Returns:
A string representation of this object.
See Also:
Object.toString()


Copyright © 2010 Amazon Web Services, Inc. All Rights Reserved.