/** * 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 Rekognition { namespace Model { class AWS_REKOGNITION_API CreateProjectResult { public: CreateProjectResult(); CreateProjectResult(const Aws::AmazonWebServiceResult& result); CreateProjectResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The Amazon Resource Name (ARN) of the new project. You can use the ARN to * configure IAM access to the project.

*/ inline const Aws::String& GetProjectArn() const{ return m_projectArn; } /** *

The Amazon Resource Name (ARN) of the new project. You can use the ARN to * configure IAM access to the project.

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

The Amazon Resource Name (ARN) of the new project. You can use the ARN to * configure IAM access to the project.

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

The Amazon Resource Name (ARN) of the new project. You can use the ARN to * configure IAM access to the project.

*/ inline void SetProjectArn(const char* value) { m_projectArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the new project. You can use the ARN to * configure IAM access to the project.

*/ inline CreateProjectResult& WithProjectArn(const Aws::String& value) { SetProjectArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the new project. You can use the ARN to * configure IAM access to the project.

*/ inline CreateProjectResult& WithProjectArn(Aws::String&& value) { SetProjectArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the new project. You can use the ARN to * configure IAM access to the project.

*/ inline CreateProjectResult& WithProjectArn(const char* value) { SetProjectArn(value); return *this;} private: Aws::String m_projectArn; }; } // namespace Model } // namespace Rekognition } // namespace Aws