Class: Aws::EC2::Types::CreateSpotDatafeedSubscriptionRequest

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

{
  bucket: "String", # required
  dry_run: false,
  prefix: "String",
}

Contains the parameters for CreateSpotDatafeedSubscription.

Instance Attribute Summary collapse

Instance Attribute Details

#bucketString

The Amazon S3 bucket in which to store the Spot Instance data feed.

Returns:

  • (String)


6372
6373
6374
6375
6376
6377
# File 'lib/aws-sdk-ec2/types.rb', line 6372

class CreateSpotDatafeedSubscriptionRequest < Struct.new(
  :bucket,
  :dry_run,
  :prefix)
  include Aws::Structure
end

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


6372
6373
6374
6375
6376
6377
# File 'lib/aws-sdk-ec2/types.rb', line 6372

class CreateSpotDatafeedSubscriptionRequest < Struct.new(
  :bucket,
  :dry_run,
  :prefix)
  include Aws::Structure
end

#prefixString

A prefix for the data feed file names.

Returns:

  • (String)


6372
6373
6374
6375
6376
6377
# File 'lib/aws-sdk-ec2/types.rb', line 6372

class CreateSpotDatafeedSubscriptionRequest < Struct.new(
  :bucket,
  :dry_run,
  :prefix)
  include Aws::Structure
end