
com.pulumi.aws.datazone.kotlin.ProjectArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.aws.datazone.kotlin
import com.pulumi.aws.datazone.ProjectArgs.builder
import com.pulumi.aws.datazone.kotlin.inputs.ProjectTimeoutsArgs
import com.pulumi.aws.datazone.kotlin.inputs.ProjectTimeoutsArgsBuilder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Resource for managing an AWS DataZone Project.
* ## Example Usage
*
* ```yaml
* resources:
* test:
* type: aws:datazone:Project
* properties:
* domainId: ${testAwsDatazoneDomain.id}
* glossaryTerms:
* - 2N8w6XJCwZf
* name: name
* description: desc
* skipDeletionCheck: true
* ```
*
* ### Basic Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
* const test = new aws.datazone.Project("test", {
* domainIdentifier: testAwsDatazoneDomain.id,
* name: "name",
* });
* ```
* ```python
* import pulumi
* import pulumi_aws as aws
* test = aws.datazone.Project("test",
* domain_identifier=test_aws_datazone_domain["id"],
* name="name")
* ```
* ```csharp
* using System.Collections.Generic;
* using System.Linq;
* using Pulumi;
* using Aws = Pulumi.Aws;
* return await Deployment.RunAsync(() =>
* {
* var test = new Aws.DataZone.Project("test", new()
* {
* DomainIdentifier = testAwsDatazoneDomain.Id,
* Name = "name",
* });
* });
* ```
* ```go
* package main
* import (
* "github.com/pulumi/pulumi-aws/sdk/v6/go/aws/datazone"
* "github.com/pulumi/pulumi/sdk/v3/go/pulumi"
* )
* func main() {
* pulumi.Run(func(ctx *pulumi.Context) error {
* _, err := datazone.NewProject(ctx, "test", &datazone.ProjectArgs{
* DomainIdentifier: pulumi.Any(testAwsDatazoneDomain.Id),
* Name: pulumi.String("name"),
* })
* if err != nil {
* return err
* }
* return nil
* })
* }
* ```
* ```java
* package generated_program;
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.aws.datazone.Project;
* import com.pulumi.aws.datazone.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()
* .domainIdentifier(testAwsDatazoneDomain.id())
* .name("name")
* .build());
* }
* }
* ```
* ```yaml
* resources:
* test:
* type: aws:datazone:Project
* properties:
* domainIdentifier: ${testAwsDatazoneDomain.id}
* name: name
* ```
*
* ## Import
* Using `pulumi import`, import DataZone Project using a colon-delimited string combining `domain_id` and `id`. For example:
* ```sh
* $ pulumi import aws:datazone/project:Project example domain-1234:project-1234
* ```
* @property description Description of project.
* @property domainIdentifier Identifier of domain which the project is part of. Must follow the regex of `^dzd[-_][a-zA-Z0-9_-]{1,36}$`.
* @property glossaryTerms List of glossary terms that can be used in the project. The list cannot be empty or include over 20 values. Each value must follow the regex of `[a-zA-Z0-9_-]{1,36}$`.
* @property name Name of the project. Must follow the regex of `^[\w -]+$`. and have a length of at most 64.
* The following arguments are optional:
* @property skipDeletionCheck Optional flag to delete all child entities within the project.
* @property timeouts
*/
public data class ProjectArgs(
public val description: Output? = null,
public val domainIdentifier: Output? = null,
public val glossaryTerms: Output>? = null,
public val name: Output? = null,
public val skipDeletionCheck: Output? = null,
public val timeouts: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.aws.datazone.ProjectArgs =
com.pulumi.aws.datazone.ProjectArgs.builder()
.description(description?.applyValue({ args0 -> args0 }))
.domainIdentifier(domainIdentifier?.applyValue({ args0 -> args0 }))
.glossaryTerms(glossaryTerms?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.name(name?.applyValue({ args0 -> args0 }))
.skipDeletionCheck(skipDeletionCheck?.applyValue({ args0 -> args0 }))
.timeouts(timeouts?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) })).build()
}
/**
* Builder for [ProjectArgs].
*/
@PulumiTagMarker
public class ProjectArgsBuilder internal constructor() {
private var description: Output? = null
private var domainIdentifier: Output? = null
private var glossaryTerms: Output>? = null
private var name: Output? = null
private var skipDeletionCheck: Output? = null
private var timeouts: Output? = null
/**
* @param value Description of project.
*/
@JvmName("kdyudqwtnsllkcgn")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value Identifier of domain which the project is part of. Must follow the regex of `^dzd[-_][a-zA-Z0-9_-]{1,36}$`.
*/
@JvmName("kudfuebxlbqkvvyq")
public suspend fun domainIdentifier(`value`: Output) {
this.domainIdentifier = value
}
/**
* @param value List of glossary terms that can be used in the project. The list cannot be empty or include over 20 values. Each value must follow the regex of `[a-zA-Z0-9_-]{1,36}$`.
*/
@JvmName("ithcrnrcbryqqqlt")
public suspend fun glossaryTerms(`value`: Output>) {
this.glossaryTerms = value
}
@JvmName("unoinbdwfmbeqbeo")
public suspend fun glossaryTerms(vararg values: Output) {
this.glossaryTerms = Output.all(values.asList())
}
/**
* @param values List of glossary terms that can be used in the project. The list cannot be empty or include over 20 values. Each value must follow the regex of `[a-zA-Z0-9_-]{1,36}$`.
*/
@JvmName("lmdoeaqkekmybqvb")
public suspend fun glossaryTerms(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy