Class: Aws::EC2::Types::UpdateSecurityGroupRuleDescriptionsIngressRequest

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

Overview

Note:

When making an API call, you may pass UpdateSecurityGroupRuleDescriptionsIngressRequest data as a hash:

{
  dry_run: false,
  group_id: "String",
  group_name: "String",
  ip_permissions: [ # required
    {
      from_port: 1,
      ip_protocol: "String",
      ip_ranges: [
        {
          cidr_ip: "String",
          description: "String",
        },
      ],
      ipv_6_ranges: [
        {
          cidr_ipv_6: "String",
          description: "String",
        },
      ],
      prefix_list_ids: [
        {
          description: "String",
          prefix_list_id: "String",
        },
      ],
      to_port: 1,
      user_id_group_pairs: [
        {
          description: "String",
          group_id: "String",
          group_name: "String",
          peering_status: "String",
          user_id: "String",
          vpc_id: "String",
          vpc_peering_connection_id: "String",
        },
      ],
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#dry_runBoolean

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is ‘DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.

Returns:

  • (Boolean)


36491
36492
36493
36494
36495
36496
36497
# File 'lib/aws-sdk-ec2/types.rb', line 36491

class UpdateSecurityGroupRuleDescriptionsIngressRequest < Struct.new(
  :dry_run,
  :group_id,
  :group_name,
  :ip_permissions)
  include Aws::Structure
end

#group_idString

The ID of the security group. You must specify either the security group ID or the security group name in the request. For security groups in a nondefault VPC, you must specify the security group ID.

Returns:

  • (String)


36491
36492
36493
36494
36495
36496
36497
# File 'lib/aws-sdk-ec2/types.rb', line 36491

class UpdateSecurityGroupRuleDescriptionsIngressRequest < Struct.new(
  :dry_run,
  :group_id,
  :group_name,
  :ip_permissions)
  include Aws::Structure
end

#group_nameString

[EC2-Classic, default VPC] The name of the security group. You must specify either the security group ID or the security group name in the request.

Returns:

  • (String)


36491
36492
36493
36494
36495
36496
36497
# File 'lib/aws-sdk-ec2/types.rb', line 36491

class UpdateSecurityGroupRuleDescriptionsIngressRequest < Struct.new(
  :dry_run,
  :group_id,
  :group_name,
  :ip_permissions)
  include Aws::Structure
end

#ip_permissionsArray<Types::IpPermission>

The IP permissions for the security group rule.

Returns:



36491
36492
36493
36494
36495
36496
36497
# File 'lib/aws-sdk-ec2/types.rb', line 36491

class UpdateSecurityGroupRuleDescriptionsIngressRequest < Struct.new(
  :dry_run,
  :group_id,
  :group_name,
  :ip_permissions)
  include Aws::Structure
end