// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`CreateClusterSubnetGroup`](crate::operation::create_cluster_subnet_group::builders::CreateClusterSubnetGroupFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`cluster_subnet_group_name(impl Into<String>)`](crate::operation::create_cluster_subnet_group::builders::CreateClusterSubnetGroupFluentBuilder::cluster_subnet_group_name) / [`set_cluster_subnet_group_name(Option<String>)`](crate::operation::create_cluster_subnet_group::builders::CreateClusterSubnetGroupFluentBuilder::set_cluster_subnet_group_name):<br>required: **true**<br><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 Amazon Web Services account.</p></li> </ul> <p>Example: <code>examplesubnetgroup</code></p><br>
/// - [`description(impl Into<String>)`](crate::operation::create_cluster_subnet_group::builders::CreateClusterSubnetGroupFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::create_cluster_subnet_group::builders::CreateClusterSubnetGroupFluentBuilder::set_description):<br>required: **true**<br><p>A description for the subnet group.</p><br>
/// - [`subnet_ids(impl Into<String>)`](crate::operation::create_cluster_subnet_group::builders::CreateClusterSubnetGroupFluentBuilder::subnet_ids) / [`set_subnet_ids(Option<Vec::<String>>)`](crate::operation::create_cluster_subnet_group::builders::CreateClusterSubnetGroupFluentBuilder::set_subnet_ids):<br>required: **true**<br><p>An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a single request.</p><br>
/// - [`tags(Tag)`](crate::operation::create_cluster_subnet_group::builders::CreateClusterSubnetGroupFluentBuilder::tags) / [`set_tags(Option<Vec::<Tag>>)`](crate::operation::create_cluster_subnet_group::builders::CreateClusterSubnetGroupFluentBuilder::set_tags):<br>required: **false**<br><p>A list of tag instances.</p><br>
/// - On success, responds with [`CreateClusterSubnetGroupOutput`](crate::operation::create_cluster_subnet_group::CreateClusterSubnetGroupOutput) with field(s):
/// - [`cluster_subnet_group(Option<ClusterSubnetGroup>)`](crate::operation::create_cluster_subnet_group::CreateClusterSubnetGroupOutput::cluster_subnet_group): <p>Describes a subnet group.</p>
/// - On failure, responds with [`SdkError<CreateClusterSubnetGroupError>`](crate::operation::create_cluster_subnet_group::CreateClusterSubnetGroupError)
pub fn create_cluster_subnet_group(&self) -> crate::operation::create_cluster_subnet_group::builders::CreateClusterSubnetGroupFluentBuilder {
crate::operation::create_cluster_subnet_group::builders::CreateClusterSubnetGroupFluentBuilder::new(self.handle.clone())
}
}