Struct rusoto_redshift::AuthorizeClusterSecurityGroupIngressMessage[][src]

pub struct AuthorizeClusterSecurityGroupIngressMessage {
    pub cidrip: Option<String>,
    pub cluster_security_group_name: String,
    pub ec2_security_group_name: Option<String>,
    pub ec2_security_group_owner_id: Option<String>,
}

Fields

The IP range to be added the Amazon Redshift security group.

The name of the security group to which the ingress rule is added.

The EC2 security group to be added the Amazon Redshift security group.

The AWS account number of the owner of the security group specified by the EC2SecurityGroupName parameter. The AWS Access Key ID is not an acceptable value.

Example: 111122223333

Trait Implementations

impl Default for AuthorizeClusterSecurityGroupIngressMessage
[src]

Returns the "default value" for a type. Read more

impl Debug for AuthorizeClusterSecurityGroupIngressMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for AuthorizeClusterSecurityGroupIngressMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AuthorizeClusterSecurityGroupIngressMessage
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations