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-quicksight/include/aws/quicksight/model/DescribeTemplatePermissionsResult.h

212 lines
6.5 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/quicksight/QuickSight_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/quicksight/model/ResourcePermission.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace QuickSight
{
namespace Model
{
class AWS_QUICKSIGHT_API DescribeTemplatePermissionsResult
{
public:
DescribeTemplatePermissionsResult();
DescribeTemplatePermissionsResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
DescribeTemplatePermissionsResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The ID for the template.</p>
*/
inline const Aws::String& GetTemplateId() const{ return m_templateId; }
/**
* <p>The ID for the template.</p>
*/
inline void SetTemplateId(const Aws::String& value) { m_templateId = value; }
/**
* <p>The ID for the template.</p>
*/
inline void SetTemplateId(Aws::String&& value) { m_templateId = std::move(value); }
/**
* <p>The ID for the template.</p>
*/
inline void SetTemplateId(const char* value) { m_templateId.assign(value); }
/**
* <p>The ID for the template.</p>
*/
inline DescribeTemplatePermissionsResult& WithTemplateId(const Aws::String& value) { SetTemplateId(value); return *this;}
/**
* <p>The ID for the template.</p>
*/
inline DescribeTemplatePermissionsResult& WithTemplateId(Aws::String&& value) { SetTemplateId(std::move(value)); return *this;}
/**
* <p>The ID for the template.</p>
*/
inline DescribeTemplatePermissionsResult& WithTemplateId(const char* value) { SetTemplateId(value); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the template.</p>
*/
inline const Aws::String& GetTemplateArn() const{ return m_templateArn; }
/**
* <p>The Amazon Resource Name (ARN) of the template.</p>
*/
inline void SetTemplateArn(const Aws::String& value) { m_templateArn = value; }
/**
* <p>The Amazon Resource Name (ARN) of the template.</p>
*/
inline void SetTemplateArn(Aws::String&& value) { m_templateArn = std::move(value); }
/**
* <p>The Amazon Resource Name (ARN) of the template.</p>
*/
inline void SetTemplateArn(const char* value) { m_templateArn.assign(value); }
/**
* <p>The Amazon Resource Name (ARN) of the template.</p>
*/
inline DescribeTemplatePermissionsResult& WithTemplateArn(const Aws::String& value) { SetTemplateArn(value); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the template.</p>
*/
inline DescribeTemplatePermissionsResult& WithTemplateArn(Aws::String&& value) { SetTemplateArn(std::move(value)); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the template.</p>
*/
inline DescribeTemplatePermissionsResult& WithTemplateArn(const char* value) { SetTemplateArn(value); return *this;}
/**
* <p>A list of resource permissions to be set on the template. </p>
*/
inline const Aws::Vector<ResourcePermission>& GetPermissions() const{ return m_permissions; }
/**
* <p>A list of resource permissions to be set on the template. </p>
*/
inline void SetPermissions(const Aws::Vector<ResourcePermission>& value) { m_permissions = value; }
/**
* <p>A list of resource permissions to be set on the template. </p>
*/
inline void SetPermissions(Aws::Vector<ResourcePermission>&& value) { m_permissions = std::move(value); }
/**
* <p>A list of resource permissions to be set on the template. </p>
*/
inline DescribeTemplatePermissionsResult& WithPermissions(const Aws::Vector<ResourcePermission>& value) { SetPermissions(value); return *this;}
/**
* <p>A list of resource permissions to be set on the template. </p>
*/
inline DescribeTemplatePermissionsResult& WithPermissions(Aws::Vector<ResourcePermission>&& value) { SetPermissions(std::move(value)); return *this;}
/**
* <p>A list of resource permissions to be set on the template. </p>
*/
inline DescribeTemplatePermissionsResult& AddPermissions(const ResourcePermission& value) { m_permissions.push_back(value); return *this; }
/**
* <p>A list of resource permissions to be set on the template. </p>
*/
inline DescribeTemplatePermissionsResult& AddPermissions(ResourcePermission&& value) { m_permissions.push_back(std::move(value)); return *this; }
/**
* <p>The AWS request ID for this operation.</p>
*/
inline const Aws::String& GetRequestId() const{ return m_requestId; }
/**
* <p>The AWS request ID for this operation.</p>
*/
inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
/**
* <p>The AWS request ID for this operation.</p>
*/
inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
/**
* <p>The AWS request ID for this operation.</p>
*/
inline void SetRequestId(const char* value) { m_requestId.assign(value); }
/**
* <p>The AWS request ID for this operation.</p>
*/
inline DescribeTemplatePermissionsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
/**
* <p>The AWS request ID for this operation.</p>
*/
inline DescribeTemplatePermissionsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
/**
* <p>The AWS request ID for this operation.</p>
*/
inline DescribeTemplatePermissionsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
/**
* <p>The HTTP status of the request.</p>
*/
inline int GetStatus() const{ return m_status; }
/**
* <p>The HTTP status of the request.</p>
*/
inline void SetStatus(int value) { m_status = value; }
/**
* <p>The HTTP status of the request.</p>
*/
inline DescribeTemplatePermissionsResult& WithStatus(int value) { SetStatus(value); return *this;}
private:
Aws::String m_templateId;
Aws::String m_templateArn;
Aws::Vector<ResourcePermission> m_permissions;
Aws::String m_requestId;
int m_status;
};
} // namespace Model
} // namespace QuickSight
} // namespace Aws