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
impl StructuralPartialEq for ClusterSecurityGroup
Auto Trait Implementations§
impl Freeze for ClusterSecurityGroup
impl RefUnwindSafe for ClusterSecurityGroup
impl Send for ClusterSecurityGroup
impl Sync for ClusterSecurityGroup
impl Unpin for ClusterSecurityGroup
impl UnwindSafe for ClusterSecurityGroup
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more