/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Detective { namespace Model { class AWS_DETECTIVE_API CreateGraphResult { public: CreateGraphResult(); CreateGraphResult(const Aws::AmazonWebServiceResult& result); CreateGraphResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The ARN of the new behavior graph.

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

The ARN of the new behavior graph.

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

The ARN of the new behavior graph.

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

The ARN of the new behavior graph.

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

The ARN of the new behavior graph.

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

The ARN of the new behavior graph.

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

The ARN of the new behavior graph.

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