aws.codecatalyst.DevEnvironment
Explore with Pulumi AI
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={
        "size": 16,
    },
    ides={
        "name": "PyCharm",
        "runtime": "public.ecr.aws/jetbrains/py",
    },
    inactivity_timeout_minutes=40,
    repositories=[{
        "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.
Constructor 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={
        "name": "string",
        "runtime": "string",
    },
    instance_type="string",
    persistent_storage={
        "size": 0,
    },
    project_name="string",
    space_name="string",
    alias="string",
    inactivity_timeout_minutes=0,
    repositories=[{
        "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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The DevEnvironment resource accepts the following input properties:
- Ides
DevEnvironment Ides 
- 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 DevEnvironment Persistent Storage 
- 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
- InactivityTimeout intMinutes 
- 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<DevEnvironment Repository> 
- The source repository that contains the branch to clone into the Dev Environment.
- Ides
DevEnvironment Ides Args 
- 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 DevEnvironment Persistent Storage Args 
- 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
- InactivityTimeout intMinutes 
- 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
[]DevEnvironment Repository Args 
- The source repository that contains the branch to clone into the Dev Environment.
- ides
DevEnvironment Ides 
- 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 DevEnvironment Persistent Storage 
- 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
- inactivityTimeout IntegerMinutes 
- 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<DevEnvironment Repository> 
- The source repository that contains the branch to clone into the Dev Environment.
- ides
DevEnvironment Ides 
- 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 DevEnvironment Persistent Storage 
- 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
- inactivityTimeout numberMinutes 
- 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
DevEnvironment Repository[] 
- The source repository that contains the branch to clone into the Dev Environment.
- ides
DevEnvironment Ides Args 
- 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 DevEnvironment Persistent Storage Args 
- 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_ intminutes 
- 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[DevEnvironment Repository Args] 
- 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
- inactivityTimeout NumberMinutes 
- 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) -> DevEnvironmentfunc 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)resources:  _:    type: aws:codecatalyst:DevEnvironment    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.
- Alias string
- Ides
DevEnvironment Ides 
- Information about the integrated development environment (IDE) configured for a Dev Environment.
- InactivityTimeout intMinutes 
- 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 DevEnvironment Persistent Storage 
- Information about the amount of storage allocated to the Dev Environment.
- ProjectName string
- The name of the project in the space.
- Repositories
List<DevEnvironment Repository> 
- The source repository that contains the branch to clone into the Dev Environment.
- SpaceName string
- The name of the space.
- Alias string
- Ides
DevEnvironment Ides Args 
- Information about the integrated development environment (IDE) configured for a Dev Environment.
- InactivityTimeout intMinutes 
- 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 DevEnvironment Persistent Storage Args 
- Information about the amount of storage allocated to the Dev Environment.
- ProjectName string
- The name of the project in the space.
- Repositories
[]DevEnvironment Repository Args 
- The source repository that contains the branch to clone into the Dev Environment.
- SpaceName string
- The name of the space.
- alias String
- ides
DevEnvironment Ides 
- Information about the integrated development environment (IDE) configured for a Dev Environment.
- inactivityTimeout IntegerMinutes 
- 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 DevEnvironment Persistent Storage 
- Information about the amount of storage allocated to the Dev Environment.
- projectName String
- The name of the project in the space.
- repositories
List<DevEnvironment Repository> 
- The source repository that contains the branch to clone into the Dev Environment.
- spaceName String
- The name of the space.
- alias string
- ides
DevEnvironment Ides 
- Information about the integrated development environment (IDE) configured for a Dev Environment.
- inactivityTimeout numberMinutes 
- 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 DevEnvironment Persistent Storage 
- Information about the amount of storage allocated to the Dev Environment.
- projectName string
- The name of the project in the space.
- repositories
DevEnvironment Repository[] 
- The source repository that contains the branch to clone into the Dev Environment.
- spaceName string
- The name of the space.
- alias str
- ides
DevEnvironment Ides Args 
- Information about the integrated development environment (IDE) configured for a Dev Environment.
- inactivity_timeout_ intminutes 
- 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 DevEnvironment Persistent Storage Args 
- Information about the amount of storage allocated to the Dev Environment.
- project_name str
- The name of the project in the space.
- repositories
Sequence[DevEnvironment Repository Args] 
- 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.
- inactivityTimeout NumberMinutes 
- 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      
DevEnvironmentPersistentStorage, DevEnvironmentPersistentStorageArgs        
- Size int
- The size of the persistent storage in gigabytes (specifically GiB). Valid values for storage are based on memory sizes in 16GB increments. Valid values are 16, 32, and 64.
- Size int
- The size of the persistent storage in gigabytes (specifically GiB). Valid values for storage are based on memory sizes in 16GB increments. Valid values are 16, 32, and 64.
- size Integer
- The size of the persistent storage in gigabytes (specifically GiB). Valid values for storage are based on memory sizes in 16GB increments. Valid values are 16, 32, and 64.
- size number
- The size of the persistent storage in gigabytes (specifically GiB). Valid values for storage are based on memory sizes in 16GB increments. Valid values are 16, 32, and 64.
- size int
- The size of the persistent storage in gigabytes (specifically GiB). Valid values for storage are based on memory sizes in 16GB increments. Valid values are 16, 32, and 64.
- size Number
- The size of the persistent storage in gigabytes (specifically GiB). Valid values for storage are based on memory sizes in 16GB increments. Valid values are 16, 32, and 64.
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 awsTerraform Provider.