Class: Aws::EC2::Types::BundleInstanceRequest

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

{
  instance_id: "String", # required
  storage: { # required
    s3: {
      aws_access_key_id: "String",
      bucket: "String",
      prefix: "String",
      upload_policy: "data",
      upload_policy_signature: "String",
    },
  },
  dry_run: false,
}

Contains the parameters for BundleInstance.

Instance Attribute Summary collapse

Instance Attribute Details

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


1924
1925
1926
1927
1928
1929
# File 'lib/aws-sdk-ec2/types.rb', line 1924

class BundleInstanceRequest < Struct.new(
  :instance_id,
  :storage,
  :dry_run)
  include Aws::Structure
end

#instance_idString

The ID of the instance to bundle.

Type: String

Default: None

Required: Yes

Returns:

  • (String)


1924
1925
1926
1927
1928
1929
# File 'lib/aws-sdk-ec2/types.rb', line 1924

class BundleInstanceRequest < Struct.new(
  :instance_id,
  :storage,
  :dry_run)
  include Aws::Structure
end

#storageTypes::Storage

The bucket in which to store the AMI. You can specify a bucket that you already own or a new bucket that Amazon EC2 creates on your behalf. If you specify a bucket that belongs to someone else, Amazon EC2 returns an error.

Returns:



1924
1925
1926
1927
1928
1929
# File 'lib/aws-sdk-ec2/types.rb', line 1924

class BundleInstanceRequest < Struct.new(
  :instance_id,
  :storage,
  :dry_run)
  include Aws::Structure
end