Did this page help you?

   Yes   No   Tell us about it...

com.amazonaws.services.elasticbeanstalk.model
Class DeleteConfigurationTemplateRequest

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

public class DeleteConfigurationTemplateRequest
extends AmazonWebServiceRequest
implements Serializable

Container for the parameters to the DeleteConfigurationTemplate operation.

Deletes the specified configuration template.

NOTE:When you launch an environment using a configuration template, the environment gets a copy of the template. You can delete or modify the environment's copy of the template without affecting the running environment.

See Also:
AWSElasticBeanstalk.deleteConfigurationTemplate(DeleteConfigurationTemplateRequest), Serialized Form

Constructor Summary
DeleteConfigurationTemplateRequest()
          Default constructor for a new DeleteConfigurationTemplateRequest object.
DeleteConfigurationTemplateRequest(String applicationName, String templateName)
          Constructs a new DeleteConfigurationTemplateRequest object.
 
Method Summary
 boolean equals(Object obj)
           
 String getApplicationName()
          The name of the application to delete the configuration template from.
 String getTemplateName()
          The name of the configuration template to delete.
 int hashCode()
           
 void setApplicationName(String applicationName)
          The name of the application to delete the configuration template from.
 void setTemplateName(String templateName)
          The name of the configuration template to delete.
 String toString()
          Returns a string representation of this object; useful for testing and debugging.
 DeleteConfigurationTemplateRequest withApplicationName(String applicationName)
          The name of the application to delete the configuration template from.
 DeleteConfigurationTemplateRequest withTemplateName(String templateName)
          The name of the configuration template 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

DeleteConfigurationTemplateRequest

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


DeleteConfigurationTemplateRequest

public DeleteConfigurationTemplateRequest(String applicationName,
                                          String templateName)
Constructs a new DeleteConfigurationTemplateRequest object. Callers should use the setter or fluent setter (with...) methods to initialize any additional object members.

Parameters:
applicationName - The name of the application to delete the configuration template from.
templateName - The name of the configuration template to delete.
Method Detail

getApplicationName

public String getApplicationName()
The name of the application to delete the configuration template from.

Constraints:
Length: 1 - 100

Returns:
The name of the application to delete the configuration template from.

setApplicationName

public void setApplicationName(String applicationName)
The name of the application to delete the configuration template from.

Constraints:
Length: 1 - 100

Parameters:
applicationName - The name of the application to delete the configuration template from.

withApplicationName

public DeleteConfigurationTemplateRequest withApplicationName(String applicationName)
The name of the application to delete the configuration template from.

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

Constraints:
Length: 1 - 100

Parameters:
applicationName - The name of the application to delete the configuration template from.
Returns:
A reference to this updated object so that method calls can be chained together.

getTemplateName

public String getTemplateName()
The name of the configuration template to delete.

Constraints:
Length: 1 - 100

Returns:
The name of the configuration template to delete.

setTemplateName

public void setTemplateName(String templateName)
The name of the configuration template to delete.

Constraints:
Length: 1 - 100

Parameters:
templateName - The name of the configuration template to delete.

withTemplateName

public DeleteConfigurationTemplateRequest withTemplateName(String templateName)
The name of the configuration template to delete.

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

Constraints:
Length: 1 - 100

Parameters:
templateName - The name of the configuration template 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.