#[non_exhaustive]pub struct CreateClusterSubnetGroupInput { /* private fields */ }
Expand description
Implementations§
source§impl CreateClusterSubnetGroupInput
impl CreateClusterSubnetGroupInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateClusterSubnetGroup, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateClusterSubnetGroup, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateClusterSubnetGroup
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateClusterSubnetGroupInput
.
source§impl CreateClusterSubnetGroupInput
impl CreateClusterSubnetGroupInput
sourcepub fn cluster_subnet_group_name(&self) -> Option<&str>
pub fn cluster_subnet_group_name(&self) -> Option<&str>
The name for the subnet group. Amazon Redshift stores the value as a lowercase string.
Constraints:
-
Must contain no more than 255 alphanumeric characters or hyphens.
-
Must not be "Default".
-
Must be unique for all subnet groups that are created by your Amazon Web Services account.
Example: examplesubnetgroup
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description for the subnet group.
sourcepub fn subnet_ids(&self) -> Option<&[String]>
pub fn subnet_ids(&self) -> Option<&[String]>
An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a single request.
A list of tag instances.
Trait Implementations§
source§impl Clone for CreateClusterSubnetGroupInput
impl Clone for CreateClusterSubnetGroupInput
source§fn clone(&self) -> CreateClusterSubnetGroupInput
fn clone(&self) -> CreateClusterSubnetGroupInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<CreateClusterSubnetGroupInput> for CreateClusterSubnetGroupInput
impl PartialEq<CreateClusterSubnetGroupInput> for CreateClusterSubnetGroupInput
source§fn eq(&self, other: &CreateClusterSubnetGroupInput) -> bool
fn eq(&self, other: &CreateClusterSubnetGroupInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.