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-iotthingsgraph/include/aws/iotthingsgraph/model/DeleteNamespaceResult.h

116 lines
3.3 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/iotthingsgraph/IoTThingsGraph_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 IoTThingsGraph
{
namespace Model
{
class AWS_IOTTHINGSGRAPH_API DeleteNamespaceResult
{
public:
DeleteNamespaceResult();
DeleteNamespaceResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
DeleteNamespaceResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The ARN of the namespace to be deleted.</p>
*/
inline const Aws::String& GetNamespaceArn() const{ return m_namespaceArn; }
/**
* <p>The ARN of the namespace to be deleted.</p>
*/
inline void SetNamespaceArn(const Aws::String& value) { m_namespaceArn = value; }
/**
* <p>The ARN of the namespace to be deleted.</p>
*/
inline void SetNamespaceArn(Aws::String&& value) { m_namespaceArn = std::move(value); }
/**
* <p>The ARN of the namespace to be deleted.</p>
*/
inline void SetNamespaceArn(const char* value) { m_namespaceArn.assign(value); }
/**
* <p>The ARN of the namespace to be deleted.</p>
*/
inline DeleteNamespaceResult& WithNamespaceArn(const Aws::String& value) { SetNamespaceArn(value); return *this;}
/**
* <p>The ARN of the namespace to be deleted.</p>
*/
inline DeleteNamespaceResult& WithNamespaceArn(Aws::String&& value) { SetNamespaceArn(std::move(value)); return *this;}
/**
* <p>The ARN of the namespace to be deleted.</p>
*/
inline DeleteNamespaceResult& WithNamespaceArn(const char* value) { SetNamespaceArn(value); return *this;}
/**
* <p>The name of the namespace to be deleted.</p>
*/
inline const Aws::String& GetNamespaceName() const{ return m_namespaceName; }
/**
* <p>The name of the namespace to be deleted.</p>
*/
inline void SetNamespaceName(const Aws::String& value) { m_namespaceName = value; }
/**
* <p>The name of the namespace to be deleted.</p>
*/
inline void SetNamespaceName(Aws::String&& value) { m_namespaceName = std::move(value); }
/**
* <p>The name of the namespace to be deleted.</p>
*/
inline void SetNamespaceName(const char* value) { m_namespaceName.assign(value); }
/**
* <p>The name of the namespace to be deleted.</p>
*/
inline DeleteNamespaceResult& WithNamespaceName(const Aws::String& value) { SetNamespaceName(value); return *this;}
/**
* <p>The name of the namespace to be deleted.</p>
*/
inline DeleteNamespaceResult& WithNamespaceName(Aws::String&& value) { SetNamespaceName(std::move(value)); return *this;}
/**
* <p>The name of the namespace to be deleted.</p>
*/
inline DeleteNamespaceResult& WithNamespaceName(const char* value) { SetNamespaceName(value); return *this;}
private:
Aws::String m_namespaceArn;
Aws::String m_namespaceName;
};
} // namespace Model
} // namespace IoTThingsGraph
} // namespace Aws