Class: Aws::Redshift::Types::AuthorizeClusterSecurityGroupIngressMessage

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-redshift/types.rb

Overview

Note:

When making an API call, you may pass AuthorizeClusterSecurityGroupIngressMessage data as a 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 to be added the Amazon Redshift security group.

Returns:

  • (String)


147
148
149
150
151
152
153
# File 'lib/aws-sdk-redshift/types.rb', line 147

class AuthorizeClusterSecurityGroupIngressMessage < Struct.new(
  :cluster_security_group_name,
  :cidrip,
  :ec2_security_group_name,
  :ec2_security_group_owner_id)
  include Aws::Structure
end

#cluster_security_group_nameString

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

Returns:

  • (String)


147
148
149
150
151
152
153
# File 'lib/aws-sdk-redshift/types.rb', line 147

class AuthorizeClusterSecurityGroupIngressMessage < Struct.new(
  :cluster_security_group_name,
  :cidrip,
  :ec2_security_group_name,
  :ec2_security_group_owner_id)
  include Aws::Structure
end

#ec2_security_group_nameString

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

Returns:

  • (String)


147
148
149
150
151
152
153
# File 'lib/aws-sdk-redshift/types.rb', line 147

class AuthorizeClusterSecurityGroupIngressMessage < Struct.new(
  :cluster_security_group_name,
  :cidrip,
  :ec2_security_group_name,
  :ec2_security_group_owner_id)
  include Aws::Structure
end

#ec2_security_group_owner_idString

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`

Returns:

  • (String)


147
148
149
150
151
152
153
# File 'lib/aws-sdk-redshift/types.rb', line 147

class AuthorizeClusterSecurityGroupIngressMessage < Struct.new(
  :cluster_security_group_name,
  :cidrip,
  :ec2_security_group_name,
  :ec2_security_group_owner_id)
  include Aws::Structure
end