Describe Project
gluedatabrew_describe_project | R Documentation |
Returns the definition of a specific DataBrew project¶
Description¶
Returns the definition of a specific DataBrew project.
Usage¶
Arguments¶
Name
[required] The name of the project to be described.
Value¶
A list with the following syntax:
list(
CreateDate = as.POSIXct(
"2015-01-01"
),
CreatedBy = "string",
DatasetName = "string",
LastModifiedDate = as.POSIXct(
"2015-01-01"
),
LastModifiedBy = "string",
Name = "string",
RecipeName = "string",
ResourceArn = "string",
Sample = list(
Size = 123,
Type = "FIRST_N"|"LAST_N"|"RANDOM"
),
RoleArn = "string",
Tags = list(
"string"
),
SessionStatus = "ASSIGNED"|"FAILED"|"INITIALIZING"|"PROVISIONING"|"READY"|"RECYCLING"|"ROTATING"|"TERMINATED"|"TERMINATING"|"UPDATING",
OpenedBy = "string",
OpenDate = as.POSIXct(
"2015-01-01"
)
)