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-macie2/include/aws/macie2/model/CreateCustomDataIdentifierResult.h

78 lines
2.4 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/macie2/Macie2_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 Macie2
{
namespace Model
{
class AWS_MACIE2_API CreateCustomDataIdentifierResult
{
public:
CreateCustomDataIdentifierResult();
CreateCustomDataIdentifierResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
CreateCustomDataIdentifierResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The unique identifier for the custom data identifier that was created.</p>
*/
inline const Aws::String& GetCustomDataIdentifierId() const{ return m_customDataIdentifierId; }
/**
* <p>The unique identifier for the custom data identifier that was created.</p>
*/
inline void SetCustomDataIdentifierId(const Aws::String& value) { m_customDataIdentifierId = value; }
/**
* <p>The unique identifier for the custom data identifier that was created.</p>
*/
inline void SetCustomDataIdentifierId(Aws::String&& value) { m_customDataIdentifierId = std::move(value); }
/**
* <p>The unique identifier for the custom data identifier that was created.</p>
*/
inline void SetCustomDataIdentifierId(const char* value) { m_customDataIdentifierId.assign(value); }
/**
* <p>The unique identifier for the custom data identifier that was created.</p>
*/
inline CreateCustomDataIdentifierResult& WithCustomDataIdentifierId(const Aws::String& value) { SetCustomDataIdentifierId(value); return *this;}
/**
* <p>The unique identifier for the custom data identifier that was created.</p>
*/
inline CreateCustomDataIdentifierResult& WithCustomDataIdentifierId(Aws::String&& value) { SetCustomDataIdentifierId(std::move(value)); return *this;}
/**
* <p>The unique identifier for the custom data identifier that was created.</p>
*/
inline CreateCustomDataIdentifierResult& WithCustomDataIdentifierId(const char* value) { SetCustomDataIdentifierId(value); return *this;}
private:
Aws::String m_customDataIdentifierId;
};
} // namespace Model
} // namespace Macie2
} // namespace Aws