You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Redshift::Types::RevokeClusterSecurityGroupIngressMessage

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing RevokeClusterSecurityGroupIngressMessage as input to an Aws::Client method, you can use a vanilla Hash:

{
  cluster_security_group_name: "String", # required
  cidrip: "String",
  ec2_security_group_name: "String",
  ec2_security_group_owner_id: "String",
}

Instance Attribute Summary collapse

Instance Attribute Details

#cidripString

The IP range for which to revoke access. This range must be a valid Classless Inter-Domain Routing (CIDR) block of IP addresses. If CIDRIP is specified, EC2SecurityGroupName and EC2SecurityGroupOwnerId cannot be provided.

Returns:

  • (String)

    The IP range for which to revoke access.

#cluster_security_group_nameString

The name of the security Group from which to revoke the ingress rule.

Returns:

  • (String)

    The name of the security Group from which to revoke the ingress rule.

#ec2_security_group_nameString

The name of the EC2 Security Group whose access is to be revoked. If EC2SecurityGroupName is specified, EC2SecurityGroupOwnerId must also be provided and CIDRIP cannot be provided.

Returns:

  • (String)

    The name of the EC2 Security Group whose access is to be revoked.

#ec2_security_group_owner_idString

The AWS account number of the owner of the security group specified in the EC2SecurityGroupName parameter. The AWS access key ID is not an acceptable value. If EC2SecurityGroupOwnerId is specified, EC2SecurityGroupName must also be provided. and CIDRIP cannot be provided.

Example: 111122223333

Returns:

  • (String)

    The AWS account number of the owner of the security group specified in the EC2SecurityGroupName parameter.