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-ds/include/aws/ds/model/CreateSnapshotResult.h

84 lines
2.3 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/ds/DirectoryService_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 DirectoryService
{
namespace Model
{
/**
* <p>Contains the results of the <a>CreateSnapshot</a> operation.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/ds-2015-04-16/CreateSnapshotResult">AWS
* API Reference</a></p>
*/
class AWS_DIRECTORYSERVICE_API CreateSnapshotResult
{
public:
CreateSnapshotResult();
CreateSnapshotResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
CreateSnapshotResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The identifier of the snapshot that was created.</p>
*/
inline const Aws::String& GetSnapshotId() const{ return m_snapshotId; }
/**
* <p>The identifier of the snapshot that was created.</p>
*/
inline void SetSnapshotId(const Aws::String& value) { m_snapshotId = value; }
/**
* <p>The identifier of the snapshot that was created.</p>
*/
inline void SetSnapshotId(Aws::String&& value) { m_snapshotId = std::move(value); }
/**
* <p>The identifier of the snapshot that was created.</p>
*/
inline void SetSnapshotId(const char* value) { m_snapshotId.assign(value); }
/**
* <p>The identifier of the snapshot that was created.</p>
*/
inline CreateSnapshotResult& WithSnapshotId(const Aws::String& value) { SetSnapshotId(value); return *this;}
/**
* <p>The identifier of the snapshot that was created.</p>
*/
inline CreateSnapshotResult& WithSnapshotId(Aws::String&& value) { SetSnapshotId(std::move(value)); return *this;}
/**
* <p>The identifier of the snapshot that was created.</p>
*/
inline CreateSnapshotResult& WithSnapshotId(const char* value) { SetSnapshotId(value); return *this;}
private:
Aws::String m_snapshotId;
};
} // namespace Model
} // namespace DirectoryService
} // namespace Aws