Bundles an Amazon instance store-backed Windows instance.
During bundling, only the root device volume (C:\) is bundled. Data on other instance store volumes is not preserved.
This action is not applicable for Linux/Unix instances or Windows instances that are backed by Amazon EBS.
Use a bare-bones client and the command you need to make an API call.
import { EC2Client, BundleInstanceCommand } from "@aws-sdk/client-ec2"; // ES Modules import // const { EC2Client, BundleInstanceCommand } = require("@aws-sdk/client-ec2"); // CommonJS import const client = new EC2Client(config); const command = new BundleInstanceCommand(input); const response = await client.send(command);
BundleInstanceCommandInput for command's input shape.
input
BundleInstanceCommandOutput for command's response shape.
response
config for EC2Client's config shape.
config
Bundles an Amazon instance store-backed Windows instance.
During bundling, only the root device volume (C:\) is bundled. Data on other instance store volumes is not preserved.
This action is not applicable for Linux/Unix instances or Windows instances that are backed by Amazon EBS.
Use a bare-bones client and the command you need to make an API call.
import { EC2Client, BundleInstanceCommand } from "@aws-sdk/client-ec2"; // ES Modules import // const { EC2Client, BundleInstanceCommand } = require("@aws-sdk/client-ec2"); // CommonJS import const client = new EC2Client(config); const command = new BundleInstanceCommand(input); const response = await client.send(command);
BundleInstanceCommandInput for command's
input
shape.BundleInstanceCommandOutput for command's
response
shape.config for EC2Client's
config
shape.