Struct aws_sdk_redshift::model::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
sourceimpl 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.
sourceimpl ClusterSecurityGroup
impl ClusterSecurityGroup
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ClusterSecurityGroup
.
Trait Implementations
sourceimpl Clone for ClusterSecurityGroup
impl Clone for ClusterSecurityGroup
sourcefn clone(&self) -> ClusterSecurityGroup
fn clone(&self) -> ClusterSecurityGroup
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ClusterSecurityGroup
impl Debug for ClusterSecurityGroup
sourceimpl PartialEq<ClusterSecurityGroup> for ClusterSecurityGroup
impl PartialEq<ClusterSecurityGroup> for ClusterSecurityGroup
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &ClusterSecurityGroup) -> bool
fn ne(&self, other: &ClusterSecurityGroup) -> bool
This method tests for !=
.
impl StructuralPartialEq for ClusterSecurityGroup
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more