Class: Aws::EC2::Types::ImportSnapshotRequest

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

{
  client_data: {
    comment: "String",
    upload_end: Time.now,
    upload_size: 1.0,
    upload_start: Time.now,
  },
  client_token: "String",
  description: "String",
  disk_container: {
    description: "String",
    format: "String",
    url: "String",
    user_bucket: {
      s3_bucket: "String",
      s3_key: "String",
    },
  },
  dry_run: false,
  role_name: "String",
}

Contains the parameters for ImportSnapshot.

Instance Attribute Summary collapse

Instance Attribute Details

#client_dataTypes::ClientData

The client-specific data.

Returns:



17695
17696
17697
17698
17699
17700
17701
17702
17703
# File 'lib/aws-sdk-ec2/types.rb', line 17695

class ImportSnapshotRequest < Struct.new(
  :client_data,
  :client_token,
  :description,
  :disk_container,
  :dry_run,
  :role_name)
  include Aws::Structure
end

#client_tokenString

Token to enable idempotency for VM import requests.

Returns:

  • (String)


17695
17696
17697
17698
17699
17700
17701
17702
17703
# File 'lib/aws-sdk-ec2/types.rb', line 17695

class ImportSnapshotRequest < Struct.new(
  :client_data,
  :client_token,
  :description,
  :disk_container,
  :dry_run,
  :role_name)
  include Aws::Structure
end

#descriptionString

The description string for the import snapshot task.

Returns:

  • (String)


17695
17696
17697
17698
17699
17700
17701
17702
17703
# File 'lib/aws-sdk-ec2/types.rb', line 17695

class ImportSnapshotRequest < Struct.new(
  :client_data,
  :client_token,
  :description,
  :disk_container,
  :dry_run,
  :role_name)
  include Aws::Structure
end

#disk_containerTypes::SnapshotDiskContainer

Information about the disk container.



17695
17696
17697
17698
17699
17700
17701
17702
17703
# File 'lib/aws-sdk-ec2/types.rb', line 17695

class ImportSnapshotRequest < Struct.new(
  :client_data,
  :client_token,
  :description,
  :disk_container,
  :dry_run,
  :role_name)
  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)


17695
17696
17697
17698
17699
17700
17701
17702
17703
# File 'lib/aws-sdk-ec2/types.rb', line 17695

class ImportSnapshotRequest < Struct.new(
  :client_data,
  :client_token,
  :description,
  :disk_container,
  :dry_run,
  :role_name)
  include Aws::Structure
end

#role_nameString

The name of the role to use when not using the default role, ‘vmimport’.

Returns:

  • (String)


17695
17696
17697
17698
17699
17700
17701
17702
17703
# File 'lib/aws-sdk-ec2/types.rb', line 17695

class ImportSnapshotRequest < Struct.new(
  :client_data,
  :client_token,
  :description,
  :disk_container,
  :dry_run,
  :role_name)
  include Aws::Structure
end