Class: Aws::EC2::Types::CancelImportTaskRequest

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

{
  cancel_reason: "String",
  dry_run: false,
  import_task_id: "String",
}

Contains the parameters for CancelImportTask.

Instance Attribute Summary collapse

Instance Attribute Details

#cancel_reasonString

The reason for canceling the task.

Returns:

  • (String)


2203
2204
2205
2206
2207
2208
# File 'lib/aws-sdk-ec2/types.rb', line 2203

class CancelImportTaskRequest < Struct.new(
  :cancel_reason,
  :dry_run,
  :import_task_id)
  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)


2203
2204
2205
2206
2207
2208
# File 'lib/aws-sdk-ec2/types.rb', line 2203

class CancelImportTaskRequest < Struct.new(
  :cancel_reason,
  :dry_run,
  :import_task_id)
  include Aws::Structure
end

#import_task_idString

The ID of the import image or import snapshot task to be canceled.

Returns:

  • (String)


2203
2204
2205
2206
2207
2208
# File 'lib/aws-sdk-ec2/types.rb', line 2203

class CancelImportTaskRequest < Struct.new(
  :cancel_reason,
  :dry_run,
  :import_task_id)
  include Aws::Structure
end