85 lines
2.5 KiB
C
85 lines
2.5 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/rekognition/Rekognition_EXPORTS.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
template<typename RESULT_TYPE>
|
|||
|
|
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<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
CreateProjectResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the new project. You can use the ARN to
|
|||
|
|
* configure IAM access to the project. </p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetProjectArn() const{ return m_projectArn; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the new project. You can use the ARN to
|
|||
|
|
* configure IAM access to the project. </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetProjectArn(const Aws::String& value) { m_projectArn = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the new project. You can use the ARN to
|
|||
|
|
* configure IAM access to the project. </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetProjectArn(Aws::String&& value) { m_projectArn = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the new project. You can use the ARN to
|
|||
|
|
* configure IAM access to the project. </p>
|
|||
|
|
*/
|
|||
|
|
inline void SetProjectArn(const char* value) { m_projectArn.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the new project. You can use the ARN to
|
|||
|
|
* configure IAM access to the project. </p>
|
|||
|
|
*/
|
|||
|
|
inline CreateProjectResult& WithProjectArn(const Aws::String& value) { SetProjectArn(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the new project. You can use the ARN to
|
|||
|
|
* configure IAM access to the project. </p>
|
|||
|
|
*/
|
|||
|
|
inline CreateProjectResult& WithProjectArn(Aws::String&& value) { SetProjectArn(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the new project. You can use the ARN to
|
|||
|
|
* configure IAM access to the project. </p>
|
|||
|
|
*/
|
|||
|
|
inline CreateProjectResult& WithProjectArn(const char* value) { SetProjectArn(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_projectArn;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace Rekognition
|
|||
|
|
} // namespace Aws
|