Module Values.ProjectSource

Represents all of the attributes of a DataBrew project.

Sourcetype nonrec t = {
  1. accountId : AccountId.t option;
    (*

    The ID of the Amazon Web Services account that owns the project.

    *)
  2. createDate : Date.t option;
    (*

    The date and time that the project was created.

    *)
  3. createdBy : CreatedBy.t option;
    (*

    The Amazon Resource Name (ARN) of the user who crated the project.

    *)
  4. datasetName : DatasetName.t option;
    (*

    The dataset that the project is to act upon.

    *)
  5. lastModifiedDate : Date.t option;
    (*

    The last modification date and time for the project.

    *)
  6. lastModifiedBy : LastModifiedBy.t option;
    (*

    The Amazon Resource Name (ARN) of the user who last modified the project.

    *)
  7. name : ProjectName.t option;
    (*

    The unique name of a project.

    *)
  8. recipeName : RecipeName.t option;
    (*

    The name of a recipe that will be developed during a project session.

    *)
  9. resourceArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) for the project.

    *)
  10. sample : Sample.t option;
    (*

    The sample size and sampling type to apply to the data. If this parameter isn't specified, then the sample consists of the first 500 rows from the dataset.

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

    Metadata tags that have been applied to the project.

    *)
  12. roleArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the role that will be assumed for this project.

    *)
  13. openedBy : OpenedBy.t option;
    (*

    The Amazon Resource Name (ARN) of the user that opened the project for use.

    *)
  14. openDate : Date.t option;
    (*

    The date and time when the project was opened.

    *)
}
Sourceval make : ?accountId:??? -> ?createDate:??? -> ?createdBy:??? -> ?datasetName:??? -> ?lastModifiedDate:??? -> ?lastModifiedBy:??? -> ?name:??? -> ?recipeName:??? -> ?resourceArn:??? -> ?sample:??? -> ?tags:??? -> ?roleArn:??? -> ?openedBy:??? -> ?openDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of AccountId.t | `Structure of (string * [> `Enum of string | `Integer of SampleSize.t ]) list | `Timestamp of Date.t ]) 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