Module Values.DescribeProjectResponseSource

Returns the definition of a specific DataBrew project.

Sourcetype nonrec t = {
  1. createDate : Date.t option;
    (*

    The date and time that the project was created.

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

    The identifier (user name) of the user who created the project.

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

    The dataset associated with the project.

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

    The date and time that the project was last modified.

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

    The identifier (user name) of the user who last modified the project.

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

    The name of the project.

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

    The recipe associated with this job.

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

    The Amazon Resource Name (ARN) of the project.

    *)
  9. sample : Sample.t option;
  10. roleArn : Arn.t option;
    (*

    The ARN of the Identity and Access Management (IAM) role to be assumed when DataBrew runs the job.

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

    Metadata tags associated with this project.

    *)
  12. sessionStatus : SessionStatus.t option;
    (*

    Describes the current state of the session: PROVISIONING - allocating resources for the session. INITIALIZING - getting the session ready for first use. ASSIGNED - the session is ready for use.

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

    The identifier (user name) of the user that opened the project for use.

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

    The date and time when the project was opened.

    *)
}
Sourcetype nonrec error = [
  1. | `ResourceNotFoundException of ResourceNotFoundException.t
  2. | `ValidationException of ValidationException.t
  3. | `Unknown_operation_error of string * string option
]
Sourceval make : ?createDate:??? -> ?createdBy:??? -> ?datasetName:??? -> ?lastModifiedDate:??? -> ?lastModifiedBy:??? -> ?name:??? -> ?recipeName:??? -> ?resourceArn:??? -> ?sample:??? -> ?roleArn:??? -> ?tags:??? -> ?sessionStatus:??? -> ?openedBy:??? -> ?openDate:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of CreatedBy.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