92 lines
3.1 KiB
C++
92 lines
3.1 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>The result of the <code>DeleteSnapshotCopyGrant</code> action.</p><p><h3>See
|
|
* Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteSnapshotCopyGrantMessage">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_REDSHIFT_API DeleteSnapshotCopyGrantRequest : public RedshiftRequest
|
|
{
|
|
public:
|
|
DeleteSnapshotCopyGrantRequest();
|
|
|
|
// 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 "DeleteSnapshotCopyGrant"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
protected:
|
|
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
|
|
|
|
public:
|
|
|
|
/**
|
|
* <p>The name of the snapshot copy grant to delete.</p>
|
|
*/
|
|
inline const Aws::String& GetSnapshotCopyGrantName() const{ return m_snapshotCopyGrantName; }
|
|
|
|
/**
|
|
* <p>The name of the snapshot copy grant to delete.</p>
|
|
*/
|
|
inline bool SnapshotCopyGrantNameHasBeenSet() const { return m_snapshotCopyGrantNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the snapshot copy grant to delete.</p>
|
|
*/
|
|
inline void SetSnapshotCopyGrantName(const Aws::String& value) { m_snapshotCopyGrantNameHasBeenSet = true; m_snapshotCopyGrantName = value; }
|
|
|
|
/**
|
|
* <p>The name of the snapshot copy grant to delete.</p>
|
|
*/
|
|
inline void SetSnapshotCopyGrantName(Aws::String&& value) { m_snapshotCopyGrantNameHasBeenSet = true; m_snapshotCopyGrantName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the snapshot copy grant to delete.</p>
|
|
*/
|
|
inline void SetSnapshotCopyGrantName(const char* value) { m_snapshotCopyGrantNameHasBeenSet = true; m_snapshotCopyGrantName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the snapshot copy grant to delete.</p>
|
|
*/
|
|
inline DeleteSnapshotCopyGrantRequest& WithSnapshotCopyGrantName(const Aws::String& value) { SetSnapshotCopyGrantName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the snapshot copy grant to delete.</p>
|
|
*/
|
|
inline DeleteSnapshotCopyGrantRequest& WithSnapshotCopyGrantName(Aws::String&& value) { SetSnapshotCopyGrantName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the snapshot copy grant to delete.</p>
|
|
*/
|
|
inline DeleteSnapshotCopyGrantRequest& WithSnapshotCopyGrantName(const char* value) { SetSnapshotCopyGrantName(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_snapshotCopyGrantName;
|
|
bool m_snapshotCopyGrantNameHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace Redshift
|
|
} // namespace Aws
|