/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace CloudFormation { namespace Model { /** */ class DetectStackResourceDriftRequest : public CloudFormationRequest { public: AWS_CLOUDFORMATION_API DetectStackResourceDriftRequest(); // 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 "DetectStackResourceDrift"; } 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 to which the resource belongs.

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

The name of the stack to which the resource belongs.

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

The name of the stack to which the resource belongs.

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

The name of the stack to which the resource belongs.

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

The name of the stack to which the resource belongs.

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

The name of the stack to which the resource belongs.

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

The name of the stack to which the resource belongs.

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

The name of the stack to which the resource belongs.

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

The logical name of the resource for which to return drift information.

*/ inline const Aws::String& GetLogicalResourceId() const{ return m_logicalResourceId; } /** *

The logical name of the resource for which to return drift information.

*/ inline bool LogicalResourceIdHasBeenSet() const { return m_logicalResourceIdHasBeenSet; } /** *

The logical name of the resource for which to return drift information.

*/ inline void SetLogicalResourceId(const Aws::String& value) { m_logicalResourceIdHasBeenSet = true; m_logicalResourceId = value; } /** *

The logical name of the resource for which to return drift information.

*/ inline void SetLogicalResourceId(Aws::String&& value) { m_logicalResourceIdHasBeenSet = true; m_logicalResourceId = std::move(value); } /** *

The logical name of the resource for which to return drift information.

*/ inline void SetLogicalResourceId(const char* value) { m_logicalResourceIdHasBeenSet = true; m_logicalResourceId.assign(value); } /** *

The logical name of the resource for which to return drift information.

*/ inline DetectStackResourceDriftRequest& WithLogicalResourceId(const Aws::String& value) { SetLogicalResourceId(value); return *this;} /** *

The logical name of the resource for which to return drift information.

*/ inline DetectStackResourceDriftRequest& WithLogicalResourceId(Aws::String&& value) { SetLogicalResourceId(std::move(value)); return *this;} /** *

The logical name of the resource for which to return drift information.

*/ inline DetectStackResourceDriftRequest& WithLogicalResourceId(const char* value) { SetLogicalResourceId(value); return *this;} private: Aws::String m_stackName; bool m_stackNameHasBeenSet = false; Aws::String m_logicalResourceId; bool m_logicalResourceIdHasBeenSet = false; }; } // namespace Model } // namespace CloudFormation } // namespace Aws