Struct aws_sdk_redshift::model::ClusterSecurityGroup
source · #[non_exhaustive]pub struct ClusterSecurityGroup { /* private fields */ }
Expand description
Describes a 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) -> Option<&[Ec2SecurityGroup]>
pub fn ec2_security_groups(&self) -> Option<&[Ec2SecurityGroup]>
A list of EC2 security groups that are permitted to access clusters associated with this cluster security group.
sourcepub fn ip_ranges(&self) -> Option<&[IpRange]>
pub fn ip_ranges(&self) -> Option<&[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.
source§impl ClusterSecurityGroup
impl ClusterSecurityGroup
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
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
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 Debug for ClusterSecurityGroup
impl Debug for ClusterSecurityGroup
source§impl PartialEq<ClusterSecurityGroup> for ClusterSecurityGroup
impl PartialEq<ClusterSecurityGroup> for ClusterSecurityGroup
source§fn eq(&self, other: &ClusterSecurityGroup) -> bool
fn eq(&self, other: &ClusterSecurityGroup) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.