Struct aws_sdk_redshift::model::ClusterSubnetGroup
source · [−]#[non_exhaustive]pub struct ClusterSubnetGroup {
pub cluster_subnet_group_name: Option<String>,
pub description: Option<String>,
pub vpc_id: Option<String>,
pub subnet_group_status: Option<String>,
pub subnets: Option<Vec<Subnet>>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Describes a subnet group.
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 of the cluster subnet group.
description: Option<String>
The description of the cluster subnet group.
vpc_id: Option<String>
The VPC ID of the cluster subnet group.
subnet_group_status: Option<String>
The status of the cluster subnet group. Possible values are Complete
, Incomplete
and Invalid
.
subnets: Option<Vec<Subnet>>
A list of the VPC Subnet
elements.
The list of tags for the cluster subnet group.
Implementations
The name of the cluster subnet group.
The description of the cluster subnet group.
The status of the cluster subnet group. Possible values are Complete
, Incomplete
and Invalid
.
The list of tags for the cluster subnet group.
Creates a new builder-style object to manufacture ClusterSubnetGroup
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 RefUnwindSafe for ClusterSubnetGroup
impl Send for ClusterSubnetGroup
impl Sync for ClusterSubnetGroup
impl Unpin for ClusterSubnetGroup
impl UnwindSafe for ClusterSubnetGroup
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