Package com.amazonaws.services.sqs.model
Class CreateQueueResult
- java.lang.Object
-
- com.amazonaws.services.sqs.model.CreateQueueResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class CreateQueueResult extends Object implements Serializable, Cloneable
Returns the QueueUrl element of the created queue.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CreateQueueResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CreateQueueResult
clone()
boolean
equals(Object obj)
String
getQueueUrl()
The URL for the created Amazon SQS queue.int
hashCode()
void
setQueueUrl(String queueUrl)
The URL for the created Amazon SQS queue.String
toString()
Returns a string representation of this object; useful for testing and debugging.CreateQueueResult
withQueueUrl(String queueUrl)
The URL for the created Amazon SQS queue.
-
-
-
Method Detail
-
setQueueUrl
public void setQueueUrl(String queueUrl)
The URL for the created Amazon SQS queue.
- Parameters:
queueUrl
- The URL for the created Amazon SQS queue.
-
getQueueUrl
public String getQueueUrl()
The URL for the created Amazon SQS queue.
- Returns:
- The URL for the created Amazon SQS queue.
-
withQueueUrl
public CreateQueueResult withQueueUrl(String queueUrl)
The URL for the created Amazon SQS queue.
- Parameters:
queueUrl
- The URL for the created Amazon SQS queue.- Returns:
- Returns a reference to this 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 classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public CreateQueueResult clone()
-
-