/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The input for DescribeStackEvents action.See Also:
* AWS
* API Reference
The name or the unique stack ID that's associated with the stack, which * aren't always interchangeable:
Running stacks: You can specify * either the stack's name or its unique stack ID.
Deleted * stacks: You must specify the unique stack ID.
Default: There * is no default value.
*/ inline const Aws::String& GetStackName() const{ return m_stackName; } /** *The name or the unique stack ID that's associated with the stack, which * aren't always interchangeable:
Running stacks: You can specify * either the stack's name or its unique stack ID.
Deleted * stacks: You must specify the unique stack ID.
Default: There * is no default value.
*/ inline bool StackNameHasBeenSet() const { return m_stackNameHasBeenSet; } /** *The name or the unique stack ID that's associated with the stack, which * aren't always interchangeable:
Running stacks: You can specify * either the stack's name or its unique stack ID.
Deleted * stacks: You must specify the unique stack ID.
Default: There * is no default value.
*/ inline void SetStackName(const Aws::String& value) { m_stackNameHasBeenSet = true; m_stackName = value; } /** *The name or the unique stack ID that's associated with the stack, which * aren't always interchangeable:
Running stacks: You can specify * either the stack's name or its unique stack ID.
Deleted * stacks: You must specify the unique stack ID.
Default: There * is no default value.
*/ inline void SetStackName(Aws::String&& value) { m_stackNameHasBeenSet = true; m_stackName = std::move(value); } /** *The name or the unique stack ID that's associated with the stack, which * aren't always interchangeable:
Running stacks: You can specify * either the stack's name or its unique stack ID.
Deleted * stacks: You must specify the unique stack ID.
Default: There * is no default value.
*/ inline void SetStackName(const char* value) { m_stackNameHasBeenSet = true; m_stackName.assign(value); } /** *The name or the unique stack ID that's associated with the stack, which * aren't always interchangeable:
Running stacks: You can specify * either the stack's name or its unique stack ID.
Deleted * stacks: You must specify the unique stack ID.
Default: There * is no default value.
*/ inline DescribeStackEventsRequest& WithStackName(const Aws::String& value) { SetStackName(value); return *this;} /** *The name or the unique stack ID that's associated with the stack, which * aren't always interchangeable:
Running stacks: You can specify * either the stack's name or its unique stack ID.
Deleted * stacks: You must specify the unique stack ID.
Default: There * is no default value.
*/ inline DescribeStackEventsRequest& WithStackName(Aws::String&& value) { SetStackName(std::move(value)); return *this;} /** *The name or the unique stack ID that's associated with the stack, which * aren't always interchangeable:
Running stacks: You can specify * either the stack's name or its unique stack ID.
Deleted * stacks: You must specify the unique stack ID.
Default: There * is no default value.
*/ inline DescribeStackEventsRequest& WithStackName(const char* value) { SetStackName(value); return *this;} /** *A string that identifies the next page of events that you want to * retrieve.
*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *A string that identifies the next page of events that you want to * retrieve.
*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *A string that identifies the next page of events that you want to * retrieve.
*/ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** *A string that identifies the next page of events that you want to * retrieve.
*/ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** *A string that identifies the next page of events that you want to * retrieve.
*/ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** *A string that identifies the next page of events that you want to * retrieve.
*/ inline DescribeStackEventsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *A string that identifies the next page of events that you want to * retrieve.
*/ inline DescribeStackEventsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *A string that identifies the next page of events that you want to * retrieve.
*/ inline DescribeStackEventsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} private: Aws::String m_stackName; bool m_stackNameHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; }; } // namespace Model } // namespace CloudFormation } // namespace Aws