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-personalize/include/aws/personalize/model/CreateDatasetGroupResult.h

78 lines
2.2 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/personalize/Personalize_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 Personalize
{
namespace Model
{
class AWS_PERSONALIZE_API CreateDatasetGroupResult
{
public:
CreateDatasetGroupResult();
CreateDatasetGroupResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
CreateDatasetGroupResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The Amazon Resource Name (ARN) of the new dataset group.</p>
*/
inline const Aws::String& GetDatasetGroupArn() const{ return m_datasetGroupArn; }
/**
* <p>The Amazon Resource Name (ARN) of the new dataset group.</p>
*/
inline void SetDatasetGroupArn(const Aws::String& value) { m_datasetGroupArn = value; }
/**
* <p>The Amazon Resource Name (ARN) of the new dataset group.</p>
*/
inline void SetDatasetGroupArn(Aws::String&& value) { m_datasetGroupArn = std::move(value); }
/**
* <p>The Amazon Resource Name (ARN) of the new dataset group.</p>
*/
inline void SetDatasetGroupArn(const char* value) { m_datasetGroupArn.assign(value); }
/**
* <p>The Amazon Resource Name (ARN) of the new dataset group.</p>
*/
inline CreateDatasetGroupResult& WithDatasetGroupArn(const Aws::String& value) { SetDatasetGroupArn(value); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the new dataset group.</p>
*/
inline CreateDatasetGroupResult& WithDatasetGroupArn(Aws::String&& value) { SetDatasetGroupArn(std::move(value)); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the new dataset group.</p>
*/
inline CreateDatasetGroupResult& WithDatasetGroupArn(const char* value) { SetDatasetGroupArn(value); return *this;}
private:
Aws::String m_datasetGroupArn;
};
} // namespace Model
} // namespace Personalize
} // namespace Aws