Skip to content

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

gluedatabrew_describe_project(Name)

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"
  )
)

Request syntax

svc$describe_project(
  Name = "string"
)