com.amazonaws.services.cloudformation.model.StackEvent Maven / Gradle / Ivy
Show all versions of aws-java-sdk-cloudformation Show documentation
/*
* Copyright 2013-2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.cloudformation.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* The StackEvent data type.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class StackEvent implements Serializable, Cloneable {
/**
*
* The unique ID name of the instance of the stack.
*
*/
private String stackId;
/**
*
* The unique ID of this event.
*
*/
private String eventId;
/**
*
* The name associated with a stack.
*
*/
private String stackName;
/**
*
* The logical name of the resource specified in the template.
*
*/
private String logicalResourceId;
/**
*
* The name or unique identifier associated with the physical instance of the resource.
*
*/
private String physicalResourceId;
/**
*
* Type of resource. (For more information, go to AWS
* Resource Types Reference in the AWS CloudFormation User Guide.)
*
*/
private String resourceType;
/**
*
* Time the status was updated.
*
*/
private java.util.Date timestamp;
/**
*
* Current status of the resource.
*
*/
private String resourceStatus;
/**
*
* Success/failure message associated with the resource.
*
*/
private String resourceStatusReason;
/**
*
* BLOB of the properties used to create the resource.
*
*/
private String resourceProperties;
/**
*
* The token passed to the operation that generated this event.
*
*
* All events triggered by a given stack operation are assigned the same client request token, which you can use to
* track operations. For example, if you execute a CreateStack
operation with the token
* token1
, then all the StackEvents
generated by that operation will have
* ClientRequestToken
set as token1
.
*
*
* In the console, stack operations display the client request token on the Events tab. Stack operations that are
* initiated from the console use the token format Console-StackOperation-ID, which helps you easily identify
* the stack operation . For example, if you create a stack using the console, each stack event would be assigned
* the same token in the following format: Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002
.
*
*/
private String clientRequestToken;
/**
*
* The unique ID name of the instance of the stack.
*
*
* @param stackId
* The unique ID name of the instance of the stack.
*/
public void setStackId(String stackId) {
this.stackId = stackId;
}
/**
*
* The unique ID name of the instance of the stack.
*
*
* @return The unique ID name of the instance of the stack.
*/
public String getStackId() {
return this.stackId;
}
/**
*
* The unique ID name of the instance of the stack.
*
*
* @param stackId
* The unique ID name of the instance of the stack.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public StackEvent withStackId(String stackId) {
setStackId(stackId);
return this;
}
/**
*
* The unique ID of this event.
*
*
* @param eventId
* The unique ID of this event.
*/
public void setEventId(String eventId) {
this.eventId = eventId;
}
/**
*
* The unique ID of this event.
*
*
* @return The unique ID of this event.
*/
public String getEventId() {
return this.eventId;
}
/**
*
* The unique ID of this event.
*
*
* @param eventId
* The unique ID of this event.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public StackEvent withEventId(String eventId) {
setEventId(eventId);
return this;
}
/**
*
* The name associated with a stack.
*
*
* @param stackName
* The name associated with a stack.
*/
public void setStackName(String stackName) {
this.stackName = stackName;
}
/**
*
* The name associated with a stack.
*
*
* @return The name associated with a stack.
*/
public String getStackName() {
return this.stackName;
}
/**
*
* The name associated with a stack.
*
*
* @param stackName
* The name associated with a stack.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public StackEvent withStackName(String stackName) {
setStackName(stackName);
return this;
}
/**
*
* The logical name of the resource specified in the template.
*
*
* @param logicalResourceId
* The logical name of the resource specified in the template.
*/
public void setLogicalResourceId(String logicalResourceId) {
this.logicalResourceId = logicalResourceId;
}
/**
*
* The logical name of the resource specified in the template.
*
*
* @return The logical name of the resource specified in the template.
*/
public String getLogicalResourceId() {
return this.logicalResourceId;
}
/**
*
* The logical name of the resource specified in the template.
*
*
* @param logicalResourceId
* The logical name of the resource specified in the template.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public StackEvent withLogicalResourceId(String logicalResourceId) {
setLogicalResourceId(logicalResourceId);
return this;
}
/**
*
* The name or unique identifier associated with the physical instance of the resource.
*
*
* @param physicalResourceId
* The name or unique identifier associated with the physical instance of the resource.
*/
public void setPhysicalResourceId(String physicalResourceId) {
this.physicalResourceId = physicalResourceId;
}
/**
*
* The name or unique identifier associated with the physical instance of the resource.
*
*
* @return The name or unique identifier associated with the physical instance of the resource.
*/
public String getPhysicalResourceId() {
return this.physicalResourceId;
}
/**
*
* The name or unique identifier associated with the physical instance of the resource.
*
*
* @param physicalResourceId
* The name or unique identifier associated with the physical instance of the resource.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public StackEvent withPhysicalResourceId(String physicalResourceId) {
setPhysicalResourceId(physicalResourceId);
return this;
}
/**
*
* Type of resource. (For more information, go to AWS
* Resource Types Reference in the AWS CloudFormation User Guide.)
*
*
* @param resourceType
* Type of resource. (For more information, go to
* AWS Resource Types Reference in the AWS CloudFormation User Guide.)
*/
public void setResourceType(String resourceType) {
this.resourceType = resourceType;
}
/**
*
* Type of resource. (For more information, go to AWS
* Resource Types Reference in the AWS CloudFormation User Guide.)
*
*
* @return Type of resource. (For more information, go to
* AWS Resource Types Reference in the AWS CloudFormation User Guide.)
*/
public String getResourceType() {
return this.resourceType;
}
/**
*
* Type of resource. (For more information, go to AWS
* Resource Types Reference in the AWS CloudFormation User Guide.)
*
*
* @param resourceType
* Type of resource. (For more information, go to
* AWS Resource Types Reference in the AWS CloudFormation User Guide.)
* @return Returns a reference to this object so that method calls can be chained together.
*/
public StackEvent withResourceType(String resourceType) {
setResourceType(resourceType);
return this;
}
/**
*
* Time the status was updated.
*
*
* @param timestamp
* Time the status was updated.
*/
public void setTimestamp(java.util.Date timestamp) {
this.timestamp = timestamp;
}
/**
*
* Time the status was updated.
*
*
* @return Time the status was updated.
*/
public java.util.Date getTimestamp() {
return this.timestamp;
}
/**
*
* Time the status was updated.
*
*
* @param timestamp
* Time the status was updated.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public StackEvent withTimestamp(java.util.Date timestamp) {
setTimestamp(timestamp);
return this;
}
/**
*
* Current status of the resource.
*
*
* @param resourceStatus
* Current status of the resource.
* @see ResourceStatus
*/
public void setResourceStatus(String resourceStatus) {
this.resourceStatus = resourceStatus;
}
/**
*
* Current status of the resource.
*
*
* @return Current status of the resource.
* @see ResourceStatus
*/
public String getResourceStatus() {
return this.resourceStatus;
}
/**
*
* Current status of the resource.
*
*
* @param resourceStatus
* Current status of the resource.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ResourceStatus
*/
public StackEvent withResourceStatus(String resourceStatus) {
setResourceStatus(resourceStatus);
return this;
}
/**
*
* Current status of the resource.
*
*
* @param resourceStatus
* Current status of the resource.
* @see ResourceStatus
*/
public void setResourceStatus(ResourceStatus resourceStatus) {
withResourceStatus(resourceStatus);
}
/**
*
* Current status of the resource.
*
*
* @param resourceStatus
* Current status of the resource.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ResourceStatus
*/
public StackEvent withResourceStatus(ResourceStatus resourceStatus) {
this.resourceStatus = resourceStatus.toString();
return this;
}
/**
*
* Success/failure message associated with the resource.
*
*
* @param resourceStatusReason
* Success/failure message associated with the resource.
*/
public void setResourceStatusReason(String resourceStatusReason) {
this.resourceStatusReason = resourceStatusReason;
}
/**
*
* Success/failure message associated with the resource.
*
*
* @return Success/failure message associated with the resource.
*/
public String getResourceStatusReason() {
return this.resourceStatusReason;
}
/**
*
* Success/failure message associated with the resource.
*
*
* @param resourceStatusReason
* Success/failure message associated with the resource.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public StackEvent withResourceStatusReason(String resourceStatusReason) {
setResourceStatusReason(resourceStatusReason);
return this;
}
/**
*
* BLOB of the properties used to create the resource.
*
*
* @param resourceProperties
* BLOB of the properties used to create the resource.
*/
public void setResourceProperties(String resourceProperties) {
this.resourceProperties = resourceProperties;
}
/**
*
* BLOB of the properties used to create the resource.
*
*
* @return BLOB of the properties used to create the resource.
*/
public String getResourceProperties() {
return this.resourceProperties;
}
/**
*
* BLOB of the properties used to create the resource.
*
*
* @param resourceProperties
* BLOB of the properties used to create the resource.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public StackEvent withResourceProperties(String resourceProperties) {
setResourceProperties(resourceProperties);
return this;
}
/**
*
* The token passed to the operation that generated this event.
*
*
* All events triggered by a given stack operation are assigned the same client request token, which you can use to
* track operations. For example, if you execute a CreateStack
operation with the token
* token1
, then all the StackEvents
generated by that operation will have
* ClientRequestToken
set as token1
.
*
*
* In the console, stack operations display the client request token on the Events tab. Stack operations that are
* initiated from the console use the token format Console-StackOperation-ID, which helps you easily identify
* the stack operation . For example, if you create a stack using the console, each stack event would be assigned
* the same token in the following format: Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002
.
*
*
* @param clientRequestToken
* The token passed to the operation that generated this event.
*
* All events triggered by a given stack operation are assigned the same client request token, which you can
* use to track operations. For example, if you execute a CreateStack
operation with the token
* token1
, then all the StackEvents
generated by that operation will have
* ClientRequestToken
set as token1
.
*
*
* In the console, stack operations display the client request token on the Events tab. Stack operations that
* are initiated from the console use the token format Console-StackOperation-ID, which helps you
* easily identify the stack operation . For example, if you create a stack using the console, each stack
* event would be assigned the same token in the following format:
* Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002
.
*/
public void setClientRequestToken(String clientRequestToken) {
this.clientRequestToken = clientRequestToken;
}
/**
*
* The token passed to the operation that generated this event.
*
*
* All events triggered by a given stack operation are assigned the same client request token, which you can use to
* track operations. For example, if you execute a CreateStack
operation with the token
* token1
, then all the StackEvents
generated by that operation will have
* ClientRequestToken
set as token1
.
*
*
* In the console, stack operations display the client request token on the Events tab. Stack operations that are
* initiated from the console use the token format Console-StackOperation-ID, which helps you easily identify
* the stack operation . For example, if you create a stack using the console, each stack event would be assigned
* the same token in the following format: Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002
.
*
*
* @return The token passed to the operation that generated this event.
*
* All events triggered by a given stack operation are assigned the same client request token, which you can
* use to track operations. For example, if you execute a CreateStack
operation with the token
* token1
, then all the StackEvents
generated by that operation will have
* ClientRequestToken
set as token1
.
*
*
* In the console, stack operations display the client request token on the Events tab. Stack operations
* that are initiated from the console use the token format Console-StackOperation-ID, which helps
* you easily identify the stack operation . For example, if you create a stack using the console, each
* stack event would be assigned the same token in the following format:
* Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002
.
*/
public String getClientRequestToken() {
return this.clientRequestToken;
}
/**
*
* The token passed to the operation that generated this event.
*
*
* All events triggered by a given stack operation are assigned the same client request token, which you can use to
* track operations. For example, if you execute a CreateStack
operation with the token
* token1
, then all the StackEvents
generated by that operation will have
* ClientRequestToken
set as token1
.
*
*
* In the console, stack operations display the client request token on the Events tab. Stack operations that are
* initiated from the console use the token format Console-StackOperation-ID, which helps you easily identify
* the stack operation . For example, if you create a stack using the console, each stack event would be assigned
* the same token in the following format: Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002
.
*
*
* @param clientRequestToken
* The token passed to the operation that generated this event.
*
* All events triggered by a given stack operation are assigned the same client request token, which you can
* use to track operations. For example, if you execute a CreateStack
operation with the token
* token1
, then all the StackEvents
generated by that operation will have
* ClientRequestToken
set as token1
.
*
*
* In the console, stack operations display the client request token on the Events tab. Stack operations that
* are initiated from the console use the token format Console-StackOperation-ID, which helps you
* easily identify the stack operation . For example, if you create a stack using the console, each stack
* event would be assigned the same token in the following format:
* Console-CreateStack-7f59c3cf-00d2-40c7-b2ff-e75db0987002
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public StackEvent withClientRequestToken(String clientRequestToken) {
setClientRequestToken(clientRequestToken);
return this;
}
/**
* Returns a string representation of this object; useful for testing and debugging.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getStackId() != null)
sb.append("StackId: ").append(getStackId()).append(",");
if (getEventId() != null)
sb.append("EventId: ").append(getEventId()).append(",");
if (getStackName() != null)
sb.append("StackName: ").append(getStackName()).append(",");
if (getLogicalResourceId() != null)
sb.append("LogicalResourceId: ").append(getLogicalResourceId()).append(",");
if (getPhysicalResourceId() != null)
sb.append("PhysicalResourceId: ").append(getPhysicalResourceId()).append(",");
if (getResourceType() != null)
sb.append("ResourceType: ").append(getResourceType()).append(",");
if (getTimestamp() != null)
sb.append("Timestamp: ").append(getTimestamp()).append(",");
if (getResourceStatus() != null)
sb.append("ResourceStatus: ").append(getResourceStatus()).append(",");
if (getResourceStatusReason() != null)
sb.append("ResourceStatusReason: ").append(getResourceStatusReason()).append(",");
if (getResourceProperties() != null)
sb.append("ResourceProperties: ").append(getResourceProperties()).append(",");
if (getClientRequestToken() != null)
sb.append("ClientRequestToken: ").append(getClientRequestToken());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof StackEvent == false)
return false;
StackEvent other = (StackEvent) obj;
if (other.getStackId() == null ^ this.getStackId() == null)
return false;
if (other.getStackId() != null && other.getStackId().equals(this.getStackId()) == false)
return false;
if (other.getEventId() == null ^ this.getEventId() == null)
return false;
if (other.getEventId() != null && other.getEventId().equals(this.getEventId()) == false)
return false;
if (other.getStackName() == null ^ this.getStackName() == null)
return false;
if (other.getStackName() != null && other.getStackName().equals(this.getStackName()) == false)
return false;
if (other.getLogicalResourceId() == null ^ this.getLogicalResourceId() == null)
return false;
if (other.getLogicalResourceId() != null && other.getLogicalResourceId().equals(this.getLogicalResourceId()) == false)
return false;
if (other.getPhysicalResourceId() == null ^ this.getPhysicalResourceId() == null)
return false;
if (other.getPhysicalResourceId() != null && other.getPhysicalResourceId().equals(this.getPhysicalResourceId()) == false)
return false;
if (other.getResourceType() == null ^ this.getResourceType() == null)
return false;
if (other.getResourceType() != null && other.getResourceType().equals(this.getResourceType()) == false)
return false;
if (other.getTimestamp() == null ^ this.getTimestamp() == null)
return false;
if (other.getTimestamp() != null && other.getTimestamp().equals(this.getTimestamp()) == false)
return false;
if (other.getResourceStatus() == null ^ this.getResourceStatus() == null)
return false;
if (other.getResourceStatus() != null && other.getResourceStatus().equals(this.getResourceStatus()) == false)
return false;
if (other.getResourceStatusReason() == null ^ this.getResourceStatusReason() == null)
return false;
if (other.getResourceStatusReason() != null && other.getResourceStatusReason().equals(this.getResourceStatusReason()) == false)
return false;
if (other.getResourceProperties() == null ^ this.getResourceProperties() == null)
return false;
if (other.getResourceProperties() != null && other.getResourceProperties().equals(this.getResourceProperties()) == false)
return false;
if (other.getClientRequestToken() == null ^ this.getClientRequestToken() == null)
return false;
if (other.getClientRequestToken() != null && other.getClientRequestToken().equals(this.getClientRequestToken()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getStackId() == null) ? 0 : getStackId().hashCode());
hashCode = prime * hashCode + ((getEventId() == null) ? 0 : getEventId().hashCode());
hashCode = prime * hashCode + ((getStackName() == null) ? 0 : getStackName().hashCode());
hashCode = prime * hashCode + ((getLogicalResourceId() == null) ? 0 : getLogicalResourceId().hashCode());
hashCode = prime * hashCode + ((getPhysicalResourceId() == null) ? 0 : getPhysicalResourceId().hashCode());
hashCode = prime * hashCode + ((getResourceType() == null) ? 0 : getResourceType().hashCode());
hashCode = prime * hashCode + ((getTimestamp() == null) ? 0 : getTimestamp().hashCode());
hashCode = prime * hashCode + ((getResourceStatus() == null) ? 0 : getResourceStatus().hashCode());
hashCode = prime * hashCode + ((getResourceStatusReason() == null) ? 0 : getResourceStatusReason().hashCode());
hashCode = prime * hashCode + ((getResourceProperties() == null) ? 0 : getResourceProperties().hashCode());
hashCode = prime * hashCode + ((getClientRequestToken() == null) ? 0 : getClientRequestToken().hashCode());
return hashCode;
}
@Override
public StackEvent clone() {
try {
return (StackEvent) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}