203 lines
8.6 KiB
C
203 lines
8.6 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/redshift/Redshift_EXPORTS.h>
|
|||
|
|
#include <aws/redshift/RedshiftRequest.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Redshift
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p/><p><h3>See Also:</h3> <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/RevokeSnapshotAccessMessage">AWS
|
|||
|
|
* API Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_REDSHIFT_API RevokeSnapshotAccessRequest : public RedshiftRequest
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
RevokeSnapshotAccessRequest();
|
|||
|
|
|
|||
|
|
// 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 "RevokeSnapshotAccess"; }
|
|||
|
|
|
|||
|
|
Aws::String SerializePayload() const override;
|
|||
|
|
|
|||
|
|
protected:
|
|||
|
|
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
|
|||
|
|
|
|||
|
|
public:
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier of the snapshot that the account can no longer access.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetSnapshotIdentifier() const{ return m_snapshotIdentifier; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier of the snapshot that the account can no longer access.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool SnapshotIdentifierHasBeenSet() const { return m_snapshotIdentifierHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier of the snapshot that the account can no longer access.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetSnapshotIdentifier(const Aws::String& value) { m_snapshotIdentifierHasBeenSet = true; m_snapshotIdentifier = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier of the snapshot that the account can no longer access.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetSnapshotIdentifier(Aws::String&& value) { m_snapshotIdentifierHasBeenSet = true; m_snapshotIdentifier = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier of the snapshot that the account can no longer access.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetSnapshotIdentifier(const char* value) { m_snapshotIdentifierHasBeenSet = true; m_snapshotIdentifier.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier of the snapshot that the account can no longer access.</p>
|
|||
|
|
*/
|
|||
|
|
inline RevokeSnapshotAccessRequest& WithSnapshotIdentifier(const Aws::String& value) { SetSnapshotIdentifier(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier of the snapshot that the account can no longer access.</p>
|
|||
|
|
*/
|
|||
|
|
inline RevokeSnapshotAccessRequest& WithSnapshotIdentifier(Aws::String&& value) { SetSnapshotIdentifier(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier of the snapshot that the account can no longer access.</p>
|
|||
|
|
*/
|
|||
|
|
inline RevokeSnapshotAccessRequest& WithSnapshotIdentifier(const char* value) { SetSnapshotIdentifier(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier of the cluster the snapshot was created from. This parameter
|
|||
|
|
* is required if your IAM user has a policy containing a snapshot resource element
|
|||
|
|
* that specifies anything other than * for the cluster name.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetSnapshotClusterIdentifier() const{ return m_snapshotClusterIdentifier; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier of the cluster the snapshot was created from. This parameter
|
|||
|
|
* is required if your IAM user has a policy containing a snapshot resource element
|
|||
|
|
* that specifies anything other than * for the cluster name.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool SnapshotClusterIdentifierHasBeenSet() const { return m_snapshotClusterIdentifierHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier of the cluster the snapshot was created from. This parameter
|
|||
|
|
* is required if your IAM user has a policy containing a snapshot resource element
|
|||
|
|
* that specifies anything other than * for the cluster name.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetSnapshotClusterIdentifier(const Aws::String& value) { m_snapshotClusterIdentifierHasBeenSet = true; m_snapshotClusterIdentifier = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier of the cluster the snapshot was created from. This parameter
|
|||
|
|
* is required if your IAM user has a policy containing a snapshot resource element
|
|||
|
|
* that specifies anything other than * for the cluster name.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetSnapshotClusterIdentifier(Aws::String&& value) { m_snapshotClusterIdentifierHasBeenSet = true; m_snapshotClusterIdentifier = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier of the cluster the snapshot was created from. This parameter
|
|||
|
|
* is required if your IAM user has a policy containing a snapshot resource element
|
|||
|
|
* that specifies anything other than * for the cluster name.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetSnapshotClusterIdentifier(const char* value) { m_snapshotClusterIdentifierHasBeenSet = true; m_snapshotClusterIdentifier.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier of the cluster the snapshot was created from. This parameter
|
|||
|
|
* is required if your IAM user has a policy containing a snapshot resource element
|
|||
|
|
* that specifies anything other than * for the cluster name.</p>
|
|||
|
|
*/
|
|||
|
|
inline RevokeSnapshotAccessRequest& WithSnapshotClusterIdentifier(const Aws::String& value) { SetSnapshotClusterIdentifier(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier of the cluster the snapshot was created from. This parameter
|
|||
|
|
* is required if your IAM user has a policy containing a snapshot resource element
|
|||
|
|
* that specifies anything other than * for the cluster name.</p>
|
|||
|
|
*/
|
|||
|
|
inline RevokeSnapshotAccessRequest& WithSnapshotClusterIdentifier(Aws::String&& value) { SetSnapshotClusterIdentifier(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier of the cluster the snapshot was created from. This parameter
|
|||
|
|
* is required if your IAM user has a policy containing a snapshot resource element
|
|||
|
|
* that specifies anything other than * for the cluster name.</p>
|
|||
|
|
*/
|
|||
|
|
inline RevokeSnapshotAccessRequest& WithSnapshotClusterIdentifier(const char* value) { SetSnapshotClusterIdentifier(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier of the AWS customer account that can no longer restore the
|
|||
|
|
* specified snapshot.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetAccountWithRestoreAccess() const{ return m_accountWithRestoreAccess; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier of the AWS customer account that can no longer restore the
|
|||
|
|
* specified snapshot.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool AccountWithRestoreAccessHasBeenSet() const { return m_accountWithRestoreAccessHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier of the AWS customer account that can no longer restore the
|
|||
|
|
* specified snapshot.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetAccountWithRestoreAccess(const Aws::String& value) { m_accountWithRestoreAccessHasBeenSet = true; m_accountWithRestoreAccess = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier of the AWS customer account that can no longer restore the
|
|||
|
|
* specified snapshot.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetAccountWithRestoreAccess(Aws::String&& value) { m_accountWithRestoreAccessHasBeenSet = true; m_accountWithRestoreAccess = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier of the AWS customer account that can no longer restore the
|
|||
|
|
* specified snapshot.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetAccountWithRestoreAccess(const char* value) { m_accountWithRestoreAccessHasBeenSet = true; m_accountWithRestoreAccess.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier of the AWS customer account that can no longer restore the
|
|||
|
|
* specified snapshot.</p>
|
|||
|
|
*/
|
|||
|
|
inline RevokeSnapshotAccessRequest& WithAccountWithRestoreAccess(const Aws::String& value) { SetAccountWithRestoreAccess(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier of the AWS customer account that can no longer restore the
|
|||
|
|
* specified snapshot.</p>
|
|||
|
|
*/
|
|||
|
|
inline RevokeSnapshotAccessRequest& WithAccountWithRestoreAccess(Aws::String&& value) { SetAccountWithRestoreAccess(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The identifier of the AWS customer account that can no longer restore the
|
|||
|
|
* specified snapshot.</p>
|
|||
|
|
*/
|
|||
|
|
inline RevokeSnapshotAccessRequest& WithAccountWithRestoreAccess(const char* value) { SetAccountWithRestoreAccess(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_snapshotIdentifier;
|
|||
|
|
bool m_snapshotIdentifierHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_snapshotClusterIdentifier;
|
|||
|
|
bool m_snapshotClusterIdentifierHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_accountWithRestoreAccess;
|
|||
|
|
bool m_accountWithRestoreAccessHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace Redshift
|
|||
|
|
} // namespace Aws
|