public class Stack extends Object implements Serializable, Cloneable
Details about a stack.
Constructor and Description |
---|
Stack() |
Modifier and Type | Method and Description |
---|---|
Stack |
clone() |
boolean |
equals(Object obj) |
String |
getArn()
The ARN of the stack.
|
Date |
getCreatedTime()
The timestamp when the stack was created.
|
String |
getDescription()
A meaningful description for the stack.
|
String |
getDisplayName()
A display name for the stack.
|
String |
getName()
The unique identifier of the stack.
|
int |
hashCode() |
void |
setArn(String arn)
The ARN of the stack.
|
void |
setCreatedTime(Date createdTime)
The timestamp when the stack was created.
|
void |
setDescription(String description)
A meaningful description for the stack.
|
void |
setDisplayName(String displayName)
A display name for the stack.
|
void |
setName(String name)
The unique identifier of the stack.
|
String |
toString()
Returns a string representation of this object; useful for testing and debugging.
|
Stack |
withArn(String arn)
The ARN of the stack.
|
Stack |
withCreatedTime(Date createdTime)
The timestamp when the stack was created.
|
Stack |
withDescription(String description)
A meaningful description for the stack.
|
Stack |
withDisplayName(String displayName)
A display name for the stack.
|
Stack |
withName(String name)
The unique identifier of the stack.
|
public void setArn(String arn)
The ARN of the stack.
arn
- The ARN of the stack.public String getArn()
The ARN of the stack.
public Stack withArn(String arn)
The ARN of the stack.
arn
- The ARN of the stack.public void setName(String name)
The unique identifier of the stack.
name
- The unique identifier of the stack.public String getName()
The unique identifier of the stack.
public Stack withName(String name)
The unique identifier of the stack.
name
- The unique identifier of the stack.public void setDescription(String description)
A meaningful description for the stack.
description
- A meaningful description for the stack.public String getDescription()
A meaningful description for the stack.
public Stack withDescription(String description)
A meaningful description for the stack.
description
- A meaningful description for the stack.public void setDisplayName(String displayName)
A display name for the stack.
displayName
- A display name for the stack.public String getDisplayName()
A display name for the stack.
public Stack withDisplayName(String displayName)
A display name for the stack.
displayName
- A display name for the stack.public void setCreatedTime(Date createdTime)
The timestamp when the stack was created.
createdTime
- The timestamp when the stack was created.public Date getCreatedTime()
The timestamp when the stack was created.
public Stack withCreatedTime(Date createdTime)
The timestamp when the stack was created.
createdTime
- The timestamp when the stack was created.public String toString()
toString
in class Object
Object.toString()
Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.