Class: Aws::EC2::Types::ImportInstanceRequest

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

{
  description: "String",
  disk_images: [
    {
      description: "String",
      image: {
        bytes: 1, # required
        format: "VMDK", # required, accepts VMDK, RAW, VHD
        import_manifest_url: "String", # required
      },
      volume: {
        size: 1, # required
      },
    },
  ],
  dry_run: false,
  launch_specification: {
    additional_info: "String",
    architecture: "i386", # accepts i386, x86_64
    group_ids: ["String"],
    group_names: ["String"],
    instance_initiated_shutdown_behavior: "stop", # accepts stop, terminate
    instance_type: "t1.micro", # accepts t1.micro, t2.nano, t2.micro, t2.small, t2.medium, t2.large, t2.xlarge, t2.2xlarge, m1.small, m1.medium, m1.large, m1.xlarge, m3.medium, m3.large, m3.xlarge, m3.2xlarge, m4.large, m4.xlarge, m4.2xlarge, m4.4xlarge, m4.10xlarge, m4.16xlarge, m2.xlarge, m2.2xlarge, m2.4xlarge, cr1.8xlarge, r3.large, r3.xlarge, r3.2xlarge, r3.4xlarge, r3.8xlarge, r4.large, r4.xlarge, r4.2xlarge, r4.4xlarge, r4.8xlarge, r4.16xlarge, x1.16xlarge, x1.32xlarge, i2.xlarge, i2.2xlarge, i2.4xlarge, i2.8xlarge, i3.large, i3.xlarge, i3.2xlarge, i3.4xlarge, i3.8xlarge, i3.16xlarge, hi1.4xlarge, hs1.8xlarge, c1.medium, c1.xlarge, c3.large, c3.xlarge, c3.2xlarge, c3.4xlarge, c3.8xlarge, c4.large, c4.xlarge, c4.2xlarge, c4.4xlarge, c4.8xlarge, cc1.4xlarge, cc2.8xlarge, g2.2xlarge, g2.8xlarge, g3.4xlarge, g3.8xlarge, g3.16xlarge, cg1.4xlarge, p2.xlarge, p2.8xlarge, p2.16xlarge, d2.xlarge, d2.2xlarge, d2.4xlarge, d2.8xlarge, f1.2xlarge, f1.16xlarge
    monitoring: false,
    placement: {
      availability_zone: "String",
      affinity: "String",
      group_name: "String",
      host_id: "String",
      tenancy: "default", # accepts default, dedicated, host
      spread_domain: "String",
    },
    private_ip_address: "String",
    subnet_id: "String",
    user_data: {
      data: "String",
    },
  },
  platform: "Windows", # required, accepts Windows
}

Contains the parameters for ImportInstance.

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

A description for the instance being imported.

Returns:

  • (String)


14322
14323
14324
14325
14326
14327
14328
14329
# File 'lib/aws-sdk-ec2/types.rb', line 14322

class ImportInstanceRequest < Struct.new(
  :description,
  :disk_images,
  :dry_run,
  :launch_specification,
  :platform)
  include Aws::Structure
end

#disk_imagesArray<Types::DiskImage>

The disk image.

Returns:



14322
14323
14324
14325
14326
14327
14328
14329
# File 'lib/aws-sdk-ec2/types.rb', line 14322

class ImportInstanceRequest < Struct.new(
  :description,
  :disk_images,
  :dry_run,
  :launch_specification,
  :platform)
  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)


14322
14323
14324
14325
14326
14327
14328
14329
# File 'lib/aws-sdk-ec2/types.rb', line 14322

class ImportInstanceRequest < Struct.new(
  :description,
  :disk_images,
  :dry_run,
  :launch_specification,
  :platform)
  include Aws::Structure
end

#launch_specificationTypes::ImportInstanceLaunchSpecification

The launch specification.



14322
14323
14324
14325
14326
14327
14328
14329
# File 'lib/aws-sdk-ec2/types.rb', line 14322

class ImportInstanceRequest < Struct.new(
  :description,
  :disk_images,
  :dry_run,
  :launch_specification,
  :platform)
  include Aws::Structure
end

#platformString

The instance operating system.

Returns:

  • (String)


14322
14323
14324
14325
14326
14327
14328
14329
# File 'lib/aws-sdk-ec2/types.rb', line 14322

class ImportInstanceRequest < Struct.new(
  :description,
  :disk_images,
  :dry_run,
  :launch_specification,
  :platform)
  include Aws::Structure
end