Project

class Project : KotlinCustomResource

Resource for managing an AWS CodeCatalyst Project.

Example Usage

Basic Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.codecatalyst.Project;
import com.pulumi.aws.codecatalyst.ProjectArgs;
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 Project("test", ProjectArgs.builder()
.description("My CodeCatalyst Project created using Pulumi")
.displayName("MyProject")
.spaceName("myproject")
.build());
}
}

Import

Using pulumi import, import CodeCatalyst Project using the example_id_arg. For example:

$ pulumi import aws:codecatalyst/project:Project example project-id-12345678

Properties

Link copied to clipboard
val description: Output<String>?

The description of the project. This description will be displayed to all users of the project. We recommend providing a brief description of the project and its intended purpose.

Link copied to clipboard
val displayName: Output<String>

The friendly name of the project that will be displayed to users. The following arguments are optional:

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<String>

The name of the project in the space.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val spaceName: Output<String>

The name of the space.

Link copied to clipboard
val urn: Output<String>