Did this page help you?

   Yes   No   Tell us about it...

com.amazonaws.services.identitymanagement.model
Class DeleteServerCertificateRequest

java.lang.Object
  extended by com.amazonaws.AmazonWebServiceRequest
      extended by com.amazonaws.services.identitymanagement.model.DeleteServerCertificateRequest
All Implemented Interfaces:
Serializable

public class DeleteServerCertificateRequest
extends AmazonWebServiceRequest
implements Serializable

Container for the parameters to the DeleteServerCertificate operation.

Deletes the specified server certificate.

IMPORTANT:If you are using a server certificate with Elastic Load Balancing, deleting the certificate could have implications for your application. If Elastic Load Balancing doesn't detect the deletion of bound certificates, it may continue to use the certificates. This could cause Elastic Load Balancing to stop accepting traffic. We recommend that you remove the reference to the certificate from Elastic Load Balancing before using this command to delete the certificate. For more information, go to DeleteLoadBalancerListeners in the Elastic Load Balancing API Reference.

See Also:
AmazonIdentityManagement.deleteServerCertificate(DeleteServerCertificateRequest), Serialized Form

Constructor Summary
DeleteServerCertificateRequest()
          Default constructor for a new DeleteServerCertificateRequest object.
DeleteServerCertificateRequest(String serverCertificateName)
          Constructs a new DeleteServerCertificateRequest object.
 
Method Summary
 boolean equals(Object obj)
           
 String getServerCertificateName()
          The name of the server certificate you want to delete.
 int hashCode()
           
 void setServerCertificateName(String serverCertificateName)
          The name of the server certificate you want to delete.
 String toString()
          Returns a string representation of this object; useful for testing and debugging.
 DeleteServerCertificateRequest withServerCertificateName(String serverCertificateName)
          The name of the server certificate you want to delete.
 
Methods inherited from class com.amazonaws.AmazonWebServiceRequest
copyPrivateRequestParameters, getRequestClientOptions, getRequestCredentials, setRequestCredentials
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DeleteServerCertificateRequest

public DeleteServerCertificateRequest()
Default constructor for a new DeleteServerCertificateRequest object. Callers should use the setter or fluent setter (with...) methods to initialize this object after creating it.


DeleteServerCertificateRequest

public DeleteServerCertificateRequest(String serverCertificateName)
Constructs a new DeleteServerCertificateRequest object. Callers should use the setter or fluent setter (with...) methods to initialize any additional object members.

Parameters:
serverCertificateName - The name of the server certificate you want to delete.
Method Detail

getServerCertificateName

public String getServerCertificateName()
The name of the server certificate you want to delete.

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

Returns:
The name of the server certificate you want to delete.

setServerCertificateName

public void setServerCertificateName(String serverCertificateName)
The name of the server certificate you want to delete.

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

Parameters:
serverCertificateName - The name of the server certificate you want to delete.

withServerCertificateName

public DeleteServerCertificateRequest withServerCertificateName(String serverCertificateName)
The name of the server certificate you want to delete.

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

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

Parameters:
serverCertificateName - The name of the server certificate you want 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()

hashCode

public int hashCode()
Overrides:
hashCode in class Object

equals

public boolean equals(Object obj)
Overrides:
equals in class Object


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