1. Packages
  2. AWS Classic
  3. API Docs
  4. codecatalyst
  5. DevEnvironment

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.36.0 published on Wednesday, May 15, 2024 by Pulumi

aws.codecatalyst.DevEnvironment

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.36.0 published on Wednesday, May 15, 2024 by Pulumi

    Resource for managing an AWS CodeCatalyst Dev Environment.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const test = new aws.codecatalyst.DevEnvironment("test", {
        alias: "devenv",
        spaceName: "myspace",
        projectName: "myproject",
        instanceType: "dev.standard1.small",
        persistentStorage: {
            size: 16,
        },
        ides: {
            name: "PyCharm",
            runtime: "public.ecr.aws/jetbrains/py",
        },
        inactivityTimeoutMinutes: 40,
        repositories: [{
            repositoryName: "pulumi-provider-aws",
            branchName: "main",
        }],
    });
    
    import pulumi
    import pulumi_aws as aws
    
    test = aws.codecatalyst.DevEnvironment("test",
        alias="devenv",
        space_name="myspace",
        project_name="myproject",
        instance_type="dev.standard1.small",
        persistent_storage=aws.codecatalyst.DevEnvironmentPersistentStorageArgs(
            size=16,
        ),
        ides=aws.codecatalyst.DevEnvironmentIdesArgs(
            name="PyCharm",
            runtime="public.ecr.aws/jetbrains/py",
        ),
        inactivity_timeout_minutes=40,
        repositories=[aws.codecatalyst.DevEnvironmentRepositoryArgs(
            repository_name="pulumi-provider-aws",
            branch_name="main",
        )])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/codecatalyst"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := codecatalyst.NewDevEnvironment(ctx, "test", &codecatalyst.DevEnvironmentArgs{
    			Alias:        pulumi.String("devenv"),
    			SpaceName:    pulumi.String("myspace"),
    			ProjectName:  pulumi.String("myproject"),
    			InstanceType: pulumi.String("dev.standard1.small"),
    			PersistentStorage: &codecatalyst.DevEnvironmentPersistentStorageArgs{
    				Size: pulumi.Int(16),
    			},
    			Ides: &codecatalyst.DevEnvironmentIdesArgs{
    				Name:    pulumi.String("PyCharm"),
    				Runtime: pulumi.String("public.ecr.aws/jetbrains/py"),
    			},
    			InactivityTimeoutMinutes: pulumi.Int(40),
    			Repositories: codecatalyst.DevEnvironmentRepositoryArray{
    				&codecatalyst.DevEnvironmentRepositoryArgs{
    					RepositoryName: pulumi.String("pulumi-provider-aws"),
    					BranchName:     pulumi.String("main"),
    				},
    			},
    		})
    		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 test = new Aws.CodeCatalyst.DevEnvironment("test", new()
        {
            Alias = "devenv",
            SpaceName = "myspace",
            ProjectName = "myproject",
            InstanceType = "dev.standard1.small",
            PersistentStorage = new Aws.CodeCatalyst.Inputs.DevEnvironmentPersistentStorageArgs
            {
                Size = 16,
            },
            Ides = new Aws.CodeCatalyst.Inputs.DevEnvironmentIdesArgs
            {
                Name = "PyCharm",
                Runtime = "public.ecr.aws/jetbrains/py",
            },
            InactivityTimeoutMinutes = 40,
            Repositories = new[]
            {
                new Aws.CodeCatalyst.Inputs.DevEnvironmentRepositoryArgs
                {
                    RepositoryName = "pulumi-provider-aws",
                    BranchName = "main",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.codecatalyst.DevEnvironment;
    import com.pulumi.aws.codecatalyst.DevEnvironmentArgs;
    import com.pulumi.aws.codecatalyst.inputs.DevEnvironmentPersistentStorageArgs;
    import com.pulumi.aws.codecatalyst.inputs.DevEnvironmentIdesArgs;
    import com.pulumi.aws.codecatalyst.inputs.DevEnvironmentRepositoryArgs;
    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 test = new DevEnvironment("test", DevEnvironmentArgs.builder()        
                .alias("devenv")
                .spaceName("myspace")
                .projectName("myproject")
                .instanceType("dev.standard1.small")
                .persistentStorage(DevEnvironmentPersistentStorageArgs.builder()
                    .size(16)
                    .build())
                .ides(DevEnvironmentIdesArgs.builder()
                    .name("PyCharm")
                    .runtime("public.ecr.aws/jetbrains/py")
                    .build())
                .inactivityTimeoutMinutes(40)
                .repositories(DevEnvironmentRepositoryArgs.builder()
                    .repositoryName("pulumi-provider-aws")
                    .branchName("main")
                    .build())
                .build());
    
        }
    }
    
    resources:
      test:
        type: aws:codecatalyst:DevEnvironment
        properties:
          alias: devenv
          spaceName: myspace
          projectName: myproject
          instanceType: dev.standard1.small
          persistentStorage:
            size: 16
          ides:
            name: PyCharm
            runtime: public.ecr.aws/jetbrains/py
          inactivityTimeoutMinutes: 40
          repositories:
            - repositoryName: pulumi-provider-aws
              branchName: main
    

    Create DevEnvironment Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new DevEnvironment(name: string, args: DevEnvironmentArgs, opts?: CustomResourceOptions);
    @overload
    def DevEnvironment(resource_name: str,
                       args: DevEnvironmentArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def DevEnvironment(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       ides: Optional[DevEnvironmentIdesArgs] = None,
                       instance_type: Optional[str] = None,
                       persistent_storage: Optional[DevEnvironmentPersistentStorageArgs] = None,
                       project_name: Optional[str] = None,
                       space_name: Optional[str] = None,
                       alias: Optional[str] = None,
                       inactivity_timeout_minutes: Optional[int] = None,
                       repositories: Optional[Sequence[DevEnvironmentRepositoryArgs]] = None)
    func NewDevEnvironment(ctx *Context, name string, args DevEnvironmentArgs, opts ...ResourceOption) (*DevEnvironment, error)
    public DevEnvironment(string name, DevEnvironmentArgs args, CustomResourceOptions? opts = null)
    public DevEnvironment(String name, DevEnvironmentArgs args)
    public DevEnvironment(String name, DevEnvironmentArgs args, CustomResourceOptions options)
    
    type: aws:codecatalyst:DevEnvironment
    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 DevEnvironmentArgs
    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 DevEnvironmentArgs
    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 DevEnvironmentArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DevEnvironmentArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DevEnvironmentArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var devEnvironmentResource = new Aws.CodeCatalyst.DevEnvironment("devEnvironmentResource", new()
    {
        Ides = new Aws.CodeCatalyst.Inputs.DevEnvironmentIdesArgs
        {
            Name = "string",
            Runtime = "string",
        },
        InstanceType = "string",
        PersistentStorage = new Aws.CodeCatalyst.Inputs.DevEnvironmentPersistentStorageArgs
        {
            Size = 0,
        },
        ProjectName = "string",
        SpaceName = "string",
        Alias = "string",
        InactivityTimeoutMinutes = 0,
        Repositories = new[]
        {
            new Aws.CodeCatalyst.Inputs.DevEnvironmentRepositoryArgs
            {
                RepositoryName = "string",
                BranchName = "string",
            },
        },
    });
    
    example, err := codecatalyst.NewDevEnvironment(ctx, "devEnvironmentResource", &codecatalyst.DevEnvironmentArgs{
    	Ides: &codecatalyst.DevEnvironmentIdesArgs{
    		Name:    pulumi.String("string"),
    		Runtime: pulumi.String("string"),
    	},
    	InstanceType: pulumi.String("string"),
    	PersistentStorage: &codecatalyst.DevEnvironmentPersistentStorageArgs{
    		Size: pulumi.Int(0),
    	},
    	ProjectName:              pulumi.String("string"),
    	SpaceName:                pulumi.String("string"),
    	Alias:                    pulumi.String("string"),
    	InactivityTimeoutMinutes: pulumi.Int(0),
    	Repositories: codecatalyst.DevEnvironmentRepositoryArray{
    		&codecatalyst.DevEnvironmentRepositoryArgs{
    			RepositoryName: pulumi.String("string"),
    			BranchName:     pulumi.String("string"),
    		},
    	},
    })
    
    var devEnvironmentResource = new DevEnvironment("devEnvironmentResource", DevEnvironmentArgs.builder()        
        .ides(DevEnvironmentIdesArgs.builder()
            .name("string")
            .runtime("string")
            .build())
        .instanceType("string")
        .persistentStorage(DevEnvironmentPersistentStorageArgs.builder()
            .size(0)
            .build())
        .projectName("string")
        .spaceName("string")
        .alias("string")
        .inactivityTimeoutMinutes(0)
        .repositories(DevEnvironmentRepositoryArgs.builder()
            .repositoryName("string")
            .branchName("string")
            .build())
        .build());
    
    dev_environment_resource = aws.codecatalyst.DevEnvironment("devEnvironmentResource",
        ides=aws.codecatalyst.DevEnvironmentIdesArgs(
            name="string",
            runtime="string",
        ),
        instance_type="string",
        persistent_storage=aws.codecatalyst.DevEnvironmentPersistentStorageArgs(
            size=0,
        ),
        project_name="string",
        space_name="string",
        alias="string",
        inactivity_timeout_minutes=0,
        repositories=[aws.codecatalyst.DevEnvironmentRepositoryArgs(
            repository_name="string",
            branch_name="string",
        )])
    
    const devEnvironmentResource = new aws.codecatalyst.DevEnvironment("devEnvironmentResource", {
        ides: {
            name: "string",
            runtime: "string",
        },
        instanceType: "string",
        persistentStorage: {
            size: 0,
        },
        projectName: "string",
        spaceName: "string",
        alias: "string",
        inactivityTimeoutMinutes: 0,
        repositories: [{
            repositoryName: "string",
            branchName: "string",
        }],
    });
    
    type: aws:codecatalyst:DevEnvironment
    properties:
        alias: string
        ides:
            name: string
            runtime: string
        inactivityTimeoutMinutes: 0
        instanceType: string
        persistentStorage:
            size: 0
        projectName: string
        repositories:
            - branchName: string
              repositoryName: string
        spaceName: string
    

    DevEnvironment Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The DevEnvironment resource accepts the following input properties:

    Ides DevEnvironmentIdes
    Information about the integrated development environment (IDE) configured for a Dev Environment.
    InstanceType string

    The Amazon EC2 instace type to use for the Dev Environment. Valid values include dev.standard1.small,dev.standard1.medium,dev.standard1.large,dev.standard1.xlarge

    The following arguments are optional:

    PersistentStorage DevEnvironmentPersistentStorage
    Information about the amount of storage allocated to the Dev Environment.
    ProjectName string
    The name of the project in the space.
    SpaceName string
    The name of the space.
    Alias string
    InactivityTimeoutMinutes int
    The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.
    Repositories List<DevEnvironmentRepository>
    The source repository that contains the branch to clone into the Dev Environment.
    Ides DevEnvironmentIdesArgs
    Information about the integrated development environment (IDE) configured for a Dev Environment.
    InstanceType string

    The Amazon EC2 instace type to use for the Dev Environment. Valid values include dev.standard1.small,dev.standard1.medium,dev.standard1.large,dev.standard1.xlarge

    The following arguments are optional:

    PersistentStorage DevEnvironmentPersistentStorageArgs
    Information about the amount of storage allocated to the Dev Environment.
    ProjectName string
    The name of the project in the space.
    SpaceName string
    The name of the space.
    Alias string
    InactivityTimeoutMinutes int
    The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.
    Repositories []DevEnvironmentRepositoryArgs
    The source repository that contains the branch to clone into the Dev Environment.
    ides DevEnvironmentIdes
    Information about the integrated development environment (IDE) configured for a Dev Environment.
    instanceType String

    The Amazon EC2 instace type to use for the Dev Environment. Valid values include dev.standard1.small,dev.standard1.medium,dev.standard1.large,dev.standard1.xlarge

    The following arguments are optional:

    persistentStorage DevEnvironmentPersistentStorage
    Information about the amount of storage allocated to the Dev Environment.
    projectName String
    The name of the project in the space.
    spaceName String
    The name of the space.
    alias String
    inactivityTimeoutMinutes Integer
    The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.
    repositories List<DevEnvironmentRepository>
    The source repository that contains the branch to clone into the Dev Environment.
    ides DevEnvironmentIdes
    Information about the integrated development environment (IDE) configured for a Dev Environment.
    instanceType string

    The Amazon EC2 instace type to use for the Dev Environment. Valid values include dev.standard1.small,dev.standard1.medium,dev.standard1.large,dev.standard1.xlarge

    The following arguments are optional:

    persistentStorage DevEnvironmentPersistentStorage
    Information about the amount of storage allocated to the Dev Environment.
    projectName string
    The name of the project in the space.
    spaceName string
    The name of the space.
    alias string
    inactivityTimeoutMinutes number
    The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.
    repositories DevEnvironmentRepository[]
    The source repository that contains the branch to clone into the Dev Environment.
    ides DevEnvironmentIdesArgs
    Information about the integrated development environment (IDE) configured for a Dev Environment.
    instance_type str

    The Amazon EC2 instace type to use for the Dev Environment. Valid values include dev.standard1.small,dev.standard1.medium,dev.standard1.large,dev.standard1.xlarge

    The following arguments are optional:

    persistent_storage DevEnvironmentPersistentStorageArgs
    Information about the amount of storage allocated to the Dev Environment.
    project_name str
    The name of the project in the space.
    space_name str
    The name of the space.
    alias str
    inactivity_timeout_minutes int
    The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.
    repositories Sequence[DevEnvironmentRepositoryArgs]
    The source repository that contains the branch to clone into the Dev Environment.
    ides Property Map
    Information about the integrated development environment (IDE) configured for a Dev Environment.
    instanceType String

    The Amazon EC2 instace type to use for the Dev Environment. Valid values include dev.standard1.small,dev.standard1.medium,dev.standard1.large,dev.standard1.xlarge

    The following arguments are optional:

    persistentStorage Property Map
    Information about the amount of storage allocated to the Dev Environment.
    projectName String
    The name of the project in the space.
    spaceName String
    The name of the space.
    alias String
    inactivityTimeoutMinutes Number
    The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.
    repositories List<Property Map>
    The source repository that contains the branch to clone into the Dev Environment.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DevEnvironment resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing DevEnvironment Resource

    Get an existing DevEnvironment 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?: DevEnvironmentState, opts?: CustomResourceOptions): DevEnvironment
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            alias: Optional[str] = None,
            ides: Optional[DevEnvironmentIdesArgs] = None,
            inactivity_timeout_minutes: Optional[int] = None,
            instance_type: Optional[str] = None,
            persistent_storage: Optional[DevEnvironmentPersistentStorageArgs] = None,
            project_name: Optional[str] = None,
            repositories: Optional[Sequence[DevEnvironmentRepositoryArgs]] = None,
            space_name: Optional[str] = None) -> DevEnvironment
    func GetDevEnvironment(ctx *Context, name string, id IDInput, state *DevEnvironmentState, opts ...ResourceOption) (*DevEnvironment, error)
    public static DevEnvironment Get(string name, Input<string> id, DevEnvironmentState? state, CustomResourceOptions? opts = null)
    public static DevEnvironment get(String name, Output<String> id, DevEnvironmentState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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.
    The following state arguments are supported:
    Alias string
    Ides DevEnvironmentIdes
    Information about the integrated development environment (IDE) configured for a Dev Environment.
    InactivityTimeoutMinutes int
    The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.
    InstanceType string

    The Amazon EC2 instace type to use for the Dev Environment. Valid values include dev.standard1.small,dev.standard1.medium,dev.standard1.large,dev.standard1.xlarge

    The following arguments are optional:

    PersistentStorage DevEnvironmentPersistentStorage
    Information about the amount of storage allocated to the Dev Environment.
    ProjectName string
    The name of the project in the space.
    Repositories List<DevEnvironmentRepository>
    The source repository that contains the branch to clone into the Dev Environment.
    SpaceName string
    The name of the space.
    Alias string
    Ides DevEnvironmentIdesArgs
    Information about the integrated development environment (IDE) configured for a Dev Environment.
    InactivityTimeoutMinutes int
    The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.
    InstanceType string

    The Amazon EC2 instace type to use for the Dev Environment. Valid values include dev.standard1.small,dev.standard1.medium,dev.standard1.large,dev.standard1.xlarge

    The following arguments are optional:

    PersistentStorage DevEnvironmentPersistentStorageArgs
    Information about the amount of storage allocated to the Dev Environment.
    ProjectName string
    The name of the project in the space.
    Repositories []DevEnvironmentRepositoryArgs
    The source repository that contains the branch to clone into the Dev Environment.
    SpaceName string
    The name of the space.
    alias String
    ides DevEnvironmentIdes
    Information about the integrated development environment (IDE) configured for a Dev Environment.
    inactivityTimeoutMinutes Integer
    The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.
    instanceType String

    The Amazon EC2 instace type to use for the Dev Environment. Valid values include dev.standard1.small,dev.standard1.medium,dev.standard1.large,dev.standard1.xlarge

    The following arguments are optional:

    persistentStorage DevEnvironmentPersistentStorage
    Information about the amount of storage allocated to the Dev Environment.
    projectName String
    The name of the project in the space.
    repositories List<DevEnvironmentRepository>
    The source repository that contains the branch to clone into the Dev Environment.
    spaceName String
    The name of the space.
    alias string
    ides DevEnvironmentIdes
    Information about the integrated development environment (IDE) configured for a Dev Environment.
    inactivityTimeoutMinutes number
    The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.
    instanceType string

    The Amazon EC2 instace type to use for the Dev Environment. Valid values include dev.standard1.small,dev.standard1.medium,dev.standard1.large,dev.standard1.xlarge

    The following arguments are optional:

    persistentStorage DevEnvironmentPersistentStorage
    Information about the amount of storage allocated to the Dev Environment.
    projectName string
    The name of the project in the space.
    repositories DevEnvironmentRepository[]
    The source repository that contains the branch to clone into the Dev Environment.
    spaceName string
    The name of the space.
    alias str
    ides DevEnvironmentIdesArgs
    Information about the integrated development environment (IDE) configured for a Dev Environment.
    inactivity_timeout_minutes int
    The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.
    instance_type str

    The Amazon EC2 instace type to use for the Dev Environment. Valid values include dev.standard1.small,dev.standard1.medium,dev.standard1.large,dev.standard1.xlarge

    The following arguments are optional:

    persistent_storage DevEnvironmentPersistentStorageArgs
    Information about the amount of storage allocated to the Dev Environment.
    project_name str
    The name of the project in the space.
    repositories Sequence[DevEnvironmentRepositoryArgs]
    The source repository that contains the branch to clone into the Dev Environment.
    space_name str
    The name of the space.
    alias String
    ides Property Map
    Information about the integrated development environment (IDE) configured for a Dev Environment.
    inactivityTimeoutMinutes Number
    The amount of time the Dev Environment will run without any activity detected before stopping, in minutes. Only whole integers are allowed. Dev Environments consume compute minutes when running.
    instanceType String

    The Amazon EC2 instace type to use for the Dev Environment. Valid values include dev.standard1.small,dev.standard1.medium,dev.standard1.large,dev.standard1.xlarge

    The following arguments are optional:

    persistentStorage Property Map
    Information about the amount of storage allocated to the Dev Environment.
    projectName String
    The name of the project in the space.
    repositories List<Property Map>
    The source repository that contains the branch to clone into the Dev Environment.
    spaceName String
    The name of the space.

    Supporting Types

    DevEnvironmentIdes, DevEnvironmentIdesArgs

    Name string
    The name of the IDE. Valid values include Cloud9, IntelliJ, PyCharm, GoLand, and VSCode.
    Runtime string
    A link to the IDE runtime image. This parameter is not required if the name is VSCode. Values of the runtime can be for example public.ecr.aws/jetbrains/py,public.ecr.aws/jetbrains/go
    Name string
    The name of the IDE. Valid values include Cloud9, IntelliJ, PyCharm, GoLand, and VSCode.
    Runtime string
    A link to the IDE runtime image. This parameter is not required if the name is VSCode. Values of the runtime can be for example public.ecr.aws/jetbrains/py,public.ecr.aws/jetbrains/go
    name String
    The name of the IDE. Valid values include Cloud9, IntelliJ, PyCharm, GoLand, and VSCode.
    runtime String
    A link to the IDE runtime image. This parameter is not required if the name is VSCode. Values of the runtime can be for example public.ecr.aws/jetbrains/py,public.ecr.aws/jetbrains/go
    name string
    The name of the IDE. Valid values include Cloud9, IntelliJ, PyCharm, GoLand, and VSCode.
    runtime string
    A link to the IDE runtime image. This parameter is not required if the name is VSCode. Values of the runtime can be for example public.ecr.aws/jetbrains/py,public.ecr.aws/jetbrains/go
    name str
    The name of the IDE. Valid values include Cloud9, IntelliJ, PyCharm, GoLand, and VSCode.
    runtime str
    A link to the IDE runtime image. This parameter is not required if the name is VSCode. Values of the runtime can be for example public.ecr.aws/jetbrains/py,public.ecr.aws/jetbrains/go
    name String
    The name of the IDE. Valid values include Cloud9, IntelliJ, PyCharm, GoLand, and VSCode.
    runtime String
    A link to the IDE runtime image. This parameter is not required if the name is VSCode. Values of the runtime can be for example public.ecr.aws/jetbrains/py,public.ecr.aws/jetbrains/go

    DevEnvironmentPersistentStorage, DevEnvironmentPersistentStorageArgs

    Size int
    Size int
    size Integer
    size number
    size int
    size Number

    DevEnvironmentRepository, DevEnvironmentRepositoryArgs

    RepositoryName string
    The name of the source repository.
    BranchName string

    The name of the branch in a source repository.

    persistent storage ( persistent_storage) supports the following:

    RepositoryName string
    The name of the source repository.
    BranchName string

    The name of the branch in a source repository.

    persistent storage ( persistent_storage) supports the following:

    repositoryName String
    The name of the source repository.
    branchName String

    The name of the branch in a source repository.

    persistent storage ( persistent_storage) supports the following:

    repositoryName string
    The name of the source repository.
    branchName string

    The name of the branch in a source repository.

    persistent storage ( persistent_storage) supports the following:

    repository_name str
    The name of the source repository.
    branch_name str

    The name of the branch in a source repository.

    persistent storage ( persistent_storage) supports the following:

    repositoryName String
    The name of the source repository.
    branchName String

    The name of the branch in a source repository.

    persistent storage ( persistent_storage) supports the following:

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.36.0 published on Wednesday, May 15, 2024 by Pulumi