/** * 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 Detective { namespace Model { /** */ class DescribeOrganizationConfigurationRequest : public DetectiveRequest { public: AWS_DETECTIVE_API DescribeOrganizationConfigurationRequest(); // 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 "DescribeOrganizationConfiguration"; } AWS_DETECTIVE_API Aws::String SerializePayload() const override; /** *

The ARN of the organization behavior graph.

*/ inline const Aws::String& GetGraphArn() const{ return m_graphArn; } /** *

The ARN of the organization behavior graph.

*/ inline bool GraphArnHasBeenSet() const { return m_graphArnHasBeenSet; } /** *

The ARN of the organization behavior graph.

*/ inline void SetGraphArn(const Aws::String& value) { m_graphArnHasBeenSet = true; m_graphArn = value; } /** *

The ARN of the organization behavior graph.

*/ inline void SetGraphArn(Aws::String&& value) { m_graphArnHasBeenSet = true; m_graphArn = std::move(value); } /** *

The ARN of the organization behavior graph.

*/ inline void SetGraphArn(const char* value) { m_graphArnHasBeenSet = true; m_graphArn.assign(value); } /** *

The ARN of the organization behavior graph.

*/ inline DescribeOrganizationConfigurationRequest& WithGraphArn(const Aws::String& value) { SetGraphArn(value); return *this;} /** *

The ARN of the organization behavior graph.

*/ inline DescribeOrganizationConfigurationRequest& WithGraphArn(Aws::String&& value) { SetGraphArn(std::move(value)); return *this;} /** *

The ARN of the organization behavior graph.

*/ inline DescribeOrganizationConfigurationRequest& WithGraphArn(const char* value) { SetGraphArn(value); return *this;} private: Aws::String m_graphArn; bool m_graphArnHasBeenSet = false; }; } // namespace Model } // namespace Detective } // namespace Aws