Class: Aws::EC2::Types::DescribeVolumesModificationsRequest

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

{
  dry_run: false,
  volume_ids: ["String"],
  filters: [
    {
      name: "String",
      values: ["String"],
    },
  ],
  next_token: "String",
  max_results: 1,
}

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)


10608
10609
10610
10611
10612
10613
10614
10615
# File 'lib/aws-sdk-ec2/types.rb', line 10608

class DescribeVolumesModificationsRequest < Struct.new(
  :dry_run,
  :volume_ids,
  :filters,
  :next_token,
  :max_results)
  include Aws::Structure
end

#filtersArray<Types::Filter>

One or more filters. Supported filters: ‘volume-id`, `modification-state`, `target-size`, `target-iops`, `target-volume-type`, `original-size`, `original-iops`, `original-volume-type`, `start-time`.

Returns:



10608
10609
10610
10611
10612
10613
10614
10615
# File 'lib/aws-sdk-ec2/types.rb', line 10608

class DescribeVolumesModificationsRequest < Struct.new(
  :dry_run,
  :volume_ids,
  :filters,
  :next_token,
  :max_results)
  include Aws::Structure
end

#max_resultsInteger

The maximum number of results (up to a limit of 500) to be returned in a paginated request.

Returns:

  • (Integer)


10608
10609
10610
10611
10612
10613
10614
10615
# File 'lib/aws-sdk-ec2/types.rb', line 10608

class DescribeVolumesModificationsRequest < Struct.new(
  :dry_run,
  :volume_ids,
  :filters,
  :next_token,
  :max_results)
  include Aws::Structure
end

#next_tokenString

The ‘nextToken` value returned by a previous paginated request.

Returns:

  • (String)


10608
10609
10610
10611
10612
10613
10614
10615
# File 'lib/aws-sdk-ec2/types.rb', line 10608

class DescribeVolumesModificationsRequest < Struct.new(
  :dry_run,
  :volume_ids,
  :filters,
  :next_token,
  :max_results)
  include Aws::Structure
end

#volume_idsArray<String>

One or more volume IDs for which in-progress modifications will be described.

Returns:

  • (Array<String>)


10608
10609
10610
10611
10612
10613
10614
10615
# File 'lib/aws-sdk-ec2/types.rb', line 10608

class DescribeVolumesModificationsRequest < Struct.new(
  :dry_run,
  :volume_ids,
  :filters,
  :next_token,
  :max_results)
  include Aws::Structure
end