Struct aws_sdk_redshift::types::ClusterSecurityGroup
source · #[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§
source§impl ClusterSecurityGroup
impl ClusterSecurityGroup
sourcepub fn cluster_security_group_name(&self) -> Option<&str>
pub fn cluster_security_group_name(&self) -> Option<&str>
The name of the cluster security group to which the operation was applied.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the security group.
sourcepub fn ec2_security_groups(&self) -> &[Ec2SecurityGroup]
pub fn ec2_security_groups(&self) -> &[Ec2SecurityGroup]
A list of EC2 security groups that are permitted to access clusters associated with this cluster security group.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .ec2_security_groups.is_none()
.
sourcepub fn ip_ranges(&self) -> &[IpRange]
pub fn ip_ranges(&self) -> &[IpRange]
A list of IP ranges (CIDR blocks) that are permitted to access clusters associated with this cluster security group.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .ip_ranges.is_none()
.
The list of tags for the cluster security group.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl ClusterSecurityGroup
impl ClusterSecurityGroup
sourcepub fn builder() -> ClusterSecurityGroupBuilder
pub fn builder() -> ClusterSecurityGroupBuilder
Creates a new builder-style object to manufacture ClusterSecurityGroup
.
Trait Implementations§
source§impl Clone for ClusterSecurityGroup
impl Clone for ClusterSecurityGroup
source§fn clone(&self) -> ClusterSecurityGroup
fn clone(&self) -> ClusterSecurityGroup
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ClusterSecurityGroup
impl Debug for ClusterSecurityGroup
source§impl PartialEq for ClusterSecurityGroup
impl PartialEq for ClusterSecurityGroup
source§fn eq(&self, other: &ClusterSecurityGroup) -> bool
fn eq(&self, other: &ClusterSecurityGroup) -> bool
self
and other
values to be equal, and is used
by ==
.