Module Values.CreateProjectRequestSource

Creates a new DataBrew project.

Sourcetype nonrec t = {
  1. datasetName : DatasetName.t;
    (*

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

    *)
  2. name : ProjectName.t;
    (*

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

    *)
  3. recipeName : RecipeName.t;
    (*

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

    *)
  4. sample : Sample.t option;
  5. roleArn : Arn.t;
    (*

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

    *)
  6. tags : TagMap.t option;
    (*

    Metadata tags to apply to this project.

    *)
}
Sourceval context_ : string
Sourceval make : ?sample:??? -> ?tags:??? -> datasetName:DatasetName.t -> name:ProjectName.t -> recipeName:RecipeName.t -> roleArn:Arn.t -> unit -> t
Sourceval 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 ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t