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

com.amazonaws.services.cloudformation.model.Stack 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 2018-2023 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 Stack data type. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class Stack implements Serializable, Cloneable { /** *

* Unique identifier of the stack. *

*/ private String stackId; /** *

* The name associated with the stack. *

*/ private String stackName; /** *

* The unique ID of the change set. *

*/ private String changeSetId; /** *

* A user-defined description associated with the stack. *

*/ private String description; /** *

* A list of Parameter structures. *

*/ private com.amazonaws.internal.SdkInternalList parameters; /** *

* The time at which the stack was created. *

*/ private java.util.Date creationTime; /** *

* The time the stack was deleted. *

*/ private java.util.Date deletionTime; /** *

* The time the stack was last updated. This field will only be returned if the stack has been updated at least * once. *

*/ private java.util.Date lastUpdatedTime; /** *

* The rollback triggers for CloudFormation to monitor during stack creation and updating operations, and for the * specified monitoring period afterwards. *

*/ private RollbackConfiguration rollbackConfiguration; /** *

* Current status of the stack. *

*/ private String stackStatus; /** *

* Success/failure message associated with the stack status. *

*/ private String stackStatusReason; /** *

* Boolean to enable or disable rollback on stack creation failures: *

*
    *
  • *

    * true: disable rollback. *

    *
  • *
  • *

    * false: enable rollback. *

    *
  • *
*/ private Boolean disableRollback; /** *

* Amazon SNS topic Amazon Resource Names (ARNs) to which stack related events are published. *

*/ private com.amazonaws.internal.SdkInternalList notificationARNs; /** *

* The amount of time within which stack creation should complete. *

*/ private Integer timeoutInMinutes; /** *

* The capabilities allowed in the stack. *

*/ private com.amazonaws.internal.SdkInternalList capabilities; /** *

* A list of output structures. *

*/ private com.amazonaws.internal.SdkInternalList outputs; /** *

* The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that's associated with the stack. * During a stack operation, CloudFormation uses this role's credentials to make calls on your behalf. *

*/ private String roleARN; /** *

* A list of Tags that specify information about the stack. *

*/ private com.amazonaws.internal.SdkInternalList tags; /** *

* Whether termination protection is enabled for the stack. *

*

* For nested * stacks, termination protection is set on the root stack and can't be changed directly on the nested stack. * For more information, see Protecting a * Stack From Being Deleted in the CloudFormation User Guide. *

*/ private Boolean enableTerminationProtection; /** *

* For nested stacks--stacks created as resources for another stack--the stack ID of the direct parent of this * stack. For the first level of nested stacks, the root stack is also the parent stack. *

*

* For more information, see Working with * Nested Stacks in the CloudFormation User Guide. *

*/ private String parentId; /** *

* For nested stacks--stacks created as resources for another stack--the stack ID of the top-level stack to which * the nested stack ultimately belongs. *

*

* For more information, see Working with * Nested Stacks in the CloudFormation User Guide. *

*/ private String rootId; /** *

* Information about whether a stack's actual configuration differs, or has drifted, from its expected * configuration, as defined in the stack template and any values specified as template parameters. For more * information, see Detecting * Unregulated Configuration Changes to Stacks and Resources. *

*/ private StackDriftInformation driftInformation; /** *

* When set to true, newly created resources are deleted when the operation rolls back. This includes * newly created resources marked with a deletion policy of Retain. *

*

* Default: false *

*/ private Boolean retainExceptOnCreate; /** *

* Unique identifier of the stack. *

* * @param stackId * Unique identifier of the stack. */ public void setStackId(String stackId) { this.stackId = stackId; } /** *

* Unique identifier of the stack. *

* * @return Unique identifier of the stack. */ public String getStackId() { return this.stackId; } /** *

* Unique identifier of the stack. *

* * @param stackId * Unique identifier of the stack. * @return Returns a reference to this object so that method calls can be chained together. */ public Stack withStackId(String stackId) { setStackId(stackId); return this; } /** *

* The name associated with the stack. *

* * @param stackName * The name associated with the stack. */ public void setStackName(String stackName) { this.stackName = stackName; } /** *

* The name associated with the stack. *

* * @return The name associated with the stack. */ public String getStackName() { return this.stackName; } /** *

* The name associated with the stack. *

* * @param stackName * The name associated with the stack. * @return Returns a reference to this object so that method calls can be chained together. */ public Stack withStackName(String stackName) { setStackName(stackName); return this; } /** *

* The unique ID of the change set. *

* * @param changeSetId * The unique ID of the change set. */ public void setChangeSetId(String changeSetId) { this.changeSetId = changeSetId; } /** *

* The unique ID of the change set. *

* * @return The unique ID of the change set. */ public String getChangeSetId() { return this.changeSetId; } /** *

* The unique ID of the change set. *

* * @param changeSetId * The unique ID of the change set. * @return Returns a reference to this object so that method calls can be chained together. */ public Stack withChangeSetId(String changeSetId) { setChangeSetId(changeSetId); return this; } /** *

* A user-defined description associated with the stack. *

* * @param description * A user-defined description associated with the stack. */ public void setDescription(String description) { this.description = description; } /** *

* A user-defined description associated with the stack. *

* * @return A user-defined description associated with the stack. */ public String getDescription() { return this.description; } /** *

* A user-defined description associated with the stack. *

* * @param description * A user-defined description associated with the stack. * @return Returns a reference to this object so that method calls can be chained together. */ public Stack withDescription(String description) { setDescription(description); return this; } /** *

* A list of Parameter structures. *

* * @return A list of Parameter structures. */ public java.util.List getParameters() { if (parameters == null) { parameters = new com.amazonaws.internal.SdkInternalList(); } return parameters; } /** *

* A list of Parameter structures. *

* * @param parameters * A list of Parameter structures. */ public void setParameters(java.util.Collection parameters) { if (parameters == null) { this.parameters = null; return; } this.parameters = new com.amazonaws.internal.SdkInternalList(parameters); } /** *

* A list of Parameter structures. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setParameters(java.util.Collection)} or {@link #withParameters(java.util.Collection)} if you want to * override the existing values. *

* * @param parameters * A list of Parameter structures. * @return Returns a reference to this object so that method calls can be chained together. */ public Stack withParameters(Parameter... parameters) { if (this.parameters == null) { setParameters(new com.amazonaws.internal.SdkInternalList(parameters.length)); } for (Parameter ele : parameters) { this.parameters.add(ele); } return this; } /** *

* A list of Parameter structures. *

* * @param parameters * A list of Parameter structures. * @return Returns a reference to this object so that method calls can be chained together. */ public Stack withParameters(java.util.Collection parameters) { setParameters(parameters); return this; } /** *

* The time at which the stack was created. *

* * @param creationTime * The time at which the stack was created. */ public void setCreationTime(java.util.Date creationTime) { this.creationTime = creationTime; } /** *

* The time at which the stack was created. *

* * @return The time at which the stack was created. */ public java.util.Date getCreationTime() { return this.creationTime; } /** *

* The time at which the stack was created. *

* * @param creationTime * The time at which the stack was created. * @return Returns a reference to this object so that method calls can be chained together. */ public Stack withCreationTime(java.util.Date creationTime) { setCreationTime(creationTime); return this; } /** *

* The time the stack was deleted. *

* * @param deletionTime * The time the stack was deleted. */ public void setDeletionTime(java.util.Date deletionTime) { this.deletionTime = deletionTime; } /** *

* The time the stack was deleted. *

* * @return The time the stack was deleted. */ public java.util.Date getDeletionTime() { return this.deletionTime; } /** *

* The time the stack was deleted. *

* * @param deletionTime * The time the stack was deleted. * @return Returns a reference to this object so that method calls can be chained together. */ public Stack withDeletionTime(java.util.Date deletionTime) { setDeletionTime(deletionTime); return this; } /** *

* The time the stack was last updated. This field will only be returned if the stack has been updated at least * once. *

* * @param lastUpdatedTime * The time the stack was last updated. This field will only be returned if the stack has been updated at * least once. */ public void setLastUpdatedTime(java.util.Date lastUpdatedTime) { this.lastUpdatedTime = lastUpdatedTime; } /** *

* The time the stack was last updated. This field will only be returned if the stack has been updated at least * once. *

* * @return The time the stack was last updated. This field will only be returned if the stack has been updated at * least once. */ public java.util.Date getLastUpdatedTime() { return this.lastUpdatedTime; } /** *

* The time the stack was last updated. This field will only be returned if the stack has been updated at least * once. *

* * @param lastUpdatedTime * The time the stack was last updated. This field will only be returned if the stack has been updated at * least once. * @return Returns a reference to this object so that method calls can be chained together. */ public Stack withLastUpdatedTime(java.util.Date lastUpdatedTime) { setLastUpdatedTime(lastUpdatedTime); return this; } /** *

* The rollback triggers for CloudFormation to monitor during stack creation and updating operations, and for the * specified monitoring period afterwards. *

* * @param rollbackConfiguration * The rollback triggers for CloudFormation to monitor during stack creation and updating operations, and for * the specified monitoring period afterwards. */ public void setRollbackConfiguration(RollbackConfiguration rollbackConfiguration) { this.rollbackConfiguration = rollbackConfiguration; } /** *

* The rollback triggers for CloudFormation to monitor during stack creation and updating operations, and for the * specified monitoring period afterwards. *

* * @return The rollback triggers for CloudFormation to monitor during stack creation and updating operations, and * for the specified monitoring period afterwards. */ public RollbackConfiguration getRollbackConfiguration() { return this.rollbackConfiguration; } /** *

* The rollback triggers for CloudFormation to monitor during stack creation and updating operations, and for the * specified monitoring period afterwards. *

* * @param rollbackConfiguration * The rollback triggers for CloudFormation to monitor during stack creation and updating operations, and for * the specified monitoring period afterwards. * @return Returns a reference to this object so that method calls can be chained together. */ public Stack withRollbackConfiguration(RollbackConfiguration rollbackConfiguration) { setRollbackConfiguration(rollbackConfiguration); return this; } /** *

* Current status of the stack. *

* * @param stackStatus * Current status of the stack. * @see StackStatus */ public void setStackStatus(String stackStatus) { this.stackStatus = stackStatus; } /** *

* Current status of the stack. *

* * @return Current status of the stack. * @see StackStatus */ public String getStackStatus() { return this.stackStatus; } /** *

* Current status of the stack. *

* * @param stackStatus * Current status of the stack. * @return Returns a reference to this object so that method calls can be chained together. * @see StackStatus */ public Stack withStackStatus(String stackStatus) { setStackStatus(stackStatus); return this; } /** *

* Current status of the stack. *

* * @param stackStatus * Current status of the stack. * @see StackStatus */ public void setStackStatus(StackStatus stackStatus) { withStackStatus(stackStatus); } /** *

* Current status of the stack. *

* * @param stackStatus * Current status of the stack. * @return Returns a reference to this object so that method calls can be chained together. * @see StackStatus */ public Stack withStackStatus(StackStatus stackStatus) { this.stackStatus = stackStatus.toString(); return this; } /** *

* Success/failure message associated with the stack status. *

* * @param stackStatusReason * Success/failure message associated with the stack status. */ public void setStackStatusReason(String stackStatusReason) { this.stackStatusReason = stackStatusReason; } /** *

* Success/failure message associated with the stack status. *

* * @return Success/failure message associated with the stack status. */ public String getStackStatusReason() { return this.stackStatusReason; } /** *

* Success/failure message associated with the stack status. *

* * @param stackStatusReason * Success/failure message associated with the stack status. * @return Returns a reference to this object so that method calls can be chained together. */ public Stack withStackStatusReason(String stackStatusReason) { setStackStatusReason(stackStatusReason); return this; } /** *

* Boolean to enable or disable rollback on stack creation failures: *

*
    *
  • *

    * true: disable rollback. *

    *
  • *
  • *

    * false: enable rollback. *

    *
  • *
* * @param disableRollback * Boolean to enable or disable rollback on stack creation failures:

*
    *
  • *

    * true: disable rollback. *

    *
  • *
  • *

    * false: enable rollback. *

    *
  • */ public void setDisableRollback(Boolean disableRollback) { this.disableRollback = disableRollback; } /** *

    * Boolean to enable or disable rollback on stack creation failures: *

    *
      *
    • *

      * true: disable rollback. *

      *
    • *
    • *

      * false: enable rollback. *

      *
    • *
    * * @return Boolean to enable or disable rollback on stack creation failures:

    *
      *
    • *

      * true: disable rollback. *

      *
    • *
    • *

      * false: enable rollback. *

      *
    • */ public Boolean getDisableRollback() { return this.disableRollback; } /** *

      * Boolean to enable or disable rollback on stack creation failures: *

      *
        *
      • *

        * true: disable rollback. *

        *
      • *
      • *

        * false: enable rollback. *

        *
      • *
      * * @param disableRollback * Boolean to enable or disable rollback on stack creation failures:

      *
        *
      • *

        * true: disable rollback. *

        *
      • *
      • *

        * false: enable rollback. *

        *
      • * @return Returns a reference to this object so that method calls can be chained together. */ public Stack withDisableRollback(Boolean disableRollback) { setDisableRollback(disableRollback); return this; } /** *

        * Boolean to enable or disable rollback on stack creation failures: *

        *
          *
        • *

          * true: disable rollback. *

          *
        • *
        • *

          * false: enable rollback. *

          *
        • *
        * * @return Boolean to enable or disable rollback on stack creation failures:

        *
          *
        • *

          * true: disable rollback. *

          *
        • *
        • *

          * false: enable rollback. *

          *
        • */ public Boolean isDisableRollback() { return this.disableRollback; } /** *

          * Amazon SNS topic Amazon Resource Names (ARNs) to which stack related events are published. *

          * * @return Amazon SNS topic Amazon Resource Names (ARNs) to which stack related events are published. */ public java.util.List getNotificationARNs() { if (notificationARNs == null) { notificationARNs = new com.amazonaws.internal.SdkInternalList(); } return notificationARNs; } /** *

          * Amazon SNS topic Amazon Resource Names (ARNs) to which stack related events are published. *

          * * @param notificationARNs * Amazon SNS topic Amazon Resource Names (ARNs) to which stack related events are published. */ public void setNotificationARNs(java.util.Collection notificationARNs) { if (notificationARNs == null) { this.notificationARNs = null; return; } this.notificationARNs = new com.amazonaws.internal.SdkInternalList(notificationARNs); } /** *

          * Amazon SNS topic Amazon Resource Names (ARNs) to which stack related events are published. *

          *

          * NOTE: This method appends the values to the existing list (if any). Use * {@link #setNotificationARNs(java.util.Collection)} or {@link #withNotificationARNs(java.util.Collection)} if you * want to override the existing values. *

          * * @param notificationARNs * Amazon SNS topic Amazon Resource Names (ARNs) to which stack related events are published. * @return Returns a reference to this object so that method calls can be chained together. */ public Stack withNotificationARNs(String... notificationARNs) { if (this.notificationARNs == null) { setNotificationARNs(new com.amazonaws.internal.SdkInternalList(notificationARNs.length)); } for (String ele : notificationARNs) { this.notificationARNs.add(ele); } return this; } /** *

          * Amazon SNS topic Amazon Resource Names (ARNs) to which stack related events are published. *

          * * @param notificationARNs * Amazon SNS topic Amazon Resource Names (ARNs) to which stack related events are published. * @return Returns a reference to this object so that method calls can be chained together. */ public Stack withNotificationARNs(java.util.Collection notificationARNs) { setNotificationARNs(notificationARNs); return this; } /** *

          * The amount of time within which stack creation should complete. *

          * * @param timeoutInMinutes * The amount of time within which stack creation should complete. */ public void setTimeoutInMinutes(Integer timeoutInMinutes) { this.timeoutInMinutes = timeoutInMinutes; } /** *

          * The amount of time within which stack creation should complete. *

          * * @return The amount of time within which stack creation should complete. */ public Integer getTimeoutInMinutes() { return this.timeoutInMinutes; } /** *

          * The amount of time within which stack creation should complete. *

          * * @param timeoutInMinutes * The amount of time within which stack creation should complete. * @return Returns a reference to this object so that method calls can be chained together. */ public Stack withTimeoutInMinutes(Integer timeoutInMinutes) { setTimeoutInMinutes(timeoutInMinutes); return this; } /** *

          * The capabilities allowed in the stack. *

          * * @return The capabilities allowed in the stack. * @see Capability */ public java.util.List getCapabilities() { if (capabilities == null) { capabilities = new com.amazonaws.internal.SdkInternalList(); } return capabilities; } /** *

          * The capabilities allowed in the stack. *

          * * @param capabilities * The capabilities allowed in the stack. * @see Capability */ public void setCapabilities(java.util.Collection capabilities) { if (capabilities == null) { this.capabilities = null; return; } this.capabilities = new com.amazonaws.internal.SdkInternalList(capabilities); } /** *

          * The capabilities allowed in the stack. *

          *

          * NOTE: This method appends the values to the existing list (if any). Use * {@link #setCapabilities(java.util.Collection)} or {@link #withCapabilities(java.util.Collection)} if you want to * override the existing values. *

          * * @param capabilities * The capabilities allowed in the stack. * @return Returns a reference to this object so that method calls can be chained together. * @see Capability */ public Stack withCapabilities(String... capabilities) { if (this.capabilities == null) { setCapabilities(new com.amazonaws.internal.SdkInternalList(capabilities.length)); } for (String ele : capabilities) { this.capabilities.add(ele); } return this; } /** *

          * The capabilities allowed in the stack. *

          * * @param capabilities * The capabilities allowed in the stack. * @return Returns a reference to this object so that method calls can be chained together. * @see Capability */ public Stack withCapabilities(java.util.Collection capabilities) { setCapabilities(capabilities); return this; } /** *

          * The capabilities allowed in the stack. *

          * * @param capabilities * The capabilities allowed in the stack. * @return Returns a reference to this object so that method calls can be chained together. * @see Capability */ public Stack withCapabilities(Capability... capabilities) { com.amazonaws.internal.SdkInternalList capabilitiesCopy = new com.amazonaws.internal.SdkInternalList(capabilities.length); for (Capability value : capabilities) { capabilitiesCopy.add(value.toString()); } if (getCapabilities() == null) { setCapabilities(capabilitiesCopy); } else { getCapabilities().addAll(capabilitiesCopy); } return this; } /** *

          * A list of output structures. *

          * * @return A list of output structures. */ public java.util.List getOutputs() { if (outputs == null) { outputs = new com.amazonaws.internal.SdkInternalList(); } return outputs; } /** *

          * A list of output structures. *

          * * @param outputs * A list of output structures. */ public void setOutputs(java.util.Collection outputs) { if (outputs == null) { this.outputs = null; return; } this.outputs = new com.amazonaws.internal.SdkInternalList(outputs); } /** *

          * A list of output structures. *

          *

          * NOTE: This method appends the values to the existing list (if any). Use * {@link #setOutputs(java.util.Collection)} or {@link #withOutputs(java.util.Collection)} if you want to override * the existing values. *

          * * @param outputs * A list of output structures. * @return Returns a reference to this object so that method calls can be chained together. */ public Stack withOutputs(Output... outputs) { if (this.outputs == null) { setOutputs(new com.amazonaws.internal.SdkInternalList(outputs.length)); } for (Output ele : outputs) { this.outputs.add(ele); } return this; } /** *

          * A list of output structures. *

          * * @param outputs * A list of output structures. * @return Returns a reference to this object so that method calls can be chained together. */ public Stack withOutputs(java.util.Collection outputs) { setOutputs(outputs); return this; } /** *

          * The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that's associated with the stack. * During a stack operation, CloudFormation uses this role's credentials to make calls on your behalf. *

          * * @param roleARN * The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that's associated with the * stack. During a stack operation, CloudFormation uses this role's credentials to make calls on your behalf. */ public void setRoleARN(String roleARN) { this.roleARN = roleARN; } /** *

          * The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that's associated with the stack. * During a stack operation, CloudFormation uses this role's credentials to make calls on your behalf. *

          * * @return The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that's associated with the * stack. During a stack operation, CloudFormation uses this role's credentials to make calls on your * behalf. */ public String getRoleARN() { return this.roleARN; } /** *

          * The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that's associated with the stack. * During a stack operation, CloudFormation uses this role's credentials to make calls on your behalf. *

          * * @param roleARN * The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that's associated with the * stack. During a stack operation, CloudFormation uses this role's credentials to make calls on your behalf. * @return Returns a reference to this object so that method calls can be chained together. */ public Stack withRoleARN(String roleARN) { setRoleARN(roleARN); return this; } /** *

          * A list of Tags that specify information about the stack. *

          * * @return A list of Tags that specify information about the stack. */ public java.util.List getTags() { if (tags == null) { tags = new com.amazonaws.internal.SdkInternalList(); } return tags; } /** *

          * A list of Tags that specify information about the stack. *

          * * @param tags * A list of Tags that specify information about the stack. */ public void setTags(java.util.Collection tags) { if (tags == null) { this.tags = null; return; } this.tags = new com.amazonaws.internal.SdkInternalList(tags); } /** *

          * A list of Tags that specify information about the stack. *

          *

          * NOTE: This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. *

          * * @param tags * A list of Tags that specify information about the stack. * @return Returns a reference to this object so that method calls can be chained together. */ public Stack withTags(Tag... tags) { if (this.tags == null) { setTags(new com.amazonaws.internal.SdkInternalList(tags.length)); } for (Tag ele : tags) { this.tags.add(ele); } return this; } /** *

          * A list of Tags that specify information about the stack. *

          * * @param tags * A list of Tags that specify information about the stack. * @return Returns a reference to this object so that method calls can be chained together. */ public Stack withTags(java.util.Collection tags) { setTags(tags); return this; } /** *

          * Whether termination protection is enabled for the stack. *

          *

          * For nested * stacks, termination protection is set on the root stack and can't be changed directly on the nested stack. * For more information, see Protecting a * Stack From Being Deleted in the CloudFormation User Guide. *

          * * @param enableTerminationProtection * Whether termination protection is enabled for the stack.

          *

          * For * nested stacks, termination protection is set on the root stack and can't be changed directly on the * nested stack. For more information, see Protecting a Stack From Being Deleted in the CloudFormation User Guide. */ public void setEnableTerminationProtection(Boolean enableTerminationProtection) { this.enableTerminationProtection = enableTerminationProtection; } /** *

          * Whether termination protection is enabled for the stack. *

          *

          * For nested * stacks, termination protection is set on the root stack and can't be changed directly on the nested stack. * For more information, see Protecting a * Stack From Being Deleted in the CloudFormation User Guide. *

          * * @return Whether termination protection is enabled for the stack.

          *

          * For nested * stacks, termination protection is set on the root stack and can't be changed directly on the nested * stack. For more information, see Protecting a Stack From Being Deleted in the CloudFormation User Guide. */ public Boolean getEnableTerminationProtection() { return this.enableTerminationProtection; } /** *

          * Whether termination protection is enabled for the stack. *

          *

          * For nested * stacks, termination protection is set on the root stack and can't be changed directly on the nested stack. * For more information, see Protecting a * Stack From Being Deleted in the CloudFormation User Guide. *

          * * @param enableTerminationProtection * Whether termination protection is enabled for the stack.

          *

          * For * nested stacks, termination protection is set on the root stack and can't be changed directly on the * nested stack. For more information, see Protecting a Stack From Being Deleted in the CloudFormation User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public Stack withEnableTerminationProtection(Boolean enableTerminationProtection) { setEnableTerminationProtection(enableTerminationProtection); return this; } /** *

          * Whether termination protection is enabled for the stack. *

          *

          * For nested * stacks, termination protection is set on the root stack and can't be changed directly on the nested stack. * For more information, see Protecting a * Stack From Being Deleted in the CloudFormation User Guide. *

          * * @return Whether termination protection is enabled for the stack.

          *

          * For nested * stacks, termination protection is set on the root stack and can't be changed directly on the nested * stack. For more information, see Protecting a Stack From Being Deleted in the CloudFormation User Guide. */ public Boolean isEnableTerminationProtection() { return this.enableTerminationProtection; } /** *

          * For nested stacks--stacks created as resources for another stack--the stack ID of the direct parent of this * stack. For the first level of nested stacks, the root stack is also the parent stack. *

          *

          * For more information, see Working with * Nested Stacks in the CloudFormation User Guide. *

          * * @param parentId * For nested stacks--stacks created as resources for another stack--the stack ID of the direct parent of * this stack. For the first level of nested stacks, the root stack is also the parent stack.

          *

          * For more information, see Working * with Nested Stacks in the CloudFormation User Guide. */ public void setParentId(String parentId) { this.parentId = parentId; } /** *

          * For nested stacks--stacks created as resources for another stack--the stack ID of the direct parent of this * stack. For the first level of nested stacks, the root stack is also the parent stack. *

          *

          * For more information, see Working with * Nested Stacks in the CloudFormation User Guide. *

          * * @return For nested stacks--stacks created as resources for another stack--the stack ID of the direct parent of * this stack. For the first level of nested stacks, the root stack is also the parent stack.

          *

          * For more information, see Working with Nested Stacks in the CloudFormation User Guide. */ public String getParentId() { return this.parentId; } /** *

          * For nested stacks--stacks created as resources for another stack--the stack ID of the direct parent of this * stack. For the first level of nested stacks, the root stack is also the parent stack. *

          *

          * For more information, see Working with * Nested Stacks in the CloudFormation User Guide. *

          * * @param parentId * For nested stacks--stacks created as resources for another stack--the stack ID of the direct parent of * this stack. For the first level of nested stacks, the root stack is also the parent stack.

          *

          * For more information, see Working * with Nested Stacks in the CloudFormation User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public Stack withParentId(String parentId) { setParentId(parentId); return this; } /** *

          * For nested stacks--stacks created as resources for another stack--the stack ID of the top-level stack to which * the nested stack ultimately belongs. *

          *

          * For more information, see Working with * Nested Stacks in the CloudFormation User Guide. *

          * * @param rootId * For nested stacks--stacks created as resources for another stack--the stack ID of the top-level stack to * which the nested stack ultimately belongs.

          *

          * For more information, see Working * with Nested Stacks in the CloudFormation User Guide. */ public void setRootId(String rootId) { this.rootId = rootId; } /** *

          * For nested stacks--stacks created as resources for another stack--the stack ID of the top-level stack to which * the nested stack ultimately belongs. *

          *

          * For more information, see Working with * Nested Stacks in the CloudFormation User Guide. *

          * * @return For nested stacks--stacks created as resources for another stack--the stack ID of the top-level stack to * which the nested stack ultimately belongs.

          *

          * For more information, see Working with Nested Stacks in the CloudFormation User Guide. */ public String getRootId() { return this.rootId; } /** *

          * For nested stacks--stacks created as resources for another stack--the stack ID of the top-level stack to which * the nested stack ultimately belongs. *

          *

          * For more information, see Working with * Nested Stacks in the CloudFormation User Guide. *

          * * @param rootId * For nested stacks--stacks created as resources for another stack--the stack ID of the top-level stack to * which the nested stack ultimately belongs.

          *

          * For more information, see Working * with Nested Stacks in the CloudFormation User Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public Stack withRootId(String rootId) { setRootId(rootId); return this; } /** *

          * Information about whether a stack's actual configuration differs, or has drifted, from its expected * configuration, as defined in the stack template and any values specified as template parameters. For more * information, see Detecting * Unregulated Configuration Changes to Stacks and Resources. *

          * * @param driftInformation * Information about whether a stack's actual configuration differs, or has drifted, from its expected * configuration, as defined in the stack template and any values specified as template parameters. For more * information, see Detecting * Unregulated Configuration Changes to Stacks and Resources. */ public void setDriftInformation(StackDriftInformation driftInformation) { this.driftInformation = driftInformation; } /** *

          * Information about whether a stack's actual configuration differs, or has drifted, from its expected * configuration, as defined in the stack template and any values specified as template parameters. For more * information, see Detecting * Unregulated Configuration Changes to Stacks and Resources. *

          * * @return Information about whether a stack's actual configuration differs, or has drifted, from its * expected configuration, as defined in the stack template and any values specified as template parameters. * For more information, see Detecting Unregulated Configuration Changes to Stacks and Resources. */ public StackDriftInformation getDriftInformation() { return this.driftInformation; } /** *

          * Information about whether a stack's actual configuration differs, or has drifted, from its expected * configuration, as defined in the stack template and any values specified as template parameters. For more * information, see Detecting * Unregulated Configuration Changes to Stacks and Resources. *

          * * @param driftInformation * Information about whether a stack's actual configuration differs, or has drifted, from its expected * configuration, as defined in the stack template and any values specified as template parameters. For more * information, see Detecting * Unregulated Configuration Changes to Stacks and Resources. * @return Returns a reference to this object so that method calls can be chained together. */ public Stack withDriftInformation(StackDriftInformation driftInformation) { setDriftInformation(driftInformation); return this; } /** *

          * When set to true, newly created resources are deleted when the operation rolls back. This includes * newly created resources marked with a deletion policy of Retain. *

          *

          * Default: false *

          * * @param retainExceptOnCreate * When set to true, newly created resources are deleted when the operation rolls back. This * includes newly created resources marked with a deletion policy of Retain.

          *

          * Default: false */ public void setRetainExceptOnCreate(Boolean retainExceptOnCreate) { this.retainExceptOnCreate = retainExceptOnCreate; } /** *

          * When set to true, newly created resources are deleted when the operation rolls back. This includes * newly created resources marked with a deletion policy of Retain. *

          *

          * Default: false *

          * * @return When set to true, newly created resources are deleted when the operation rolls back. This * includes newly created resources marked with a deletion policy of Retain.

          *

          * Default: false */ public Boolean getRetainExceptOnCreate() { return this.retainExceptOnCreate; } /** *

          * When set to true, newly created resources are deleted when the operation rolls back. This includes * newly created resources marked with a deletion policy of Retain. *

          *

          * Default: false *

          * * @param retainExceptOnCreate * When set to true, newly created resources are deleted when the operation rolls back. This * includes newly created resources marked with a deletion policy of Retain.

          *

          * Default: false * @return Returns a reference to this object so that method calls can be chained together. */ public Stack withRetainExceptOnCreate(Boolean retainExceptOnCreate) { setRetainExceptOnCreate(retainExceptOnCreate); return this; } /** *

          * When set to true, newly created resources are deleted when the operation rolls back. This includes * newly created resources marked with a deletion policy of Retain. *

          *

          * Default: false *

          * * @return When set to true, newly created resources are deleted when the operation rolls back. This * includes newly created resources marked with a deletion policy of Retain.

          *

          * Default: false */ public Boolean isRetainExceptOnCreate() { return this.retainExceptOnCreate; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @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 (getStackName() != null) sb.append("StackName: ").append(getStackName()).append(","); if (getChangeSetId() != null) sb.append("ChangeSetId: ").append(getChangeSetId()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getParameters() != null) sb.append("Parameters: ").append(getParameters()).append(","); if (getCreationTime() != null) sb.append("CreationTime: ").append(getCreationTime()).append(","); if (getDeletionTime() != null) sb.append("DeletionTime: ").append(getDeletionTime()).append(","); if (getLastUpdatedTime() != null) sb.append("LastUpdatedTime: ").append(getLastUpdatedTime()).append(","); if (getRollbackConfiguration() != null) sb.append("RollbackConfiguration: ").append(getRollbackConfiguration()).append(","); if (getStackStatus() != null) sb.append("StackStatus: ").append(getStackStatus()).append(","); if (getStackStatusReason() != null) sb.append("StackStatusReason: ").append(getStackStatusReason()).append(","); if (getDisableRollback() != null) sb.append("DisableRollback: ").append(getDisableRollback()).append(","); if (getNotificationARNs() != null) sb.append("NotificationARNs: ").append(getNotificationARNs()).append(","); if (getTimeoutInMinutes() != null) sb.append("TimeoutInMinutes: ").append(getTimeoutInMinutes()).append(","); if (getCapabilities() != null) sb.append("Capabilities: ").append(getCapabilities()).append(","); if (getOutputs() != null) sb.append("Outputs: ").append(getOutputs()).append(","); if (getRoleARN() != null) sb.append("RoleARN: ").append(getRoleARN()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()).append(","); if (getEnableTerminationProtection() != null) sb.append("EnableTerminationProtection: ").append(getEnableTerminationProtection()).append(","); if (getParentId() != null) sb.append("ParentId: ").append(getParentId()).append(","); if (getRootId() != null) sb.append("RootId: ").append(getRootId()).append(","); if (getDriftInformation() != null) sb.append("DriftInformation: ").append(getDriftInformation()).append(","); if (getRetainExceptOnCreate() != null) sb.append("RetainExceptOnCreate: ").append(getRetainExceptOnCreate()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof Stack == false) return false; Stack other = (Stack) obj; if (other.getStackId() == null ^ this.getStackId() == null) return false; if (other.getStackId() != null && other.getStackId().equals(this.getStackId()) == 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.getChangeSetId() == null ^ this.getChangeSetId() == null) return false; if (other.getChangeSetId() != null && other.getChangeSetId().equals(this.getChangeSetId()) == false) return false; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getParameters() == null ^ this.getParameters() == null) return false; if (other.getParameters() != null && other.getParameters().equals(this.getParameters()) == false) return false; if (other.getCreationTime() == null ^ this.getCreationTime() == null) return false; if (other.getCreationTime() != null && other.getCreationTime().equals(this.getCreationTime()) == false) return false; if (other.getDeletionTime() == null ^ this.getDeletionTime() == null) return false; if (other.getDeletionTime() != null && other.getDeletionTime().equals(this.getDeletionTime()) == false) return false; if (other.getLastUpdatedTime() == null ^ this.getLastUpdatedTime() == null) return false; if (other.getLastUpdatedTime() != null && other.getLastUpdatedTime().equals(this.getLastUpdatedTime()) == false) return false; if (other.getRollbackConfiguration() == null ^ this.getRollbackConfiguration() == null) return false; if (other.getRollbackConfiguration() != null && other.getRollbackConfiguration().equals(this.getRollbackConfiguration()) == false) return false; if (other.getStackStatus() == null ^ this.getStackStatus() == null) return false; if (other.getStackStatus() != null && other.getStackStatus().equals(this.getStackStatus()) == false) return false; if (other.getStackStatusReason() == null ^ this.getStackStatusReason() == null) return false; if (other.getStackStatusReason() != null && other.getStackStatusReason().equals(this.getStackStatusReason()) == false) return false; if (other.getDisableRollback() == null ^ this.getDisableRollback() == null) return false; if (other.getDisableRollback() != null && other.getDisableRollback().equals(this.getDisableRollback()) == false) return false; if (other.getNotificationARNs() == null ^ this.getNotificationARNs() == null) return false; if (other.getNotificationARNs() != null && other.getNotificationARNs().equals(this.getNotificationARNs()) == false) return false; if (other.getTimeoutInMinutes() == null ^ this.getTimeoutInMinutes() == null) return false; if (other.getTimeoutInMinutes() != null && other.getTimeoutInMinutes().equals(this.getTimeoutInMinutes()) == false) return false; if (other.getCapabilities() == null ^ this.getCapabilities() == null) return false; if (other.getCapabilities() != null && other.getCapabilities().equals(this.getCapabilities()) == false) return false; if (other.getOutputs() == null ^ this.getOutputs() == null) return false; if (other.getOutputs() != null && other.getOutputs().equals(this.getOutputs()) == false) return false; if (other.getRoleARN() == null ^ this.getRoleARN() == null) return false; if (other.getRoleARN() != null && other.getRoleARN().equals(this.getRoleARN()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; if (other.getEnableTerminationProtection() == null ^ this.getEnableTerminationProtection() == null) return false; if (other.getEnableTerminationProtection() != null && other.getEnableTerminationProtection().equals(this.getEnableTerminationProtection()) == false) return false; if (other.getParentId() == null ^ this.getParentId() == null) return false; if (other.getParentId() != null && other.getParentId().equals(this.getParentId()) == false) return false; if (other.getRootId() == null ^ this.getRootId() == null) return false; if (other.getRootId() != null && other.getRootId().equals(this.getRootId()) == false) return false; if (other.getDriftInformation() == null ^ this.getDriftInformation() == null) return false; if (other.getDriftInformation() != null && other.getDriftInformation().equals(this.getDriftInformation()) == false) return false; if (other.getRetainExceptOnCreate() == null ^ this.getRetainExceptOnCreate() == null) return false; if (other.getRetainExceptOnCreate() != null && other.getRetainExceptOnCreate().equals(this.getRetainExceptOnCreate()) == 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 + ((getStackName() == null) ? 0 : getStackName().hashCode()); hashCode = prime * hashCode + ((getChangeSetId() == null) ? 0 : getChangeSetId().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getParameters() == null) ? 0 : getParameters().hashCode()); hashCode = prime * hashCode + ((getCreationTime() == null) ? 0 : getCreationTime().hashCode()); hashCode = prime * hashCode + ((getDeletionTime() == null) ? 0 : getDeletionTime().hashCode()); hashCode = prime * hashCode + ((getLastUpdatedTime() == null) ? 0 : getLastUpdatedTime().hashCode()); hashCode = prime * hashCode + ((getRollbackConfiguration() == null) ? 0 : getRollbackConfiguration().hashCode()); hashCode = prime * hashCode + ((getStackStatus() == null) ? 0 : getStackStatus().hashCode()); hashCode = prime * hashCode + ((getStackStatusReason() == null) ? 0 : getStackStatusReason().hashCode()); hashCode = prime * hashCode + ((getDisableRollback() == null) ? 0 : getDisableRollback().hashCode()); hashCode = prime * hashCode + ((getNotificationARNs() == null) ? 0 : getNotificationARNs().hashCode()); hashCode = prime * hashCode + ((getTimeoutInMinutes() == null) ? 0 : getTimeoutInMinutes().hashCode()); hashCode = prime * hashCode + ((getCapabilities() == null) ? 0 : getCapabilities().hashCode()); hashCode = prime * hashCode + ((getOutputs() == null) ? 0 : getOutputs().hashCode()); hashCode = prime * hashCode + ((getRoleARN() == null) ? 0 : getRoleARN().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getEnableTerminationProtection() == null) ? 0 : getEnableTerminationProtection().hashCode()); hashCode = prime * hashCode + ((getParentId() == null) ? 0 : getParentId().hashCode()); hashCode = prime * hashCode + ((getRootId() == null) ? 0 : getRootId().hashCode()); hashCode = prime * hashCode + ((getDriftInformation() == null) ? 0 : getDriftInformation().hashCode()); hashCode = prime * hashCode + ((getRetainExceptOnCreate() == null) ? 0 : getRetainExceptOnCreate().hashCode()); return hashCode; } @Override public Stack clone() { try { return (Stack) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy