aws.appstream.ImageBuilder
Explore with Pulumi AI
Provides an AppStream image builder.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const testFleet = new aws.appstream.ImageBuilder("test_fleet", {
    name: "Name",
    description: "Description of a ImageBuilder",
    displayName: "Display name of a ImageBuilder",
    enableDefaultInternetAccess: false,
    imageName: "AppStream-WinServer2019-10-05-2022",
    instanceType: "stream.standard.large",
    vpcConfig: {
        subnetIds: [example.id],
    },
    tags: {
        Name: "Example Image Builder",
    },
});
import pulumi
import pulumi_aws as aws
test_fleet = aws.appstream.ImageBuilder("test_fleet",
    name="Name",
    description="Description of a ImageBuilder",
    display_name="Display name of a ImageBuilder",
    enable_default_internet_access=False,
    image_name="AppStream-WinServer2019-10-05-2022",
    instance_type="stream.standard.large",
    vpc_config={
        "subnet_ids": [example["id"]],
    },
    tags={
        "Name": "Example Image Builder",
    })
package main
import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/appstream"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := appstream.NewImageBuilder(ctx, "test_fleet", &appstream.ImageBuilderArgs{
			Name:                        pulumi.String("Name"),
			Description:                 pulumi.String("Description of a ImageBuilder"),
			DisplayName:                 pulumi.String("Display name of a ImageBuilder"),
			EnableDefaultInternetAccess: pulumi.Bool(false),
			ImageName:                   pulumi.String("AppStream-WinServer2019-10-05-2022"),
			InstanceType:                pulumi.String("stream.standard.large"),
			VpcConfig: &appstream.ImageBuilderVpcConfigArgs{
				SubnetIds: pulumi.StringArray{
					example.Id,
				},
			},
			Tags: pulumi.StringMap{
				"Name": pulumi.String("Example Image Builder"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() => 
{
    var testFleet = new Aws.AppStream.ImageBuilder("test_fleet", new()
    {
        Name = "Name",
        Description = "Description of a ImageBuilder",
        DisplayName = "Display name of a ImageBuilder",
        EnableDefaultInternetAccess = false,
        ImageName = "AppStream-WinServer2019-10-05-2022",
        InstanceType = "stream.standard.large",
        VpcConfig = new Aws.AppStream.Inputs.ImageBuilderVpcConfigArgs
        {
            SubnetIds = new[]
            {
                example.Id,
            },
        },
        Tags = 
        {
            { "Name", "Example Image Builder" },
        },
    });
});
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()
            .name("Name")
            .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(example.id())
                .build())
            .tags(Map.of("Name", "Example Image Builder"))
            .build());
    }
}
resources:
  testFleet:
    type: aws:appstream:ImageBuilder
    name: test_fleet
    properties:
      name: Name
      description: Description of a ImageBuilder
      displayName: Display name of a ImageBuilder
      enableDefaultInternetAccess: false
      imageName: AppStream-WinServer2019-10-05-2022
      instanceType: stream.standard.large
      vpcConfig:
        subnetIds:
          - ${example.id}
      tags:
        Name: Example Image Builder
Create ImageBuilder Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ImageBuilder(name: string, args: ImageBuilderArgs, opts?: CustomResourceOptions);@overload
def ImageBuilder(resource_name: str,
                 args: ImageBuilderArgs,
                 opts: Optional[ResourceOptions] = None)
@overload
def ImageBuilder(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 instance_type: Optional[str] = None,
                 display_name: Optional[str] = None,
                 description: Optional[str] = None,
                 access_endpoints: Optional[Sequence[ImageBuilderAccessEndpointArgs]] = None,
                 domain_join_info: Optional[ImageBuilderDomainJoinInfoArgs] = None,
                 enable_default_internet_access: Optional[bool] = None,
                 iam_role_arn: Optional[str] = None,
                 image_arn: Optional[str] = None,
                 image_name: Optional[str] = None,
                 appstream_agent_version: Optional[str] = None,
                 name: Optional[str] = None,
                 tags: Optional[Mapping[str, str]] = None,
                 vpc_config: Optional[ImageBuilderVpcConfigArgs] = None)func NewImageBuilder(ctx *Context, name string, args ImageBuilderArgs, opts ...ResourceOption) (*ImageBuilder, error)public ImageBuilder(string name, ImageBuilderArgs args, CustomResourceOptions? opts = null)
public ImageBuilder(String name, ImageBuilderArgs args)
public ImageBuilder(String name, ImageBuilderArgs args, CustomResourceOptions options)
type: aws:appstream:ImageBuilder
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ImageBuilderArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ImageBuilderArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ImageBuilderArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ImageBuilderArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ImageBuilderArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var imageBuilderResource = new Aws.AppStream.ImageBuilder("imageBuilderResource", new()
{
    InstanceType = "string",
    DisplayName = "string",
    Description = "string",
    AccessEndpoints = new[]
    {
        new Aws.AppStream.Inputs.ImageBuilderAccessEndpointArgs
        {
            EndpointType = "string",
            VpceId = "string",
        },
    },
    DomainJoinInfo = new Aws.AppStream.Inputs.ImageBuilderDomainJoinInfoArgs
    {
        DirectoryName = "string",
        OrganizationalUnitDistinguishedName = "string",
    },
    EnableDefaultInternetAccess = false,
    IamRoleArn = "string",
    ImageArn = "string",
    ImageName = "string",
    AppstreamAgentVersion = "string",
    Name = "string",
    Tags = 
    {
        { "string", "string" },
    },
    VpcConfig = new Aws.AppStream.Inputs.ImageBuilderVpcConfigArgs
    {
        SecurityGroupIds = new[]
        {
            "string",
        },
        SubnetIds = new[]
        {
            "string",
        },
    },
});
example, err := appstream.NewImageBuilder(ctx, "imageBuilderResource", &appstream.ImageBuilderArgs{
	InstanceType: pulumi.String("string"),
	DisplayName:  pulumi.String("string"),
	Description:  pulumi.String("string"),
	AccessEndpoints: appstream.ImageBuilderAccessEndpointArray{
		&appstream.ImageBuilderAccessEndpointArgs{
			EndpointType: pulumi.String("string"),
			VpceId:       pulumi.String("string"),
		},
	},
	DomainJoinInfo: &appstream.ImageBuilderDomainJoinInfoArgs{
		DirectoryName:                       pulumi.String("string"),
		OrganizationalUnitDistinguishedName: pulumi.String("string"),
	},
	EnableDefaultInternetAccess: pulumi.Bool(false),
	IamRoleArn:                  pulumi.String("string"),
	ImageArn:                    pulumi.String("string"),
	ImageName:                   pulumi.String("string"),
	AppstreamAgentVersion:       pulumi.String("string"),
	Name:                        pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	VpcConfig: &appstream.ImageBuilderVpcConfigArgs{
		SecurityGroupIds: pulumi.StringArray{
			pulumi.String("string"),
		},
		SubnetIds: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
})
var imageBuilderResource = new ImageBuilder("imageBuilderResource", ImageBuilderArgs.builder()
    .instanceType("string")
    .displayName("string")
    .description("string")
    .accessEndpoints(ImageBuilderAccessEndpointArgs.builder()
        .endpointType("string")
        .vpceId("string")
        .build())
    .domainJoinInfo(ImageBuilderDomainJoinInfoArgs.builder()
        .directoryName("string")
        .organizationalUnitDistinguishedName("string")
        .build())
    .enableDefaultInternetAccess(false)
    .iamRoleArn("string")
    .imageArn("string")
    .imageName("string")
    .appstreamAgentVersion("string")
    .name("string")
    .tags(Map.of("string", "string"))
    .vpcConfig(ImageBuilderVpcConfigArgs.builder()
        .securityGroupIds("string")
        .subnetIds("string")
        .build())
    .build());
image_builder_resource = aws.appstream.ImageBuilder("imageBuilderResource",
    instance_type="string",
    display_name="string",
    description="string",
    access_endpoints=[{
        "endpoint_type": "string",
        "vpce_id": "string",
    }],
    domain_join_info={
        "directory_name": "string",
        "organizational_unit_distinguished_name": "string",
    },
    enable_default_internet_access=False,
    iam_role_arn="string",
    image_arn="string",
    image_name="string",
    appstream_agent_version="string",
    name="string",
    tags={
        "string": "string",
    },
    vpc_config={
        "security_group_ids": ["string"],
        "subnet_ids": ["string"],
    })
const imageBuilderResource = new aws.appstream.ImageBuilder("imageBuilderResource", {
    instanceType: "string",
    displayName: "string",
    description: "string",
    accessEndpoints: [{
        endpointType: "string",
        vpceId: "string",
    }],
    domainJoinInfo: {
        directoryName: "string",
        organizationalUnitDistinguishedName: "string",
    },
    enableDefaultInternetAccess: false,
    iamRoleArn: "string",
    imageArn: "string",
    imageName: "string",
    appstreamAgentVersion: "string",
    name: "string",
    tags: {
        string: "string",
    },
    vpcConfig: {
        securityGroupIds: ["string"],
        subnetIds: ["string"],
    },
});
type: aws:appstream:ImageBuilder
properties:
    accessEndpoints:
        - endpointType: string
          vpceId: string
    appstreamAgentVersion: string
    description: string
    displayName: string
    domainJoinInfo:
        directoryName: string
        organizationalUnitDistinguishedName: string
    enableDefaultInternetAccess: false
    iamRoleArn: string
    imageArn: string
    imageName: string
    instanceType: string
    name: string
    tags:
        string: string
    vpcConfig:
        securityGroupIds:
            - string
        subnetIds:
            - string
ImageBuilder Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ImageBuilder resource accepts the following input properties:
- InstanceType string
- Instance type to use when launching the image builder.
- AccessEndpoints List<ImageBuilder Access Endpoint> 
- Set of interface VPC endpoint (interface endpoint) objects. Maximum of 4. See below.
- AppstreamAgent stringVersion 
- Version of the AppStream 2.0 agent to use for this image builder.
- Description string
- Description to display.
- DisplayName string
- Human-readable friendly name for the AppStream image builder.
- DomainJoin ImageInfo Builder Domain Join Info 
- 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.
- EnableDefault boolInternet Access 
- Enables or disables default internet access for the image builder.
- IamRole stringArn 
- ARN of the IAM role to apply to the image builder.
- ImageArn string
- ARN of the public, private, or shared image to use.
- ImageName string
- Name of the image used to create the image builder.
- Name string
- Unique name for the image builder. - The following arguments are optional: 
- Dictionary<string, string>
- Map of tags to assign to the instance. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- VpcConfig ImageBuilder Vpc Config 
- Configuration block for the VPC configuration for the image builder. See below.
- InstanceType string
- Instance type to use when launching the image builder.
- AccessEndpoints []ImageBuilder Access Endpoint Args 
- Set of interface VPC endpoint (interface endpoint) objects. Maximum of 4. See below.
- AppstreamAgent stringVersion 
- Version of the AppStream 2.0 agent to use for this image builder.
- Description string
- Description to display.
- DisplayName string
- Human-readable friendly name for the AppStream image builder.
- DomainJoin ImageInfo Builder Domain Join Info Args 
- 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.
- EnableDefault boolInternet Access 
- Enables or disables default internet access for the image builder.
- IamRole stringArn 
- ARN of the IAM role to apply to the image builder.
- ImageArn string
- ARN of the public, private, or shared image to use.
- ImageName string
- Name of the image used to create the image builder.
- Name string
- Unique name for the image builder. - The following arguments are optional: 
- map[string]string
- Map of tags to assign to the instance. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- VpcConfig ImageBuilder Vpc Config Args 
- Configuration block for the VPC configuration for the image builder. See below.
- instanceType String
- Instance type to use when launching the image builder.
- accessEndpoints List<ImageBuilder Access Endpoint> 
- Set of interface VPC endpoint (interface endpoint) objects. Maximum of 4. See below.
- appstreamAgent StringVersion 
- Version of the AppStream 2.0 agent to use for this image builder.
- description String
- Description to display.
- displayName String
- Human-readable friendly name for the AppStream image builder.
- domainJoin ImageInfo Builder Domain Join Info 
- 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.
- enableDefault BooleanInternet Access 
- Enables or disables default internet access for the image builder.
- iamRole StringArn 
- ARN of the IAM role to apply to the image builder.
- imageArn String
- ARN of the public, private, or shared image to use.
- imageName String
- Name of the image used to create the image builder.
- name String
- Unique name for the image builder. - The following arguments are optional: 
- Map<String,String>
- Map of tags to assign to the instance. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- vpcConfig ImageBuilder Vpc Config 
- Configuration block for the VPC configuration for the image builder. See below.
- instanceType string
- Instance type to use when launching the image builder.
- accessEndpoints ImageBuilder Access Endpoint[] 
- Set of interface VPC endpoint (interface endpoint) objects. Maximum of 4. See below.
- appstreamAgent stringVersion 
- Version of the AppStream 2.0 agent to use for this image builder.
- description string
- Description to display.
- displayName string
- Human-readable friendly name for the AppStream image builder.
- domainJoin ImageInfo Builder Domain Join Info 
- 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.
- enableDefault booleanInternet Access 
- Enables or disables default internet access for the image builder.
- iamRole stringArn 
- ARN of the IAM role to apply to the image builder.
- imageArn string
- ARN of the public, private, or shared image to use.
- imageName string
- Name of the image used to create the image builder.
- name string
- Unique name for the image builder. - The following arguments are optional: 
- {[key: string]: string}
- Map of tags to assign to the instance. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- vpcConfig ImageBuilder Vpc Config 
- Configuration block for the VPC configuration for the image builder. See below.
- instance_type str
- Instance type to use when launching the image builder.
- access_endpoints Sequence[ImageBuilder Access Endpoint Args] 
- Set of interface VPC endpoint (interface endpoint) objects. Maximum of 4. See below.
- appstream_agent_ strversion 
- Version of the AppStream 2.0 agent to use for this image builder.
- description str
- Description to display.
- display_name str
- Human-readable friendly name for the AppStream image builder.
- domain_join_ Imageinfo Builder Domain Join Info Args 
- 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.
- enable_default_ boolinternet_ access 
- Enables or disables default internet access for the image builder.
- iam_role_ strarn 
- ARN of the IAM role to apply to the image builder.
- image_arn str
- ARN of the public, private, or shared image to use.
- image_name str
- Name of the image used to create the image builder.
- name str
- Unique name for the image builder. - The following arguments are optional: 
- Mapping[str, str]
- Map of tags to assign to the instance. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- vpc_config ImageBuilder Vpc Config Args 
- Configuration block for the VPC configuration for the image builder. See below.
- instanceType String
- Instance type to use when launching the image builder.
- accessEndpoints List<Property Map>
- Set of interface VPC endpoint (interface endpoint) objects. Maximum of 4. See below.
- appstreamAgent StringVersion 
- Version of the AppStream 2.0 agent to use for this image builder.
- description String
- Description to display.
- displayName String
- Human-readable friendly name for the AppStream image builder.
- domainJoin Property MapInfo 
- 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.
- enableDefault BooleanInternet Access 
- Enables or disables default internet access for the image builder.
- iamRole StringArn 
- ARN of the IAM role to apply to the image builder.
- imageArn String
- ARN of the public, private, or shared image to use.
- imageName String
- Name of the image used to create the image builder.
- name String
- Unique name for the image builder. - The following arguments are optional: 
- Map<String>
- Map of tags to assign to the instance. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- vpcConfig Property Map
- Configuration block for the VPC configuration for the image builder. See below.
Outputs
All input properties are implicitly available as output properties. Additionally, the ImageBuilder resource produces the following output properties:
- Arn string
- ARN of the appstream image builder.
- CreatedTime string
- Date and time, in UTC and extended RFC 3339 format, when the image builder was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- State of the image builder. For valid values, refer to the AWS documentation.
- Dictionary<string, string>
- Map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- Arn string
- ARN of the appstream image builder.
- CreatedTime string
- Date and time, in UTC and extended RFC 3339 format, when the image builder was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- State of the image builder. For valid values, refer to the AWS documentation.
- map[string]string
- Map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn String
- ARN of the appstream image builder.
- createdTime String
- Date and time, in UTC and extended RFC 3339 format, when the image builder was created.
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- State of the image builder. For valid values, refer to the AWS documentation.
- Map<String,String>
- Map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn string
- ARN of the appstream image builder.
- createdTime string
- Date and time, in UTC and extended RFC 3339 format, when the image builder was created.
- id string
- The provider-assigned unique ID for this managed resource.
- state string
- State of the image builder. For valid values, refer to the AWS documentation.
- {[key: string]: string}
- Map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn str
- ARN of the appstream image builder.
- created_time str
- Date and time, in UTC and extended RFC 3339 format, when the image builder was created.
- id str
- The provider-assigned unique ID for this managed resource.
- state str
- State of the image builder. For valid values, refer to the AWS documentation.
- Mapping[str, str]
- Map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- arn String
- ARN of the appstream image builder.
- createdTime String
- Date and time, in UTC and extended RFC 3339 format, when the image builder was created.
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- State of the image builder. For valid values, refer to the AWS documentation.
- Map<String>
- Map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
Look up Existing ImageBuilder Resource
Get an existing ImageBuilder resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ImageBuilderState, opts?: CustomResourceOptions): ImageBuilder@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        access_endpoints: Optional[Sequence[ImageBuilderAccessEndpointArgs]] = None,
        appstream_agent_version: Optional[str] = None,
        arn: Optional[str] = None,
        created_time: Optional[str] = None,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        domain_join_info: Optional[ImageBuilderDomainJoinInfoArgs] = None,
        enable_default_internet_access: Optional[bool] = None,
        iam_role_arn: Optional[str] = None,
        image_arn: Optional[str] = None,
        image_name: Optional[str] = None,
        instance_type: Optional[str] = None,
        name: Optional[str] = None,
        state: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None,
        vpc_config: Optional[ImageBuilderVpcConfigArgs] = None) -> ImageBuilderfunc GetImageBuilder(ctx *Context, name string, id IDInput, state *ImageBuilderState, opts ...ResourceOption) (*ImageBuilder, error)public static ImageBuilder Get(string name, Input<string> id, ImageBuilderState? state, CustomResourceOptions? opts = null)public static ImageBuilder get(String name, Output<String> id, ImageBuilderState state, CustomResourceOptions options)resources:  _:    type: aws:appstream:ImageBuilder    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- AccessEndpoints List<ImageBuilder Access Endpoint> 
- Set of interface VPC endpoint (interface endpoint) objects. Maximum of 4. See below.
- AppstreamAgent stringVersion 
- Version of the AppStream 2.0 agent to use for this image builder.
- Arn string
- ARN of the appstream image builder.
- CreatedTime string
- Date and time, in UTC and extended RFC 3339 format, when the image builder was created.
- Description string
- Description to display.
- DisplayName string
- Human-readable friendly name for the AppStream image builder.
- DomainJoin ImageInfo Builder Domain Join Info 
- 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.
- EnableDefault boolInternet Access 
- Enables or disables default internet access for the image builder.
- IamRole stringArn 
- ARN of the IAM role to apply to the image builder.
- ImageArn string
- ARN of the public, private, or shared image to use.
- ImageName string
- Name of the image used to create the image builder.
- InstanceType string
- Instance type to use when launching the image builder.
- Name string
- Unique name for the image builder. - The following arguments are optional: 
- State string
- State of the image builder. For valid values, refer to the AWS documentation.
- Dictionary<string, string>
- Map of tags to assign to the instance. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Dictionary<string, string>
- Map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- VpcConfig ImageBuilder Vpc Config 
- Configuration block for the VPC configuration for the image builder. See below.
- AccessEndpoints []ImageBuilder Access Endpoint Args 
- Set of interface VPC endpoint (interface endpoint) objects. Maximum of 4. See below.
- AppstreamAgent stringVersion 
- Version of the AppStream 2.0 agent to use for this image builder.
- Arn string
- ARN of the appstream image builder.
- CreatedTime string
- Date and time, in UTC and extended RFC 3339 format, when the image builder was created.
- Description string
- Description to display.
- DisplayName string
- Human-readable friendly name for the AppStream image builder.
- DomainJoin ImageInfo Builder Domain Join Info Args 
- 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.
- EnableDefault boolInternet Access 
- Enables or disables default internet access for the image builder.
- IamRole stringArn 
- ARN of the IAM role to apply to the image builder.
- ImageArn string
- ARN of the public, private, or shared image to use.
- ImageName string
- Name of the image used to create the image builder.
- InstanceType string
- Instance type to use when launching the image builder.
- Name string
- Unique name for the image builder. - The following arguments are optional: 
- State string
- State of the image builder. For valid values, refer to the AWS documentation.
- map[string]string
- Map of tags to assign to the instance. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- map[string]string
- Map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- VpcConfig ImageBuilder Vpc Config Args 
- Configuration block for the VPC configuration for the image builder. See below.
- accessEndpoints List<ImageBuilder Access Endpoint> 
- Set of interface VPC endpoint (interface endpoint) objects. Maximum of 4. See below.
- appstreamAgent StringVersion 
- Version of the AppStream 2.0 agent to use for this image builder.
- arn String
- ARN of the appstream image builder.
- createdTime String
- Date and time, in UTC and extended RFC 3339 format, when the image builder was created.
- description String
- Description to display.
- displayName String
- Human-readable friendly name for the AppStream image builder.
- domainJoin ImageInfo Builder Domain Join Info 
- 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.
- enableDefault BooleanInternet Access 
- Enables or disables default internet access for the image builder.
- iamRole StringArn 
- ARN of the IAM role to apply to the image builder.
- imageArn String
- ARN of the public, private, or shared image to use.
- imageName String
- Name of the image used to create the image builder.
- instanceType String
- Instance type to use when launching the image builder.
- name String
- Unique name for the image builder. - The following arguments are optional: 
- state String
- State of the image builder. For valid values, refer to the AWS documentation.
- Map<String,String>
- Map of tags to assign to the instance. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Map<String,String>
- Map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- vpcConfig ImageBuilder Vpc Config 
- Configuration block for the VPC configuration for the image builder. See below.
- accessEndpoints ImageBuilder Access Endpoint[] 
- Set of interface VPC endpoint (interface endpoint) objects. Maximum of 4. See below.
- appstreamAgent stringVersion 
- Version of the AppStream 2.0 agent to use for this image builder.
- arn string
- ARN of the appstream image builder.
- createdTime string
- Date and time, in UTC and extended RFC 3339 format, when the image builder was created.
- description string
- Description to display.
- displayName string
- Human-readable friendly name for the AppStream image builder.
- domainJoin ImageInfo Builder Domain Join Info 
- 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.
- enableDefault booleanInternet Access 
- Enables or disables default internet access for the image builder.
- iamRole stringArn 
- ARN of the IAM role to apply to the image builder.
- imageArn string
- ARN of the public, private, or shared image to use.
- imageName string
- Name of the image used to create the image builder.
- instanceType string
- Instance type to use when launching the image builder.
- name string
- Unique name for the image builder. - The following arguments are optional: 
- state string
- State of the image builder. For valid values, refer to the AWS documentation.
- {[key: string]: string}
- Map of tags to assign to the instance. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- {[key: string]: string}
- Map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- vpcConfig ImageBuilder Vpc Config 
- Configuration block for the VPC configuration for the image builder. See below.
- access_endpoints Sequence[ImageBuilder Access Endpoint Args] 
- Set of interface VPC endpoint (interface endpoint) objects. Maximum of 4. See below.
- appstream_agent_ strversion 
- Version of the AppStream 2.0 agent to use for this image builder.
- arn str
- ARN of the appstream image builder.
- created_time str
- Date and time, in UTC and extended RFC 3339 format, when the image builder was created.
- description str
- Description to display.
- display_name str
- Human-readable friendly name for the AppStream image builder.
- domain_join_ Imageinfo Builder Domain Join Info Args 
- 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.
- enable_default_ boolinternet_ access 
- Enables or disables default internet access for the image builder.
- iam_role_ strarn 
- ARN of the IAM role to apply to the image builder.
- image_arn str
- ARN of the public, private, or shared image to use.
- image_name str
- Name of the image used to create the image builder.
- instance_type str
- Instance type to use when launching the image builder.
- name str
- Unique name for the image builder. - The following arguments are optional: 
- state str
- State of the image builder. For valid values, refer to the AWS documentation.
- Mapping[str, str]
- Map of tags to assign to the instance. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Mapping[str, str]
- Map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- vpc_config ImageBuilder Vpc Config Args 
- Configuration block for the VPC configuration for the image builder. See below.
- accessEndpoints List<Property Map>
- Set of interface VPC endpoint (interface endpoint) objects. Maximum of 4. See below.
- appstreamAgent StringVersion 
- Version of the AppStream 2.0 agent to use for this image builder.
- arn String
- ARN of the appstream image builder.
- createdTime String
- Date and time, in UTC and extended RFC 3339 format, when the image builder was created.
- description String
- Description to display.
- displayName String
- Human-readable friendly name for the AppStream image builder.
- domainJoin Property MapInfo 
- 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.
- enableDefault BooleanInternet Access 
- Enables or disables default internet access for the image builder.
- iamRole StringArn 
- ARN of the IAM role to apply to the image builder.
- imageArn String
- ARN of the public, private, or shared image to use.
- imageName String
- Name of the image used to create the image builder.
- instanceType String
- Instance type to use when launching the image builder.
- name String
- Unique name for the image builder. - The following arguments are optional: 
- state String
- State of the image builder. For valid values, refer to the AWS documentation.
- Map<String>
- Map of tags to assign to the instance. If configured with a provider default_tagsconfiguration block present, tags with matching keys will overwrite those defined at the provider-level.
- Map<String>
- Map of tags assigned to the resource, including those inherited from the provider default_tagsconfiguration block.
- vpcConfig Property Map
- Configuration block for the VPC configuration for the image builder. See below.
Supporting Types
ImageBuilderAccessEndpoint, ImageBuilderAccessEndpointArgs        
- EndpointType string
- Type of interface endpoint. For valid values, refer to the AWS documentation.
- VpceId string
- Identifier (ID) of the interface VPC endpoint.
- EndpointType string
- Type of interface endpoint. For valid values, refer to the AWS documentation.
- VpceId string
- Identifier (ID) of the interface VPC endpoint.
- endpointType String
- Type of interface endpoint. For valid values, refer to the AWS documentation.
- vpceId String
- Identifier (ID) of the interface VPC endpoint.
- endpointType string
- Type of interface endpoint. For valid values, refer to the AWS documentation.
- vpceId string
- Identifier (ID) of the interface VPC endpoint.
- endpoint_type str
- Type of interface endpoint. For valid values, refer to the AWS documentation.
- vpce_id str
- Identifier (ID) of the interface VPC endpoint.
- endpointType String
- Type of interface endpoint. For valid values, refer to the AWS documentation.
- vpceId String
- Identifier (ID) of the interface VPC endpoint.
ImageBuilderDomainJoinInfo, ImageBuilderDomainJoinInfoArgs          
- DirectoryName string
- Fully qualified name of the directory (for example, corp.example.com).
- OrganizationalUnit stringDistinguished Name 
- Distinguished name of the organizational unit for computer accounts.
- DirectoryName string
- Fully qualified name of the directory (for example, corp.example.com).
- OrganizationalUnit stringDistinguished Name 
- Distinguished name of the organizational unit for computer accounts.
- directoryName String
- Fully qualified name of the directory (for example, corp.example.com).
- organizationalUnit StringDistinguished Name 
- Distinguished name of the organizational unit for computer accounts.
- directoryName string
- Fully qualified name of the directory (for example, corp.example.com).
- organizationalUnit stringDistinguished Name 
- Distinguished name of the organizational unit for computer accounts.
- directory_name str
- Fully qualified name of the directory (for example, corp.example.com).
- organizational_unit_ strdistinguished_ name 
- Distinguished name of the organizational unit for computer accounts.
- directoryName String
- Fully qualified name of the directory (for example, corp.example.com).
- organizationalUnit StringDistinguished Name 
- Distinguished name of the organizational unit for computer accounts.
ImageBuilderVpcConfig, ImageBuilderVpcConfigArgs        
- SecurityGroup List<string>Ids 
- Identifiers of the security groups for the image builder or image builder.
- SubnetIds List<string>
- Identifier of the subnet to which a network interface is attached from the image builder instance.
- SecurityGroup []stringIds 
- Identifiers of the security groups for the image builder or image builder.
- SubnetIds []string
- Identifier of the subnet to which a network interface is attached from the image builder instance.
- securityGroup List<String>Ids 
- Identifiers of the security groups for the image builder or image builder.
- subnetIds List<String>
- Identifier of the subnet to which a network interface is attached from the image builder instance.
- securityGroup string[]Ids 
- Identifiers of the security groups for the image builder or image builder.
- subnetIds string[]
- Identifier of the subnet to which a network interface is attached from the image builder instance.
- security_group_ Sequence[str]ids 
- Identifiers of the security groups for the image builder or image builder.
- subnet_ids Sequence[str]
- Identifier of the subnet to which a network interface is attached from the image builder instance.
- securityGroup List<String>Ids 
- Identifiers of the security groups for the image builder or image builder.
- subnetIds List<String>
- Identifier of the subnet to which a network interface is attached from the image builder instance.
Import
Using pulumi import, import aws_appstream_image_builder using the name. For example:
$ pulumi import aws:appstream/imageBuilder:ImageBuilder example imageBuilderExample
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the awsTerraform Provider.