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-kendra/include/aws/kendra/model/CreateDataSourceResult.h

78 lines
1.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/kendra/Kendra_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 kendra
{
namespace Model
{
class AWS_KENDRA_API CreateDataSourceResult
{
public:
CreateDataSourceResult();
CreateDataSourceResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
CreateDataSourceResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>A unique identifier for the data source.</p>
*/
inline const Aws::String& GetId() const{ return m_id; }
/**
* <p>A unique identifier for the data source.</p>
*/
inline void SetId(const Aws::String& value) { m_id = value; }
/**
* <p>A unique identifier for the data source.</p>
*/
inline void SetId(Aws::String&& value) { m_id = std::move(value); }
/**
* <p>A unique identifier for the data source.</p>
*/
inline void SetId(const char* value) { m_id.assign(value); }
/**
* <p>A unique identifier for the data source.</p>
*/
inline CreateDataSourceResult& WithId(const Aws::String& value) { SetId(value); return *this;}
/**
* <p>A unique identifier for the data source.</p>
*/
inline CreateDataSourceResult& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
/**
* <p>A unique identifier for the data source.</p>
*/
inline CreateDataSourceResult& WithId(const char* value) { SetId(value); return *this;}
private:
Aws::String m_id;
};
} // namespace Model
} // namespace kendra
} // namespace Aws