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-ec2/include/aws/ec2/model/ModifySnapshotAttributeRequest.h

334 lines
12 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/ec2/EC2_EXPORTS.h>
#include <aws/ec2/EC2Request.h>
#include <aws/ec2/model/SnapshotAttributeName.h>
#include <aws/ec2/model/CreateVolumePermissionModifications.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/ec2/model/OperationType.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace EC2
{
namespace Model
{
/**
*/
class AWS_EC2_API ModifySnapshotAttributeRequest : public EC2Request
{
public:
ModifySnapshotAttributeRequest();
// 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 "ModifySnapshotAttribute"; }
Aws::String SerializePayload() const override;
protected:
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
public:
/**
* <p>The snapshot attribute to modify. Only volume creation permissions can be
* modified.</p>
*/
inline const SnapshotAttributeName& GetAttribute() const{ return m_attribute; }
/**
* <p>The snapshot attribute to modify. Only volume creation permissions can be
* modified.</p>
*/
inline bool AttributeHasBeenSet() const { return m_attributeHasBeenSet; }
/**
* <p>The snapshot attribute to modify. Only volume creation permissions can be
* modified.</p>
*/
inline void SetAttribute(const SnapshotAttributeName& value) { m_attributeHasBeenSet = true; m_attribute = value; }
/**
* <p>The snapshot attribute to modify. Only volume creation permissions can be
* modified.</p>
*/
inline void SetAttribute(SnapshotAttributeName&& value) { m_attributeHasBeenSet = true; m_attribute = std::move(value); }
/**
* <p>The snapshot attribute to modify. Only volume creation permissions can be
* modified.</p>
*/
inline ModifySnapshotAttributeRequest& WithAttribute(const SnapshotAttributeName& value) { SetAttribute(value); return *this;}
/**
* <p>The snapshot attribute to modify. Only volume creation permissions can be
* modified.</p>
*/
inline ModifySnapshotAttributeRequest& WithAttribute(SnapshotAttributeName&& value) { SetAttribute(std::move(value)); return *this;}
/**
* <p>A JSON representation of the snapshot attribute modification.</p>
*/
inline const CreateVolumePermissionModifications& GetCreateVolumePermission() const{ return m_createVolumePermission; }
/**
* <p>A JSON representation of the snapshot attribute modification.</p>
*/
inline bool CreateVolumePermissionHasBeenSet() const { return m_createVolumePermissionHasBeenSet; }
/**
* <p>A JSON representation of the snapshot attribute modification.</p>
*/
inline void SetCreateVolumePermission(const CreateVolumePermissionModifications& value) { m_createVolumePermissionHasBeenSet = true; m_createVolumePermission = value; }
/**
* <p>A JSON representation of the snapshot attribute modification.</p>
*/
inline void SetCreateVolumePermission(CreateVolumePermissionModifications&& value) { m_createVolumePermissionHasBeenSet = true; m_createVolumePermission = std::move(value); }
/**
* <p>A JSON representation of the snapshot attribute modification.</p>
*/
inline ModifySnapshotAttributeRequest& WithCreateVolumePermission(const CreateVolumePermissionModifications& value) { SetCreateVolumePermission(value); return *this;}
/**
* <p>A JSON representation of the snapshot attribute modification.</p>
*/
inline ModifySnapshotAttributeRequest& WithCreateVolumePermission(CreateVolumePermissionModifications&& value) { SetCreateVolumePermission(std::move(value)); return *this;}
/**
* <p>The group to modify for the snapshot.</p>
*/
inline const Aws::Vector<Aws::String>& GetGroupNames() const{ return m_groupNames; }
/**
* <p>The group to modify for the snapshot.</p>
*/
inline bool GroupNamesHasBeenSet() const { return m_groupNamesHasBeenSet; }
/**
* <p>The group to modify for the snapshot.</p>
*/
inline void SetGroupNames(const Aws::Vector<Aws::String>& value) { m_groupNamesHasBeenSet = true; m_groupNames = value; }
/**
* <p>The group to modify for the snapshot.</p>
*/
inline void SetGroupNames(Aws::Vector<Aws::String>&& value) { m_groupNamesHasBeenSet = true; m_groupNames = std::move(value); }
/**
* <p>The group to modify for the snapshot.</p>
*/
inline ModifySnapshotAttributeRequest& WithGroupNames(const Aws::Vector<Aws::String>& value) { SetGroupNames(value); return *this;}
/**
* <p>The group to modify for the snapshot.</p>
*/
inline ModifySnapshotAttributeRequest& WithGroupNames(Aws::Vector<Aws::String>&& value) { SetGroupNames(std::move(value)); return *this;}
/**
* <p>The group to modify for the snapshot.</p>
*/
inline ModifySnapshotAttributeRequest& AddGroupNames(const Aws::String& value) { m_groupNamesHasBeenSet = true; m_groupNames.push_back(value); return *this; }
/**
* <p>The group to modify for the snapshot.</p>
*/
inline ModifySnapshotAttributeRequest& AddGroupNames(Aws::String&& value) { m_groupNamesHasBeenSet = true; m_groupNames.push_back(std::move(value)); return *this; }
/**
* <p>The group to modify for the snapshot.</p>
*/
inline ModifySnapshotAttributeRequest& AddGroupNames(const char* value) { m_groupNamesHasBeenSet = true; m_groupNames.push_back(value); return *this; }
/**
* <p>The type of operation to perform to the attribute.</p>
*/
inline const OperationType& GetOperationType() const{ return m_operationType; }
/**
* <p>The type of operation to perform to the attribute.</p>
*/
inline bool OperationTypeHasBeenSet() const { return m_operationTypeHasBeenSet; }
/**
* <p>The type of operation to perform to the attribute.</p>
*/
inline void SetOperationType(const OperationType& value) { m_operationTypeHasBeenSet = true; m_operationType = value; }
/**
* <p>The type of operation to perform to the attribute.</p>
*/
inline void SetOperationType(OperationType&& value) { m_operationTypeHasBeenSet = true; m_operationType = std::move(value); }
/**
* <p>The type of operation to perform to the attribute.</p>
*/
inline ModifySnapshotAttributeRequest& WithOperationType(const OperationType& value) { SetOperationType(value); return *this;}
/**
* <p>The type of operation to perform to the attribute.</p>
*/
inline ModifySnapshotAttributeRequest& WithOperationType(OperationType&& value) { SetOperationType(std::move(value)); return *this;}
/**
* <p>The ID of the snapshot.</p>
*/
inline const Aws::String& GetSnapshotId() const{ return m_snapshotId; }
/**
* <p>The ID of the snapshot.</p>
*/
inline bool SnapshotIdHasBeenSet() const { return m_snapshotIdHasBeenSet; }
/**
* <p>The ID of the snapshot.</p>
*/
inline void SetSnapshotId(const Aws::String& value) { m_snapshotIdHasBeenSet = true; m_snapshotId = value; }
/**
* <p>The ID of the snapshot.</p>
*/
inline void SetSnapshotId(Aws::String&& value) { m_snapshotIdHasBeenSet = true; m_snapshotId = std::move(value); }
/**
* <p>The ID of the snapshot.</p>
*/
inline void SetSnapshotId(const char* value) { m_snapshotIdHasBeenSet = true; m_snapshotId.assign(value); }
/**
* <p>The ID of the snapshot.</p>
*/
inline ModifySnapshotAttributeRequest& WithSnapshotId(const Aws::String& value) { SetSnapshotId(value); return *this;}
/**
* <p>The ID of the snapshot.</p>
*/
inline ModifySnapshotAttributeRequest& WithSnapshotId(Aws::String&& value) { SetSnapshotId(std::move(value)); return *this;}
/**
* <p>The ID of the snapshot.</p>
*/
inline ModifySnapshotAttributeRequest& WithSnapshotId(const char* value) { SetSnapshotId(value); return *this;}
/**
* <p>The account ID to modify for the snapshot.</p>
*/
inline const Aws::Vector<Aws::String>& GetUserIds() const{ return m_userIds; }
/**
* <p>The account ID to modify for the snapshot.</p>
*/
inline bool UserIdsHasBeenSet() const { return m_userIdsHasBeenSet; }
/**
* <p>The account ID to modify for the snapshot.</p>
*/
inline void SetUserIds(const Aws::Vector<Aws::String>& value) { m_userIdsHasBeenSet = true; m_userIds = value; }
/**
* <p>The account ID to modify for the snapshot.</p>
*/
inline void SetUserIds(Aws::Vector<Aws::String>&& value) { m_userIdsHasBeenSet = true; m_userIds = std::move(value); }
/**
* <p>The account ID to modify for the snapshot.</p>
*/
inline ModifySnapshotAttributeRequest& WithUserIds(const Aws::Vector<Aws::String>& value) { SetUserIds(value); return *this;}
/**
* <p>The account ID to modify for the snapshot.</p>
*/
inline ModifySnapshotAttributeRequest& WithUserIds(Aws::Vector<Aws::String>&& value) { SetUserIds(std::move(value)); return *this;}
/**
* <p>The account ID to modify for the snapshot.</p>
*/
inline ModifySnapshotAttributeRequest& AddUserIds(const Aws::String& value) { m_userIdsHasBeenSet = true; m_userIds.push_back(value); return *this; }
/**
* <p>The account ID to modify for the snapshot.</p>
*/
inline ModifySnapshotAttributeRequest& AddUserIds(Aws::String&& value) { m_userIdsHasBeenSet = true; m_userIds.push_back(std::move(value)); return *this; }
/**
* <p>The account ID to modify for the snapshot.</p>
*/
inline ModifySnapshotAttributeRequest& AddUserIds(const char* value) { m_userIdsHasBeenSet = true; m_userIds.push_back(value); return *this; }
/**
* <p>Checks whether you have the required permissions for the action, without
* actually making the request, and provides an error response. If you have the
* required permissions, the error response is <code>DryRunOperation</code>.
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
*/
inline bool GetDryRun() const{ return m_dryRun; }
/**
* <p>Checks whether you have the required permissions for the action, without
* actually making the request, and provides an error response. If you have the
* required permissions, the error response is <code>DryRunOperation</code>.
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
*/
inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
/**
* <p>Checks whether you have the required permissions for the action, without
* actually making the request, and provides an error response. If you have the
* required permissions, the error response is <code>DryRunOperation</code>.
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
*/
inline void SetDryRun(bool value) { m_dryRunHasBeenSet = true; m_dryRun = value; }
/**
* <p>Checks whether you have the required permissions for the action, without
* actually making the request, and provides an error response. If you have the
* required permissions, the error response is <code>DryRunOperation</code>.
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
*/
inline ModifySnapshotAttributeRequest& WithDryRun(bool value) { SetDryRun(value); return *this;}
private:
SnapshotAttributeName m_attribute;
bool m_attributeHasBeenSet;
CreateVolumePermissionModifications m_createVolumePermission;
bool m_createVolumePermissionHasBeenSet;
Aws::Vector<Aws::String> m_groupNames;
bool m_groupNamesHasBeenSet;
OperationType m_operationType;
bool m_operationTypeHasBeenSet;
Aws::String m_snapshotId;
bool m_snapshotIdHasBeenSet;
Aws::Vector<Aws::String> m_userIds;
bool m_userIdsHasBeenSet;
bool m_dryRun;
bool m_dryRunHasBeenSet;
};
} // namespace Model
} // namespace EC2
} // namespace Aws