1. Packages
  2. AWS Native
  3. API Docs
  4. databrew
  5. Project

AWS Native is in preview. AWS Classic is fully supported.

AWS Native v0.102.0 published on Tuesday, Apr 16, 2024 by Pulumi

aws-native.databrew.Project

Explore with Pulumi AI

aws-native logo

AWS Native is in preview. AWS Classic is fully supported.

AWS Native v0.102.0 published on Tuesday, Apr 16, 2024 by Pulumi

    Resource schema for AWS::DataBrew::Project.

    Example Usage

    Example

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AwsNative = Pulumi.AwsNative;
    
    return await Deployment.RunAsync(() => 
    {
        var testDataBrewProject = new AwsNative.DataBrew.Project("testDataBrewProject", new()
        {
            Name = "project-name",
            RecipeName = "recipe-name",
            DatasetName = "dataset-name",
            RoleArn = "arn:aws:iam::12345678910:role/PassRoleAdmin",
            Sample = new AwsNative.DataBrew.Inputs.ProjectSampleArgs
            {
                Size = 500,
                Type = AwsNative.DataBrew.ProjectSampleType.LastN,
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws-native/sdk/go/aws/databrew"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := databrew.NewProject(ctx, "testDataBrewProject", &databrew.ProjectArgs{
    			Name:        pulumi.String("project-name"),
    			RecipeName:  pulumi.String("recipe-name"),
    			DatasetName: pulumi.String("dataset-name"),
    			RoleArn:     pulumi.String("arn:aws:iam::12345678910:role/PassRoleAdmin"),
    			Sample: &databrew.ProjectSampleArgs{
    				Size: pulumi.Int(500),
    				Type: databrew.ProjectSampleTypeLastN,
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Coming soon!

    import pulumi
    import pulumi_aws_native as aws_native
    
    test_data_brew_project = aws_native.databrew.Project("testDataBrewProject",
        name="project-name",
        recipe_name="recipe-name",
        dataset_name="dataset-name",
        role_arn="arn:aws:iam::12345678910:role/PassRoleAdmin",
        sample=aws_native.databrew.ProjectSampleArgs(
            size=500,
            type=aws_native.databrew.ProjectSampleType.LAST_N,
        ))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as aws_native from "@pulumi/aws-native";
    
    const testDataBrewProject = new aws_native.databrew.Project("testDataBrewProject", {
        name: "project-name",
        recipeName: "recipe-name",
        datasetName: "dataset-name",
        roleArn: "arn:aws:iam::12345678910:role/PassRoleAdmin",
        sample: {
            size: 500,
            type: aws_native.databrew.ProjectSampleType.LastN,
        },
    });
    

    Coming soon!

    Example

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AwsNative = Pulumi.AwsNative;
    
    return await Deployment.RunAsync(() => 
    {
        var myDataBrewProject = new AwsNative.DataBrew.Project("myDataBrewProject", new()
        {
            Name = "test-project",
            RecipeName = "test-project-recipe",
            DatasetName = "test-dataset",
            RoleArn = "arn:aws:iam::1234567891011:role/PassRoleAdmin",
            Sample = new AwsNative.DataBrew.Inputs.ProjectSampleArgs
            {
                Size = 500,
                Type = AwsNative.DataBrew.ProjectSampleType.LastN,
            },
            Tags = new[]
            {
                new AwsNative.Inputs.CreateOnlyTagArgs
                {
                    Key = "key00AtCreate",
                    Value = "value001AtCreate",
                },
            },
        });
    
    });
    
    package main
    
    import (
    	awsnative "github.com/pulumi/pulumi-aws-native/sdk/go/aws"
    	"github.com/pulumi/pulumi-aws-native/sdk/go/aws/databrew"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := databrew.NewProject(ctx, "myDataBrewProject", &databrew.ProjectArgs{
    			Name:        pulumi.String("test-project"),
    			RecipeName:  pulumi.String("test-project-recipe"),
    			DatasetName: pulumi.String("test-dataset"),
    			RoleArn:     pulumi.String("arn:aws:iam::1234567891011:role/PassRoleAdmin"),
    			Sample: &databrew.ProjectSampleArgs{
    				Size: pulumi.Int(500),
    				Type: databrew.ProjectSampleTypeLastN,
    			},
    			Tags: aws.CreateOnlyTagArray{
    				&aws.CreateOnlyTagArgs{
    					Key:   pulumi.String("key00AtCreate"),
    					Value: pulumi.String("value001AtCreate"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Coming soon!

    import pulumi
    import pulumi_aws_native as aws_native
    
    my_data_brew_project = aws_native.databrew.Project("myDataBrewProject",
        name="test-project",
        recipe_name="test-project-recipe",
        dataset_name="test-dataset",
        role_arn="arn:aws:iam::1234567891011:role/PassRoleAdmin",
        sample=aws_native.databrew.ProjectSampleArgs(
            size=500,
            type=aws_native.databrew.ProjectSampleType.LAST_N,
        ),
        tags=[aws_native.CreateOnlyTagArgs(
            key="key00AtCreate",
            value="value001AtCreate",
        )])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as aws_native from "@pulumi/aws-native";
    
    const myDataBrewProject = new aws_native.databrew.Project("myDataBrewProject", {
        name: "test-project",
        recipeName: "test-project-recipe",
        datasetName: "test-dataset",
        roleArn: "arn:aws:iam::1234567891011:role/PassRoleAdmin",
        sample: {
            size: 500,
            type: aws_native.databrew.ProjectSampleType.LastN,
        },
        tags: [{
            key: "key00AtCreate",
            value: "value001AtCreate",
        }],
    });
    

    Coming soon!

    Create Project Resource

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

    Constructor syntax

    new Project(name: string, args: ProjectArgs, opts?: CustomResourceOptions);
    @overload
    def Project(resource_name: str,
                args: ProjectArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Project(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                dataset_name: Optional[str] = None,
                recipe_name: Optional[str] = None,
                role_arn: Optional[str] = None,
                name: Optional[str] = None,
                sample: Optional[ProjectSampleArgs] = None,
                tags: Optional[Sequence[_root_inputs.CreateOnlyTagArgs]] = None)
    func NewProject(ctx *Context, name string, args ProjectArgs, opts ...ResourceOption) (*Project, error)
    public Project(string name, ProjectArgs args, CustomResourceOptions? opts = null)
    public Project(String name, ProjectArgs args)
    public Project(String name, ProjectArgs args, CustomResourceOptions options)
    
    type: aws-native:databrew:Project
    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 ProjectArgs
    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 ProjectArgs
    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 ProjectArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ProjectArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ProjectArgs
    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.

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    const projectResource = new aws_native.databrew.Project("projectResource", {
        datasetName: "string",
        recipeName: "string",
        roleArn: "string",
        name: "string",
        sample: {
            type: aws_native.databrew.ProjectSampleType.FirstN,
            size: 0,
        },
        tags: [{
            key: "string",
            value: "string",
        }],
    });
    
    Coming soon!
    

    Project 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 Project resource accepts the following input properties:

    DatasetName string
    Dataset name
    RecipeName string
    Recipe name
    RoleArn string
    Role arn
    Name string
    Project name
    Sample ProjectSampleArgs
    Sample
    Tags CreateOnlyTagArgs
    datasetName String
    Dataset name
    recipeName String
    Recipe name
    roleArn String
    Role arn
    name String
    Project name
    sample ProjectSample
    Sample
    tags List<CreateOnlyTag>
    datasetName string
    Dataset name
    recipeName string
    Recipe name
    roleArn string
    Role arn
    name string
    Project name
    sample ProjectSample
    Sample
    tags CreateOnlyTag[]
    dataset_name str
    Dataset name
    recipe_name str
    Recipe name
    role_arn str
    Role arn
    name str
    Project name
    sample ProjectSampleArgs
    Sample
    tags Sequence[CreateOnlyTagArgs]
    datasetName String
    Dataset name
    recipeName String
    Recipe name
    roleArn String
    Role arn
    name String
    Project name
    sample Property Map
    Sample
    tags List<Property Map>

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Project 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.

    Supporting Types

    CreateOnlyTag, CreateOnlyTagArgs

    Key string
    The key name of the tag
    Value string
    The value of the tag
    Key string
    The key name of the tag
    Value string
    The value of the tag
    key String
    The key name of the tag
    value String
    The value of the tag
    key string
    The key name of the tag
    value string
    The value of the tag
    key str
    The key name of the tag
    value str
    The value of the tag
    key String
    The key name of the tag
    value String
    The value of the tag

    ProjectSample, ProjectSampleArgs

    Type ProjectSampleType
    Sample type
    Size int
    Sample size
    type ProjectSampleType
    Sample type
    size Integer
    Sample size
    type ProjectSampleType
    Sample type
    size number
    Sample size
    type ProjectSampleType
    Sample type
    size int
    Sample size
    type "FIRST_N" | "LAST_N" | "RANDOM"
    Sample type
    size Number
    Sample size

    ProjectSampleType, ProjectSampleTypeArgs

    FirstN
    FIRST_N
    LastN
    LAST_N
    Random
    RANDOM
    ProjectSampleTypeFirstN
    FIRST_N
    ProjectSampleTypeLastN
    LAST_N
    ProjectSampleTypeRandom
    RANDOM
    FirstN
    FIRST_N
    LastN
    LAST_N
    Random
    RANDOM
    FirstN
    FIRST_N
    LastN
    LAST_N
    Random
    RANDOM
    FIRST_N
    FIRST_N
    LAST_N
    LAST_N
    RANDOM
    RANDOM
    "FIRST_N"
    FIRST_N
    "LAST_N"
    LAST_N
    "RANDOM"
    RANDOM

    Package Details

    Repository
    AWS Native pulumi/pulumi-aws-native
    License
    Apache-2.0
    aws-native logo

    AWS Native is in preview. AWS Classic is fully supported.

    AWS Native v0.102.0 published on Tuesday, Apr 16, 2024 by Pulumi