Struct aws_sdk_redshift::model::ClusterSecurityGroup [−][src]
#[non_exhaustive]pub struct ClusterSecurityGroup {
pub cluster_security_group_name: Option<String>,
pub description: Option<String>,
pub ec2_security_groups: Option<Vec<Ec2SecurityGroup>>,
pub ip_ranges: Option<Vec<IpRange>>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Describes a security 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_security_group_name: Option<String>
The name of the cluster security group to which the operation was applied.
description: Option<String>
A description of the security group.
ec2_security_groups: Option<Vec<Ec2SecurityGroup>>
A list of EC2 security groups that are permitted to access clusters associated with this cluster security group.
ip_ranges: Option<Vec<IpRange>>
A list of IP ranges (CIDR blocks) that are permitted to access clusters associated with this cluster security group.
The list of tags for the cluster security group.
Implementations
The name of the cluster security group to which the operation was applied.
A description of the security group.
A list of EC2 security groups that are permitted to access clusters associated with this cluster security group.
A list of IP ranges (CIDR blocks) that are permitted to access clusters associated with this cluster security group.
The list of tags for the cluster security group.
Creates a new builder-style object to manufacture ClusterSecurityGroup
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 ClusterSecurityGroup
impl Send for ClusterSecurityGroup
impl Sync for ClusterSecurityGroup
impl Unpin for ClusterSecurityGroup
impl UnwindSafe for ClusterSecurityGroup
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