[][src]Struct rusoto_redshift::ClusterSecurityGroup

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>>,
}

Describes a security group.

Fields

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.

tags: Option<Vec<Tag>>

The list of tags for the cluster security group.

Trait Implementations

impl Clone for ClusterSecurityGroup[src]

impl Debug for ClusterSecurityGroup[src]

impl Default for ClusterSecurityGroup[src]

impl PartialEq<ClusterSecurityGroup> for ClusterSecurityGroup[src]

impl StructuralPartialEq for ClusterSecurityGroup[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.