Class: Aws::EC2::Types::DescribeRegionsRequest

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 DescribeRegionsRequest data as a hash:

{
  filters: [
    {
      name: "String",
      values: ["String"],
    },
  ],
  region_names: ["String"],
  dry_run: false,
}

Contains the parameters for DescribeRegions.

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)


8383
8384
8385
8386
8387
8388
# File 'lib/aws-sdk-ec2/types.rb', line 8383

class DescribeRegionsRequest < Struct.new(
  :filters,
  :region_names,
  :dry_run)
  include Aws::Structure
end

#filtersArray<Types::Filter>

One or more filters.

  • ‘endpoint` - The endpoint of the region (for example, `ec2.us-east-1.amazonaws.com`).

  • ‘region-name` - The name of the region (for example, `us-east-1`).

Returns:



8383
8384
8385
8386
8387
8388
# File 'lib/aws-sdk-ec2/types.rb', line 8383

class DescribeRegionsRequest < Struct.new(
  :filters,
  :region_names,
  :dry_run)
  include Aws::Structure
end

#region_namesArray<String>

The names of one or more regions.

Returns:

  • (Array<String>)


8383
8384
8385
8386
8387
8388
# File 'lib/aws-sdk-ec2/types.rb', line 8383

class DescribeRegionsRequest < Struct.new(
  :filters,
  :region_names,
  :dry_run)
  include Aws::Structure
end