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)


16138
16139
16140
16141
16142
16143
16144
16145
# File 'lib/aws-sdk-ec2/types.rb', line 16138

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:



16138
16139
16140
16141
16142
16143
16144
16145
# File 'lib/aws-sdk-ec2/types.rb', line 16138

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)


16138
16139
16140
16141
16142
16143
16144
16145
# File 'lib/aws-sdk-ec2/types.rb', line 16138

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)


16138
16139
16140
16141
16142
16143
16144
16145
# File 'lib/aws-sdk-ec2/types.rb', line 16138

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>)


16138
16139
16140
16141
16142
16143
16144
16145
# File 'lib/aws-sdk-ec2/types.rb', line 16138

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