Struct aws_sdk_redshift::input::CreateClusterSubnetGroupInput [−][src]
#[non_exhaustive]pub struct CreateClusterSubnetGroupInput {
pub cluster_subnet_group_name: Option<String>,
pub description: Option<String>,
pub subnet_ids: Option<Vec<String>>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.cluster_subnet_group_name: Option<String>
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
description: Option<String>
A description for the subnet group.
subnet_ids: Option<Vec<String>>
An array of VPC subnet IDs. A maximum of 20 subnets can be modified in a single request.
A list of tag instances.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateClusterSubnetGroup, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateClusterSubnetGroup, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateClusterSubnetGroup
>
Creates a new builder-style object to manufacture CreateClusterSubnetGroupInput
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
A description for the subnet group.
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for CreateClusterSubnetGroupInput
impl Sync for CreateClusterSubnetGroupInput
impl Unpin for CreateClusterSubnetGroupInput
impl UnwindSafe for CreateClusterSubnetGroupInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more