Class: Aws::EC2::Types::DescribeSpotFleetRequestsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::DescribeSpotFleetRequestsRequest
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
When making an API call, you may pass DescribeSpotFleetRequestsRequest data as a hash:
{
dry_run: false,
max_results: 1,
next_token: "String",
spot_fleet_request_ids: ["SpotFleetRequestId"],
}
Contains the parameters for DescribeSpotFleetRequests.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dry_run ⇒ Boolean
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response.
-
#max_results ⇒ Integer
The maximum number of results to return in a single call.
-
#next_token ⇒ String
The token for the next set of results.
-
#spot_fleet_request_ids ⇒ Array<String>
The IDs of the Spot Fleet requests.
Instance Attribute Details
#dry_run ⇒ Boolean
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
.
26539 26540 26541 26542 26543 26544 26545 26546 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 26539 class DescribeSpotFleetRequestsRequest < Struct.new( :dry_run, :max_results, :next_token, :spot_fleet_request_ids) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to return in a single call. Specify a
value between 1 and 1000. The default value is 1000. To retrieve the
remaining results, make another call with the returned NextToken
value.
26539 26540 26541 26542 26543 26544 26545 26546 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 26539 class DescribeSpotFleetRequestsRequest < Struct.new( :dry_run, :max_results, :next_token, :spot_fleet_request_ids) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token for the next set of results.
26539 26540 26541 26542 26543 26544 26545 26546 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 26539 class DescribeSpotFleetRequestsRequest < Struct.new( :dry_run, :max_results, :next_token, :spot_fleet_request_ids) SENSITIVE = [] include Aws::Structure end |
#spot_fleet_request_ids ⇒ Array<String>
The IDs of the Spot Fleet requests.
26539 26540 26541 26542 26543 26544 26545 26546 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 26539 class DescribeSpotFleetRequestsRequest < Struct.new( :dry_run, :max_results, :next_token, :spot_fleet_request_ids) SENSITIVE = [] include Aws::Structure end |