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-redshift/include/aws/redshift/model/CreateClusterSubnetGroupRequest.h

279 lines
11 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 <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/redshift/model/Tag.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/CreateClusterSubnetGroupMessage">AWS
* API Reference</a></p>
*/
class AWS_REDSHIFT_API CreateClusterSubnetGroupRequest : public RedshiftRequest
{
public:
CreateClusterSubnetGroupRequest();
// 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 "CreateClusterSubnetGroup"; }
Aws::String SerializePayload() const override;
protected:
void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
public:
/**
* <p>The name for the subnet group. Amazon Redshift stores the value as a
* lowercase string.</p> <p>Constraints:</p> <ul> <li> <p>Must contain no more than
* 255 alphanumeric characters or hyphens.</p> </li> <li> <p>Must not be
* "Default".</p> </li> <li> <p>Must be unique for all subnet groups that are
* created by your AWS account.</p> </li> </ul> <p>Example:
* <code>examplesubnetgroup</code> </p>
*/
inline const Aws::String& GetClusterSubnetGroupName() const{ return m_clusterSubnetGroupName; }
/**
* <p>The name for the subnet group. Amazon Redshift stores the value as a
* lowercase string.</p> <p>Constraints:</p> <ul> <li> <p>Must contain no more than
* 255 alphanumeric characters or hyphens.</p> </li> <li> <p>Must not be
* "Default".</p> </li> <li> <p>Must be unique for all subnet groups that are
* created by your AWS account.</p> </li> </ul> <p>Example:
* <code>examplesubnetgroup</code> </p>
*/
inline bool ClusterSubnetGroupNameHasBeenSet() const { return m_clusterSubnetGroupNameHasBeenSet; }
/**
* <p>The name for the subnet group. Amazon Redshift stores the value as a
* lowercase string.</p> <p>Constraints:</p> <ul> <li> <p>Must contain no more than
* 255 alphanumeric characters or hyphens.</p> </li> <li> <p>Must not be
* "Default".</p> </li> <li> <p>Must be unique for all subnet groups that are
* created by your AWS account.</p> </li> </ul> <p>Example:
* <code>examplesubnetgroup</code> </p>
*/
inline void SetClusterSubnetGroupName(const Aws::String& value) { m_clusterSubnetGroupNameHasBeenSet = true; m_clusterSubnetGroupName = value; }
/**
* <p>The name for the subnet group. Amazon Redshift stores the value as a
* lowercase string.</p> <p>Constraints:</p> <ul> <li> <p>Must contain no more than
* 255 alphanumeric characters or hyphens.</p> </li> <li> <p>Must not be
* "Default".</p> </li> <li> <p>Must be unique for all subnet groups that are
* created by your AWS account.</p> </li> </ul> <p>Example:
* <code>examplesubnetgroup</code> </p>
*/
inline void SetClusterSubnetGroupName(Aws::String&& value) { m_clusterSubnetGroupNameHasBeenSet = true; m_clusterSubnetGroupName = std::move(value); }
/**
* <p>The name for the subnet group. Amazon Redshift stores the value as a
* lowercase string.</p> <p>Constraints:</p> <ul> <li> <p>Must contain no more than
* 255 alphanumeric characters or hyphens.</p> </li> <li> <p>Must not be
* "Default".</p> </li> <li> <p>Must be unique for all subnet groups that are
* created by your AWS account.</p> </li> </ul> <p>Example:
* <code>examplesubnetgroup</code> </p>
*/
inline void SetClusterSubnetGroupName(const char* value) { m_clusterSubnetGroupNameHasBeenSet = true; m_clusterSubnetGroupName.assign(value); }
/**
* <p>The name for the subnet group. Amazon Redshift stores the value as a
* lowercase string.</p> <p>Constraints:</p> <ul> <li> <p>Must contain no more than
* 255 alphanumeric characters or hyphens.</p> </li> <li> <p>Must not be
* "Default".</p> </li> <li> <p>Must be unique for all subnet groups that are
* created by your AWS account.</p> </li> </ul> <p>Example:
* <code>examplesubnetgroup</code> </p>
*/
inline CreateClusterSubnetGroupRequest& WithClusterSubnetGroupName(const Aws::String& value) { SetClusterSubnetGroupName(value); return *this;}
/**
* <p>The name for the subnet group. Amazon Redshift stores the value as a
* lowercase string.</p> <p>Constraints:</p> <ul> <li> <p>Must contain no more than
* 255 alphanumeric characters or hyphens.</p> </li> <li> <p>Must not be
* "Default".</p> </li> <li> <p>Must be unique for all subnet groups that are
* created by your AWS account.</p> </li> </ul> <p>Example:
* <code>examplesubnetgroup</code> </p>
*/
inline CreateClusterSubnetGroupRequest& WithClusterSubnetGroupName(Aws::String&& value) { SetClusterSubnetGroupName(std::move(value)); return *this;}
/**
* <p>The name for the subnet group. Amazon Redshift stores the value as a
* lowercase string.</p> <p>Constraints:</p> <ul> <li> <p>Must contain no more than
* 255 alphanumeric characters or hyphens.</p> </li> <li> <p>Must not be
* "Default".</p> </li> <li> <p>Must be unique for all subnet groups that are
* created by your AWS account.</p> </li> </ul> <p>Example:
* <code>examplesubnetgroup</code> </p>
*/
inline CreateClusterSubnetGroupRequest& WithClusterSubnetGroupName(const char* value) { SetClusterSubnetGroupName(value); return *this;}
/**
* <p>A description for the subnet group.</p>
*/
inline const Aws::String& GetDescription() const{ return m_description; }
/**
* <p>A description for the subnet group.</p>
*/
inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
/**
* <p>A description for the subnet group.</p>
*/
inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
/**
* <p>A description for the subnet group.</p>
*/
inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
/**
* <p>A description for the subnet group.</p>
*/
inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
/**
* <p>A description for the subnet group.</p>
*/
inline CreateClusterSubnetGroupRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
/**
* <p>A description for the subnet group.</p>
*/
inline CreateClusterSubnetGroupRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
/**
* <p>A description for the subnet group.</p>
*/
inline CreateClusterSubnetGroupRequest& WithDescription(const char* value) { SetDescription(value); return *this;}
/**
* <p>An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a
* single request.</p>
*/
inline const Aws::Vector<Aws::String>& GetSubnetIds() const{ return m_subnetIds; }
/**
* <p>An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a
* single request.</p>
*/
inline bool SubnetIdsHasBeenSet() const { return m_subnetIdsHasBeenSet; }
/**
* <p>An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a
* single request.</p>
*/
inline void SetSubnetIds(const Aws::Vector<Aws::String>& value) { m_subnetIdsHasBeenSet = true; m_subnetIds = value; }
/**
* <p>An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a
* single request.</p>
*/
inline void SetSubnetIds(Aws::Vector<Aws::String>&& value) { m_subnetIdsHasBeenSet = true; m_subnetIds = std::move(value); }
/**
* <p>An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a
* single request.</p>
*/
inline CreateClusterSubnetGroupRequest& WithSubnetIds(const Aws::Vector<Aws::String>& value) { SetSubnetIds(value); return *this;}
/**
* <p>An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a
* single request.</p>
*/
inline CreateClusterSubnetGroupRequest& WithSubnetIds(Aws::Vector<Aws::String>&& value) { SetSubnetIds(std::move(value)); return *this;}
/**
* <p>An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a
* single request.</p>
*/
inline CreateClusterSubnetGroupRequest& AddSubnetIds(const Aws::String& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(value); return *this; }
/**
* <p>An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a
* single request.</p>
*/
inline CreateClusterSubnetGroupRequest& AddSubnetIds(Aws::String&& value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(std::move(value)); return *this; }
/**
* <p>An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a
* single request.</p>
*/
inline CreateClusterSubnetGroupRequest& AddSubnetIds(const char* value) { m_subnetIdsHasBeenSet = true; m_subnetIds.push_back(value); return *this; }
/**
* <p>A list of tag instances.</p>
*/
inline const Aws::Vector<Tag>& GetTags() const{ return m_tags; }
/**
* <p>A list of tag instances.</p>
*/
inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
/**
* <p>A list of tag instances.</p>
*/
inline void SetTags(const Aws::Vector<Tag>& value) { m_tagsHasBeenSet = true; m_tags = value; }
/**
* <p>A list of tag instances.</p>
*/
inline void SetTags(Aws::Vector<Tag>&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); }
/**
* <p>A list of tag instances.</p>
*/
inline CreateClusterSubnetGroupRequest& WithTags(const Aws::Vector<Tag>& value) { SetTags(value); return *this;}
/**
* <p>A list of tag instances.</p>
*/
inline CreateClusterSubnetGroupRequest& WithTags(Aws::Vector<Tag>&& value) { SetTags(std::move(value)); return *this;}
/**
* <p>A list of tag instances.</p>
*/
inline CreateClusterSubnetGroupRequest& AddTags(const Tag& value) { m_tagsHasBeenSet = true; m_tags.push_back(value); return *this; }
/**
* <p>A list of tag instances.</p>
*/
inline CreateClusterSubnetGroupRequest& AddTags(Tag&& value) { m_tagsHasBeenSet = true; m_tags.push_back(std::move(value)); return *this; }
private:
Aws::String m_clusterSubnetGroupName;
bool m_clusterSubnetGroupNameHasBeenSet;
Aws::String m_description;
bool m_descriptionHasBeenSet;
Aws::Vector<Aws::String> m_subnetIds;
bool m_subnetIdsHasBeenSet;
Aws::Vector<Tag> m_tags;
bool m_tagsHasBeenSet;
};
} // namespace Model
} // namespace Redshift
} // namespace Aws