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-ram/include/aws/ram/model/AssociateResourceSharePermissionRequest.h

216 lines
8.1 KiB
C++

/**
* 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/RAMRequest.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace RAM
{
namespace Model
{
/**
*/
class AWS_RAM_API AssociateResourceSharePermissionRequest : public RAMRequest
{
public:
AssociateResourceSharePermissionRequest();
// Service request name is the Operation name which will send this request out,
// each operation should has unique request name, so that we can get operation's name from this request.
// Note: this is not true for response, multiple operations may have the same response name,
// so we can not get operation's name from response.
inline virtual const char* GetServiceRequestName() const override { return "AssociateResourceSharePermission"; }
Aws::String SerializePayload() const override;
/**
* <p>The Amazon Resource Name (ARN) of the resource share.</p>
*/
inline const Aws::String& GetResourceShareArn() const{ return m_resourceShareArn; }
/**
* <p>The Amazon Resource Name (ARN) of the resource share.</p>
*/
inline bool ResourceShareArnHasBeenSet() const { return m_resourceShareArnHasBeenSet; }
/**
* <p>The Amazon Resource Name (ARN) of the resource share.</p>
*/
inline void SetResourceShareArn(const Aws::String& value) { m_resourceShareArnHasBeenSet = true; m_resourceShareArn = value; }
/**
* <p>The Amazon Resource Name (ARN) of the resource share.</p>
*/
inline void SetResourceShareArn(Aws::String&& value) { m_resourceShareArnHasBeenSet = true; m_resourceShareArn = std::move(value); }
/**
* <p>The Amazon Resource Name (ARN) of the resource share.</p>
*/
inline void SetResourceShareArn(const char* value) { m_resourceShareArnHasBeenSet = true; m_resourceShareArn.assign(value); }
/**
* <p>The Amazon Resource Name (ARN) of the resource share.</p>
*/
inline AssociateResourceSharePermissionRequest& WithResourceShareArn(const Aws::String& value) { SetResourceShareArn(value); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the resource share.</p>
*/
inline AssociateResourceSharePermissionRequest& WithResourceShareArn(Aws::String&& value) { SetResourceShareArn(std::move(value)); return *this;}
/**
* <p>The Amazon Resource Name (ARN) of the resource share.</p>
*/
inline AssociateResourceSharePermissionRequest& WithResourceShareArn(const char* value) { SetResourceShareArn(value); return *this;}
/**
* <p>The ARN of the AWS RAM permission to associate with the resource share.</p>
*/
inline const Aws::String& GetPermissionArn() const{ return m_permissionArn; }
/**
* <p>The ARN of the AWS RAM permission to associate with the resource share.</p>
*/
inline bool PermissionArnHasBeenSet() const { return m_permissionArnHasBeenSet; }
/**
* <p>The ARN of the AWS RAM permission to associate with the resource share.</p>
*/
inline void SetPermissionArn(const Aws::String& value) { m_permissionArnHasBeenSet = true; m_permissionArn = value; }
/**
* <p>The ARN of the AWS RAM permission to associate with the resource share.</p>
*/
inline void SetPermissionArn(Aws::String&& value) { m_permissionArnHasBeenSet = true; m_permissionArn = std::move(value); }
/**
* <p>The ARN of the AWS RAM permission to associate with the resource share.</p>
*/
inline void SetPermissionArn(const char* value) { m_permissionArnHasBeenSet = true; m_permissionArn.assign(value); }
/**
* <p>The ARN of the AWS RAM permission to associate with the resource share.</p>
*/
inline AssociateResourceSharePermissionRequest& WithPermissionArn(const Aws::String& value) { SetPermissionArn(value); return *this;}
/**
* <p>The ARN of the AWS RAM permission to associate with the resource share.</p>
*/
inline AssociateResourceSharePermissionRequest& WithPermissionArn(Aws::String&& value) { SetPermissionArn(std::move(value)); return *this;}
/**
* <p>The ARN of the AWS RAM permission to associate with the resource share.</p>
*/
inline AssociateResourceSharePermissionRequest& WithPermissionArn(const char* value) { SetPermissionArn(value); return *this;}
/**
* <p>Indicates whether the permission should replace the permissions that are
* currently associated with the resource share. Use <code>true</code> to replace
* the current permissions. Use <code>false</code> to add the permission to the
* current permission.</p>
*/
inline bool GetReplace() const{ return m_replace; }
/**
* <p>Indicates whether the permission should replace the permissions that are
* currently associated with the resource share. Use <code>true</code> to replace
* the current permissions. Use <code>false</code> to add the permission to the
* current permission.</p>
*/
inline bool ReplaceHasBeenSet() const { return m_replaceHasBeenSet; }
/**
* <p>Indicates whether the permission should replace the permissions that are
* currently associated with the resource share. Use <code>true</code> to replace
* the current permissions. Use <code>false</code> to add the permission to the
* current permission.</p>
*/
inline void SetReplace(bool value) { m_replaceHasBeenSet = true; m_replace = value; }
/**
* <p>Indicates whether the permission should replace the permissions that are
* currently associated with the resource share. Use <code>true</code> to replace
* the current permissions. Use <code>false</code> to add the permission to the
* current permission.</p>
*/
inline AssociateResourceSharePermissionRequest& WithReplace(bool value) { SetReplace(value); return *this;}
/**
* <p>A unique, case-sensitive identifier that you provide to ensure the
* idempotency of the request.</p>
*/
inline const Aws::String& GetClientToken() const{ return m_clientToken; }
/**
* <p>A unique, case-sensitive identifier that you provide to ensure the
* idempotency of the request.</p>
*/
inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; }
/**
* <p>A unique, case-sensitive identifier that you provide to ensure the
* idempotency of the request.</p>
*/
inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; }
/**
* <p>A unique, case-sensitive identifier that you provide to ensure the
* idempotency of the request.</p>
*/
inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); }
/**
* <p>A unique, case-sensitive identifier that you provide to ensure the
* idempotency of the request.</p>
*/
inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); }
/**
* <p>A unique, case-sensitive identifier that you provide to ensure the
* idempotency of the request.</p>
*/
inline AssociateResourceSharePermissionRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;}
/**
* <p>A unique, case-sensitive identifier that you provide to ensure the
* idempotency of the request.</p>
*/
inline AssociateResourceSharePermissionRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;}
/**
* <p>A unique, case-sensitive identifier that you provide to ensure the
* idempotency of the request.</p>
*/
inline AssociateResourceSharePermissionRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;}
private:
Aws::String m_resourceShareArn;
bool m_resourceShareArnHasBeenSet;
Aws::String m_permissionArn;
bool m_permissionArnHasBeenSet;
bool m_replace;
bool m_replaceHasBeenSet;
Aws::String m_clientToken;
bool m_clientTokenHasBeenSet;
};
} // namespace Model
} // namespace RAM
} // namespace Aws