This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-sagemaker/include/aws/sagemaker/model/CreateAppResult.h

78 lines
1.9 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/sagemaker/SageMaker_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 SageMaker
{
namespace Model
{
class AWS_SAGEMAKER_API CreateAppResult
{
public:
CreateAppResult();
CreateAppResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
CreateAppResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The App's Amazon Resource Name (ARN).</p>
*/
inline const Aws::String& GetAppArn() const{ return m_appArn; }
/**
* <p>The App's Amazon Resource Name (ARN).</p>
*/
inline void SetAppArn(const Aws::String& value) { m_appArn = value; }
/**
* <p>The App's Amazon Resource Name (ARN).</p>
*/
inline void SetAppArn(Aws::String&& value) { m_appArn = std::move(value); }
/**
* <p>The App's Amazon Resource Name (ARN).</p>
*/
inline void SetAppArn(const char* value) { m_appArn.assign(value); }
/**
* <p>The App's Amazon Resource Name (ARN).</p>
*/
inline CreateAppResult& WithAppArn(const Aws::String& value) { SetAppArn(value); return *this;}
/**
* <p>The App's Amazon Resource Name (ARN).</p>
*/
inline CreateAppResult& WithAppArn(Aws::String&& value) { SetAppArn(std::move(value)); return *this;}
/**
* <p>The App's Amazon Resource Name (ARN).</p>
*/
inline CreateAppResult& WithAppArn(const char* value) { SetAppArn(value); return *this;}
private:
Aws::String m_appArn;
};
} // namespace Model
} // namespace SageMaker
} // namespace Aws