/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The response to the request to create an analyzer.See Also:
* AWS
* API Reference
The ARN of the analyzer that was created by the request.
*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *The ARN of the analyzer that was created by the request.
*/ inline void SetArn(const Aws::String& value) { m_arn = value; } /** *The ARN of the analyzer that was created by the request.
*/ inline void SetArn(Aws::String&& value) { m_arn = std::move(value); } /** *The ARN of the analyzer that was created by the request.
*/ inline void SetArn(const char* value) { m_arn.assign(value); } /** *The ARN of the analyzer that was created by the request.
*/ inline CreateAnalyzerResult& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *The ARN of the analyzer that was created by the request.
*/ inline CreateAnalyzerResult& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *The ARN of the analyzer that was created by the request.
*/ inline CreateAnalyzerResult& WithArn(const char* value) { SetArn(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline CreateAnalyzerResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateAnalyzerResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateAnalyzerResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_arn; Aws::String m_requestId; }; } // namespace Model } // namespace AccessAnalyzer } // namespace Aws