Values.CreateProjectRequestSourceCreates a new DataBrew project.
type nonrec t = {datasetName : DatasetName.t;The name of an existing dataset to associate this project with.
*)name : ProjectName.t;A unique name for the new project. Valid characters are alphanumeric (A-Z, a-z, 0-9), hyphen (-), period (.), and space.
*)recipeName : RecipeName.t;The name of an existing recipe to associate with the project.
*)sample : Sample.t option;roleArn : Arn.t;The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role to be assumed for this request.
*)}val make :
?sample:??? ->
?tags:??? ->
datasetName:DatasetName.t ->
name:ProjectName.t ->
recipeName:RecipeName.t ->
roleArn:Arn.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of DatasetName.t
| `Structure of
(string * [> `Enum of string | `Integer of SampleSize.t ]) list ])
list ]