/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace CloudFormation { namespace Model { /** */ class DetectStackDriftRequest : public CloudFormationRequest { public: AWS_CLOUDFORMATION_API DetectStackDriftRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DetectStackDrift"; } AWS_CLOUDFORMATION_API Aws::String SerializePayload() const override; protected: AWS_CLOUDFORMATION_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override; public: /** *

The name of the stack for which you want to detect drift.

*/ inline const Aws::String& GetStackName() const{ return m_stackName; } /** *

The name of the stack for which you want to detect drift.

*/ inline bool StackNameHasBeenSet() const { return m_stackNameHasBeenSet; } /** *

The name of the stack for which you want to detect drift.

*/ inline void SetStackName(const Aws::String& value) { m_stackNameHasBeenSet = true; m_stackName = value; } /** *

The name of the stack for which you want to detect drift.

*/ inline void SetStackName(Aws::String&& value) { m_stackNameHasBeenSet = true; m_stackName = std::move(value); } /** *

The name of the stack for which you want to detect drift.

*/ inline void SetStackName(const char* value) { m_stackNameHasBeenSet = true; m_stackName.assign(value); } /** *

The name of the stack for which you want to detect drift.

*/ inline DetectStackDriftRequest& WithStackName(const Aws::String& value) { SetStackName(value); return *this;} /** *

The name of the stack for which you want to detect drift.

*/ inline DetectStackDriftRequest& WithStackName(Aws::String&& value) { SetStackName(std::move(value)); return *this;} /** *

The name of the stack for which you want to detect drift.

*/ inline DetectStackDriftRequest& WithStackName(const char* value) { SetStackName(value); return *this;} /** *

The logical names of any resources you want to use as filters.

*/ inline const Aws::Vector& GetLogicalResourceIds() const{ return m_logicalResourceIds; } /** *

The logical names of any resources you want to use as filters.

*/ inline bool LogicalResourceIdsHasBeenSet() const { return m_logicalResourceIdsHasBeenSet; } /** *

The logical names of any resources you want to use as filters.

*/ inline void SetLogicalResourceIds(const Aws::Vector& value) { m_logicalResourceIdsHasBeenSet = true; m_logicalResourceIds = value; } /** *

The logical names of any resources you want to use as filters.

*/ inline void SetLogicalResourceIds(Aws::Vector&& value) { m_logicalResourceIdsHasBeenSet = true; m_logicalResourceIds = std::move(value); } /** *

The logical names of any resources you want to use as filters.

*/ inline DetectStackDriftRequest& WithLogicalResourceIds(const Aws::Vector& value) { SetLogicalResourceIds(value); return *this;} /** *

The logical names of any resources you want to use as filters.

*/ inline DetectStackDriftRequest& WithLogicalResourceIds(Aws::Vector&& value) { SetLogicalResourceIds(std::move(value)); return *this;} /** *

The logical names of any resources you want to use as filters.

*/ inline DetectStackDriftRequest& AddLogicalResourceIds(const Aws::String& value) { m_logicalResourceIdsHasBeenSet = true; m_logicalResourceIds.push_back(value); return *this; } /** *

The logical names of any resources you want to use as filters.

*/ inline DetectStackDriftRequest& AddLogicalResourceIds(Aws::String&& value) { m_logicalResourceIdsHasBeenSet = true; m_logicalResourceIds.push_back(std::move(value)); return *this; } /** *

The logical names of any resources you want to use as filters.

*/ inline DetectStackDriftRequest& AddLogicalResourceIds(const char* value) { m_logicalResourceIdsHasBeenSet = true; m_logicalResourceIds.push_back(value); return *this; } private: Aws::String m_stackName; bool m_stackNameHasBeenSet = false; Aws::Vector m_logicalResourceIds; bool m_logicalResourceIdsHasBeenSet = false; }; } // namespace Model } // namespace CloudFormation } // namespace Aws