/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/ram/RAM_EXPORTS.h> #include <aws/ram/model/ResourceSharePermissionSummary.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 RAM { namespace Model { class CreatePermissionResult { public: AWS_RAM_API CreatePermissionResult(); AWS_RAM_API CreatePermissionResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); AWS_RAM_API CreatePermissionResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); /** * <p>A structure with information about this customer managed permission.</p> */ inline const ResourceSharePermissionSummary& GetPermission() const{ return m_permission; } /** * <p>A structure with information about this customer managed permission.</p> */ inline void SetPermission(const ResourceSharePermissionSummary& value) { m_permission = value; } /** * <p>A structure with information about this customer managed permission.</p> */ inline void SetPermission(ResourceSharePermissionSummary&& value) { m_permission = std::move(value); } /** * <p>A structure with information about this customer managed permission.</p> */ inline CreatePermissionResult& WithPermission(const ResourceSharePermissionSummary& value) { SetPermission(value); return *this;} /** * <p>A structure with information about this customer managed permission.</p> */ inline CreatePermissionResult& WithPermission(ResourceSharePermissionSummary&& value) { SetPermission(std::move(value)); return *this;} /** * <p>The idempotency identifier associated with this request. If you want to * repeat the same operation in an idempotent manner then you must include this * value in the <code>clientToken</code> request parameter of that later call. All * other parameters must also have the same values that you used in the first * call.</p> */ inline const Aws::String& GetClientToken() const{ return m_clientToken; } /** * <p>The idempotency identifier associated with this request. If you want to * repeat the same operation in an idempotent manner then you must include this * value in the <code>clientToken</code> request parameter of that later call. All * other parameters must also have the same values that you used in the first * call.</p> */ inline void SetClientToken(const Aws::String& value) { m_clientToken = value; } /** * <p>The idempotency identifier associated with this request. If you want to * repeat the same operation in an idempotent manner then you must include this * value in the <code>clientToken</code> request parameter of that later call. All * other parameters must also have the same values that you used in the first * call.</p> */ inline void SetClientToken(Aws::String&& value) { m_clientToken = std::move(value); } /** * <p>The idempotency identifier associated with this request. If you want to * repeat the same operation in an idempotent manner then you must include this * value in the <code>clientToken</code> request parameter of that later call. All * other parameters must also have the same values that you used in the first * call.</p> */ inline void SetClientToken(const char* value) { m_clientToken.assign(value); } /** * <p>The idempotency identifier associated with this request. If you want to * repeat the same operation in an idempotent manner then you must include this * value in the <code>clientToken</code> request parameter of that later call. All * other parameters must also have the same values that you used in the first * call.</p> */ inline CreatePermissionResult& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;} /** * <p>The idempotency identifier associated with this request. If you want to * repeat the same operation in an idempotent manner then you must include this * value in the <code>clientToken</code> request parameter of that later call. All * other parameters must also have the same values that you used in the first * call.</p> */ inline CreatePermissionResult& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;} /** * <p>The idempotency identifier associated with this request. If you want to * repeat the same operation in an idempotent manner then you must include this * value in the <code>clientToken</code> request parameter of that later call. All * other parameters must also have the same values that you used in the first * call.</p> */ inline CreatePermissionResult& WithClientToken(const char* value) { SetClientToken(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline CreatePermissionResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreatePermissionResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreatePermissionResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: ResourceSharePermissionSummary m_permission; Aws::String m_clientToken; Aws::String m_requestId; }; } // namespace Model } // namespace RAM } // namespace Aws