public class ChangeSetSummary extends Object implements Serializable, Cloneable
The ChangeSetSummary
structure describes a change set, its
status, and the stack with which it's associated.
Constructor and Description |
---|
ChangeSetSummary() |
Modifier and Type | Method and Description |
---|---|
ChangeSetSummary |
clone() |
boolean |
equals(Object obj) |
String |
getChangeSetId()
The ID of the change set.
|
String |
getChangeSetName()
The name of the change set.
|
Date |
getCreationTime()
The start time when the change set was created, in UTC.
|
String |
getDescription()
Descriptive information about the change set.
|
String |
getExecutionStatus()
If the change set execution status is
AVAILABLE , you can
execute the change set. |
String |
getStackId()
The ID of the stack with which the change set is associated.
|
String |
getStackName()
The name of the stack with which the change set is associated.
|
String |
getStatus()
The state of the change set, such as
CREATE_IN_PROGRESS ,
CREATE_COMPLETE , or FAILED . |
String |
getStatusReason()
A description of the change set's status.
|
int |
hashCode() |
void |
setChangeSetId(String changeSetId)
The ID of the change set.
|
void |
setChangeSetName(String changeSetName)
The name of the change set.
|
void |
setCreationTime(Date creationTime)
The start time when the change set was created, in UTC.
|
void |
setDescription(String description)
Descriptive information about the change set.
|
void |
setExecutionStatus(ExecutionStatus executionStatus)
If the change set execution status is
AVAILABLE , you can
execute the change set. |
void |
setExecutionStatus(String executionStatus)
If the change set execution status is
AVAILABLE , you can
execute the change set. |
void |
setStackId(String stackId)
The ID of the stack with which the change set is associated.
|
void |
setStackName(String stackName)
The name of the stack with which the change set is associated.
|
void |
setStatus(ChangeSetStatus status)
The state of the change set, such as
CREATE_IN_PROGRESS ,
CREATE_COMPLETE , or FAILED . |
void |
setStatus(String status)
The state of the change set, such as
CREATE_IN_PROGRESS ,
CREATE_COMPLETE , or FAILED . |
void |
setStatusReason(String statusReason)
A description of the change set's status.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ChangeSetSummary |
withChangeSetId(String changeSetId)
The ID of the change set.
|
ChangeSetSummary |
withChangeSetName(String changeSetName)
The name of the change set.
|
ChangeSetSummary |
withCreationTime(Date creationTime)
The start time when the change set was created, in UTC.
|
ChangeSetSummary |
withDescription(String description)
Descriptive information about the change set.
|
ChangeSetSummary |
withExecutionStatus(ExecutionStatus executionStatus)
If the change set execution status is
AVAILABLE , you can
execute the change set. |
ChangeSetSummary |
withExecutionStatus(String executionStatus)
If the change set execution status is
AVAILABLE , you can
execute the change set. |
ChangeSetSummary |
withStackId(String stackId)
The ID of the stack with which the change set is associated.
|
ChangeSetSummary |
withStackName(String stackName)
The name of the stack with which the change set is associated.
|
ChangeSetSummary |
withStatus(ChangeSetStatus status)
The state of the change set, such as
CREATE_IN_PROGRESS ,
CREATE_COMPLETE , or FAILED . |
ChangeSetSummary |
withStatus(String status)
The state of the change set, such as
CREATE_IN_PROGRESS ,
CREATE_COMPLETE , or FAILED . |
ChangeSetSummary |
withStatusReason(String statusReason)
A description of the change set's status.
|
public void setStackId(String stackId)
The ID of the stack with which the change set is associated.
stackId
- The ID of the stack with which the change set is associated.public String getStackId()
The ID of the stack with which the change set is associated.
public ChangeSetSummary withStackId(String stackId)
The ID of the stack with which the change set is associated.
stackId
- The ID of the stack with which the change set is associated.public void setStackName(String stackName)
The name of the stack with which the change set is associated.
stackName
- The name of the stack with which the change set is associated.public String getStackName()
The name of the stack with which the change set is associated.
public ChangeSetSummary withStackName(String stackName)
The name of the stack with which the change set is associated.
stackName
- The name of the stack with which the change set is associated.public void setChangeSetId(String changeSetId)
The ID of the change set.
changeSetId
- The ID of the change set.public String getChangeSetId()
The ID of the change set.
public ChangeSetSummary withChangeSetId(String changeSetId)
The ID of the change set.
changeSetId
- The ID of the change set.public void setChangeSetName(String changeSetName)
The name of the change set.
changeSetName
- The name of the change set.public String getChangeSetName()
The name of the change set.
public ChangeSetSummary withChangeSetName(String changeSetName)
The name of the change set.
changeSetName
- The name of the change set.public void setExecutionStatus(String executionStatus)
If the change set execution status is AVAILABLE
, you can
execute the change set. If you can’t execute the change set, the status
indicates why. For example, a change set might be in an
UNAVAILABLE
state because AWS CloudFormation is still
creating it or in an OBSOLETE
state because the stack was
already updated.
executionStatus
- If the change set execution status is AVAILABLE
, you
can execute the change set. If you can’t execute the change set,
the status indicates why. For example, a change set might be in an
UNAVAILABLE
state because AWS CloudFormation is still
creating it or in an OBSOLETE
state because the stack
was already updated.ExecutionStatus
public String getExecutionStatus()
If the change set execution status is AVAILABLE
, you can
execute the change set. If you can’t execute the change set, the status
indicates why. For example, a change set might be in an
UNAVAILABLE
state because AWS CloudFormation is still
creating it or in an OBSOLETE
state because the stack was
already updated.
AVAILABLE
, you
can execute the change set. If you can’t execute the change set,
the status indicates why. For example, a change set might be in
an UNAVAILABLE
state because AWS CloudFormation is
still creating it or in an OBSOLETE
state because
the stack was already updated.ExecutionStatus
public ChangeSetSummary withExecutionStatus(String executionStatus)
If the change set execution status is AVAILABLE
, you can
execute the change set. If you can’t execute the change set, the status
indicates why. For example, a change set might be in an
UNAVAILABLE
state because AWS CloudFormation is still
creating it or in an OBSOLETE
state because the stack was
already updated.
executionStatus
- If the change set execution status is AVAILABLE
, you
can execute the change set. If you can’t execute the change set,
the status indicates why. For example, a change set might be in an
UNAVAILABLE
state because AWS CloudFormation is still
creating it or in an OBSOLETE
state because the stack
was already updated.ExecutionStatus
public void setExecutionStatus(ExecutionStatus executionStatus)
If the change set execution status is AVAILABLE
, you can
execute the change set. If you can’t execute the change set, the status
indicates why. For example, a change set might be in an
UNAVAILABLE
state because AWS CloudFormation is still
creating it or in an OBSOLETE
state because the stack was
already updated.
executionStatus
- If the change set execution status is AVAILABLE
, you
can execute the change set. If you can’t execute the change set,
the status indicates why. For example, a change set might be in an
UNAVAILABLE
state because AWS CloudFormation is still
creating it or in an OBSOLETE
state because the stack
was already updated.ExecutionStatus
public ChangeSetSummary withExecutionStatus(ExecutionStatus executionStatus)
If the change set execution status is AVAILABLE
, you can
execute the change set. If you can’t execute the change set, the status
indicates why. For example, a change set might be in an
UNAVAILABLE
state because AWS CloudFormation is still
creating it or in an OBSOLETE
state because the stack was
already updated.
executionStatus
- If the change set execution status is AVAILABLE
, you
can execute the change set. If you can’t execute the change set,
the status indicates why. For example, a change set might be in an
UNAVAILABLE
state because AWS CloudFormation is still
creating it or in an OBSOLETE
state because the stack
was already updated.ExecutionStatus
public void setStatus(String status)
The state of the change set, such as CREATE_IN_PROGRESS
,
CREATE_COMPLETE
, or FAILED
.
status
- The state of the change set, such as
CREATE_IN_PROGRESS
, CREATE_COMPLETE
, or
FAILED
.ChangeSetStatus
public String getStatus()
The state of the change set, such as CREATE_IN_PROGRESS
,
CREATE_COMPLETE
, or FAILED
.
CREATE_IN_PROGRESS
, CREATE_COMPLETE
, or
FAILED
.ChangeSetStatus
public ChangeSetSummary withStatus(String status)
The state of the change set, such as CREATE_IN_PROGRESS
,
CREATE_COMPLETE
, or FAILED
.
status
- The state of the change set, such as
CREATE_IN_PROGRESS
, CREATE_COMPLETE
, or
FAILED
.ChangeSetStatus
public void setStatus(ChangeSetStatus status)
The state of the change set, such as CREATE_IN_PROGRESS
,
CREATE_COMPLETE
, or FAILED
.
status
- The state of the change set, such as
CREATE_IN_PROGRESS
, CREATE_COMPLETE
, or
FAILED
.ChangeSetStatus
public ChangeSetSummary withStatus(ChangeSetStatus status)
The state of the change set, such as CREATE_IN_PROGRESS
,
CREATE_COMPLETE
, or FAILED
.
status
- The state of the change set, such as
CREATE_IN_PROGRESS
, CREATE_COMPLETE
, or
FAILED
.ChangeSetStatus
public void setStatusReason(String statusReason)
A description of the change set's status. For example, if your change set
is in the FAILED
state, AWS CloudFormation shows the error
message.
statusReason
- A description of the change set's status. For example, if your
change set is in the FAILED
state, AWS CloudFormation
shows the error message.public String getStatusReason()
A description of the change set's status. For example, if your change set
is in the FAILED
state, AWS CloudFormation shows the error
message.
FAILED
state, AWS
CloudFormation shows the error message.public ChangeSetSummary withStatusReason(String statusReason)
A description of the change set's status. For example, if your change set
is in the FAILED
state, AWS CloudFormation shows the error
message.
statusReason
- A description of the change set's status. For example, if your
change set is in the FAILED
state, AWS CloudFormation
shows the error message.public void setCreationTime(Date creationTime)
The start time when the change set was created, in UTC.
creationTime
- The start time when the change set was created, in UTC.public Date getCreationTime()
The start time when the change set was created, in UTC.
public ChangeSetSummary withCreationTime(Date creationTime)
The start time when the change set was created, in UTC.
creationTime
- The start time when the change set was created, in UTC.public void setDescription(String description)
Descriptive information about the change set.
description
- Descriptive information about the change set.public String getDescription()
Descriptive information about the change set.
public ChangeSetSummary withDescription(String description)
Descriptive information about the change set.
description
- Descriptive information about the change set.public String toString()
toString
in class Object
Object.toString()
public ChangeSetSummary clone()
Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.