/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The input for the DeleteChangeSet action.See Also:
* AWS
* API Reference
The name or Amazon Resource Name (ARN) of the change set that you want to * delete.
*/ inline const Aws::String& GetChangeSetName() const{ return m_changeSetName; } /** *The name or Amazon Resource Name (ARN) of the change set that you want to * delete.
*/ inline bool ChangeSetNameHasBeenSet() const { return m_changeSetNameHasBeenSet; } /** *The name or Amazon Resource Name (ARN) of the change set that you want to * delete.
*/ inline void SetChangeSetName(const Aws::String& value) { m_changeSetNameHasBeenSet = true; m_changeSetName = value; } /** *The name or Amazon Resource Name (ARN) of the change set that you want to * delete.
*/ inline void SetChangeSetName(Aws::String&& value) { m_changeSetNameHasBeenSet = true; m_changeSetName = std::move(value); } /** *The name or Amazon Resource Name (ARN) of the change set that you want to * delete.
*/ inline void SetChangeSetName(const char* value) { m_changeSetNameHasBeenSet = true; m_changeSetName.assign(value); } /** *The name or Amazon Resource Name (ARN) of the change set that you want to * delete.
*/ inline DeleteChangeSetRequest& WithChangeSetName(const Aws::String& value) { SetChangeSetName(value); return *this;} /** *The name or Amazon Resource Name (ARN) of the change set that you want to * delete.
*/ inline DeleteChangeSetRequest& WithChangeSetName(Aws::String&& value) { SetChangeSetName(std::move(value)); return *this;} /** *The name or Amazon Resource Name (ARN) of the change set that you want to * delete.
*/ inline DeleteChangeSetRequest& WithChangeSetName(const char* value) { SetChangeSetName(value); return *this;} /** *If you specified the name of a change set to delete, specify the stack name * or Amazon Resource Name (ARN) that's associated with it.
*/ inline const Aws::String& GetStackName() const{ return m_stackName; } /** *If you specified the name of a change set to delete, specify the stack name * or Amazon Resource Name (ARN) that's associated with it.
*/ inline bool StackNameHasBeenSet() const { return m_stackNameHasBeenSet; } /** *If you specified the name of a change set to delete, specify the stack name * or Amazon Resource Name (ARN) that's associated with it.
*/ inline void SetStackName(const Aws::String& value) { m_stackNameHasBeenSet = true; m_stackName = value; } /** *If you specified the name of a change set to delete, specify the stack name * or Amazon Resource Name (ARN) that's associated with it.
*/ inline void SetStackName(Aws::String&& value) { m_stackNameHasBeenSet = true; m_stackName = std::move(value); } /** *If you specified the name of a change set to delete, specify the stack name * or Amazon Resource Name (ARN) that's associated with it.
*/ inline void SetStackName(const char* value) { m_stackNameHasBeenSet = true; m_stackName.assign(value); } /** *If you specified the name of a change set to delete, specify the stack name * or Amazon Resource Name (ARN) that's associated with it.
*/ inline DeleteChangeSetRequest& WithStackName(const Aws::String& value) { SetStackName(value); return *this;} /** *If you specified the name of a change set to delete, specify the stack name * or Amazon Resource Name (ARN) that's associated with it.
*/ inline DeleteChangeSetRequest& WithStackName(Aws::String&& value) { SetStackName(std::move(value)); return *this;} /** *If you specified the name of a change set to delete, specify the stack name * or Amazon Resource Name (ARN) that's associated with it.
*/ inline DeleteChangeSetRequest& WithStackName(const char* value) { SetStackName(value); return *this;} private: Aws::String m_changeSetName; bool m_changeSetNameHasBeenSet = false; Aws::String m_stackName; bool m_stackNameHasBeenSet = false; }; } // namespace Model } // namespace CloudFormation } // namespace Aws