All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.cloudformation.model.SignalResourceRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS CloudFormation module holds the client classes that are used for communicating with AWS CloudFormation Service

There is a newer version: 1.12.778
Show newest version
/*
 * Copyright 2010-2015 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 com.amazonaws.AmazonWebServiceRequest;

/**
 * 

* The input for the SignalResource action. *

*/ public class SignalResourceRequest extends AmazonWebServiceRequest implements Serializable, Cloneable { /** *

* The stack name or unique stack ID that includes the resource that you * want to signal. *

*/ private String stackName; /** *

* The logical ID of the resource that you want to signal. The logical ID is * the name of the resource that given in the template. *

*/ private String logicalResourceId; /** *

* A unique ID of the signal. When you signal Amazon EC2 instances or Auto * Scaling groups, specify the instance ID that you are signaling as the * unique ID. If you send multiple signals to a single resource (such as * signaling a wait condition), each signal requires a different unique ID. *

*/ private String uniqueId; /** *

* The status of the signal, which is either success or failure. A failure * signal causes AWS CloudFormation to immediately fail the stack creation * or update. *

*/ private String status; /** *

* The stack name or unique stack ID that includes the resource that you * want to signal. *

* * @param stackName * The stack name or unique stack ID that includes the resource that * you want to signal. */ public void setStackName(String stackName) { this.stackName = stackName; } /** *

* The stack name or unique stack ID that includes the resource that you * want to signal. *

* * @return The stack name or unique stack ID that includes the resource that * you want to signal. */ public String getStackName() { return this.stackName; } /** *

* The stack name or unique stack ID that includes the resource that you * want to signal. *

* * @param stackName * The stack name or unique stack ID that includes the resource that * you want to signal. * @return Returns a reference to this object so that method calls can be * chained together. */ public SignalResourceRequest withStackName(String stackName) { setStackName(stackName); return this; } /** *

* The logical ID of the resource that you want to signal. The logical ID is * the name of the resource that given in the template. *

* * @param logicalResourceId * The logical ID of the resource that you want to signal. The * logical ID is the name of the resource that given in the template. */ public void setLogicalResourceId(String logicalResourceId) { this.logicalResourceId = logicalResourceId; } /** *

* The logical ID of the resource that you want to signal. The logical ID is * the name of the resource that given in the template. *

* * @return The logical ID of the resource that you want to signal. The * logical ID is the name of the resource that given in the * template. */ public String getLogicalResourceId() { return this.logicalResourceId; } /** *

* The logical ID of the resource that you want to signal. The logical ID is * the name of the resource that given in the template. *

* * @param logicalResourceId * The logical ID of the resource that you want to signal. The * logical ID is the name of the resource that given in the template. * @return Returns a reference to this object so that method calls can be * chained together. */ public SignalResourceRequest withLogicalResourceId(String logicalResourceId) { setLogicalResourceId(logicalResourceId); return this; } /** *

* A unique ID of the signal. When you signal Amazon EC2 instances or Auto * Scaling groups, specify the instance ID that you are signaling as the * unique ID. If you send multiple signals to a single resource (such as * signaling a wait condition), each signal requires a different unique ID. *

* * @param uniqueId * A unique ID of the signal. When you signal Amazon EC2 instances or * Auto Scaling groups, specify the instance ID that you are * signaling as the unique ID. If you send multiple signals to a * single resource (such as signaling a wait condition), each signal * requires a different unique ID. */ public void setUniqueId(String uniqueId) { this.uniqueId = uniqueId; } /** *

* A unique ID of the signal. When you signal Amazon EC2 instances or Auto * Scaling groups, specify the instance ID that you are signaling as the * unique ID. If you send multiple signals to a single resource (such as * signaling a wait condition), each signal requires a different unique ID. *

* * @return A unique ID of the signal. When you signal Amazon EC2 instances * or Auto Scaling groups, specify the instance ID that you are * signaling as the unique ID. If you send multiple signals to a * single resource (such as signaling a wait condition), each signal * requires a different unique ID. */ public String getUniqueId() { return this.uniqueId; } /** *

* A unique ID of the signal. When you signal Amazon EC2 instances or Auto * Scaling groups, specify the instance ID that you are signaling as the * unique ID. If you send multiple signals to a single resource (such as * signaling a wait condition), each signal requires a different unique ID. *

* * @param uniqueId * A unique ID of the signal. When you signal Amazon EC2 instances or * Auto Scaling groups, specify the instance ID that you are * signaling as the unique ID. If you send multiple signals to a * single resource (such as signaling a wait condition), each signal * requires a different unique ID. * @return Returns a reference to this object so that method calls can be * chained together. */ public SignalResourceRequest withUniqueId(String uniqueId) { setUniqueId(uniqueId); return this; } /** *

* The status of the signal, which is either success or failure. A failure * signal causes AWS CloudFormation to immediately fail the stack creation * or update. *

* * @param status * The status of the signal, which is either success or failure. A * failure signal causes AWS CloudFormation to immediately fail the * stack creation or update. * @see ResourceSignalStatus */ public void setStatus(String status) { this.status = status; } /** *

* The status of the signal, which is either success or failure. A failure * signal causes AWS CloudFormation to immediately fail the stack creation * or update. *

* * @return The status of the signal, which is either success or failure. A * failure signal causes AWS CloudFormation to immediately fail the * stack creation or update. * @see ResourceSignalStatus */ public String getStatus() { return this.status; } /** *

* The status of the signal, which is either success or failure. A failure * signal causes AWS CloudFormation to immediately fail the stack creation * or update. *

* * @param status * The status of the signal, which is either success or failure. A * failure signal causes AWS CloudFormation to immediately fail the * stack creation or update. * @return Returns a reference to this object so that method calls can be * chained together. * @see ResourceSignalStatus */ public SignalResourceRequest withStatus(String status) { setStatus(status); return this; } /** *

* The status of the signal, which is either success or failure. A failure * signal causes AWS CloudFormation to immediately fail the stack creation * or update. *

* * @param status * The status of the signal, which is either success or failure. A * failure signal causes AWS CloudFormation to immediately fail the * stack creation or update. * @return Returns a reference to this object so that method calls can be * chained together. * @see ResourceSignalStatus */ public void setStatus(ResourceSignalStatus status) { this.status = status.toString(); } /** *

* The status of the signal, which is either success or failure. A failure * signal causes AWS CloudFormation to immediately fail the stack creation * or update. *

* * @param status * The status of the signal, which is either success or failure. A * failure signal causes AWS CloudFormation to immediately fail the * stack creation or update. * @return Returns a reference to this object so that method calls can be * chained together. * @see ResourceSignalStatus */ public SignalResourceRequest withStatus(ResourceSignalStatus status) { setStatus(status); 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 (getStackName() != null) sb.append("StackName: " + getStackName() + ","); if (getLogicalResourceId() != null) sb.append("LogicalResourceId: " + getLogicalResourceId() + ","); if (getUniqueId() != null) sb.append("UniqueId: " + getUniqueId() + ","); if (getStatus() != null) sb.append("Status: " + getStatus()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof SignalResourceRequest == false) return false; SignalResourceRequest other = (SignalResourceRequest) obj; 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.getUniqueId() == null ^ this.getUniqueId() == null) return false; if (other.getUniqueId() != null && other.getUniqueId().equals(this.getUniqueId()) == false) return false; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getStackName() == null) ? 0 : getStackName().hashCode()); hashCode = prime * hashCode + ((getLogicalResourceId() == null) ? 0 : getLogicalResourceId().hashCode()); hashCode = prime * hashCode + ((getUniqueId() == null) ? 0 : getUniqueId().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); return hashCode; } @Override public SignalResourceRequest clone() { return (SignalResourceRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy