Skip to content

Create Project

gluedatabrew_create_project R Documentation

Creates a new DataBrew project

Description

Creates a new DataBrew project.

Usage

gluedatabrew_create_project(DatasetName, Name, RecipeName, Sample,
  RoleArn, Tags)

Arguments

DatasetName

[required] The name of an existing dataset to associate this project with.

Name

[required] A unique name for the new project. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.

RecipeName

[required] The name of an existing recipe to associate with the project.

Sample
RoleArn

[required] The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to be assumed for this request.

Tags

Metadata tags to apply to this project.

Value

A list with the following syntax:

list(
  Name = "string"
)

Request syntax

svc$create_project(
  DatasetName = "string",
  Name = "string",
  RecipeName = "string",
  Sample = list(
    Size = 123,
    Type = "FIRST_N"|"LAST_N"|"RANDOM"
  ),
  RoleArn = "string",
  Tags = list(
    "string"
  )
)