Image Builder
Provides an AppStream image builder.
Example Usage
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.appstream.ImageBuilder;
import com.pulumi.aws.appstream.ImageBuilderArgs;
import com.pulumi.aws.appstream.inputs.ImageBuilderVpcConfigArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testFleet = new ImageBuilder("testFleet", ImageBuilderArgs.builder()
.description("Description of a ImageBuilder")
.displayName("Display name of a ImageBuilder")
.enableDefaultInternetAccess(false)
.imageName("AppStream-WinServer2019-10-05-2022")
.instanceType("stream.standard.large")
.vpcConfig(ImageBuilderVpcConfigArgs.builder()
.subnetIds(aws_subnet.example().id())
.build())
.tags(Map.of("Name", "Example Image Builder"))
.build());
}
}
Import
aws_appstream_image_builder
can be imported using the name
, e.g.,
$ pulumi import aws:appstream/imageBuilder:ImageBuilder example imageBuilderExample
Properties
Set of interface VPC endpoint (interface endpoint) objects. Maximum of 4. See below.
Version of the AppStream 2.0 agent to use for this image builder.
Date and time, in UTC and extended RFC 3339 format, when the image builder was created.
Description to display.
Human-readable friendly name for the AppStream image builder.
Configuration block for the name of the directory and organizational unit (OU) to use to join the image builder to a Microsoft Active Directory domain. See below.
Enables or disables default internet access for the image builder.
ARN of the IAM role to apply to the image builder.
Instance type to use when launching the image builder.
Configuration block for the VPC configuration for the image builder. See below.