Skip to content

Update Project

datazone_update_project R Documentation

Updates the specified project in Amazon DataZone

Description

Updates the specified project in Amazon DataZone.

Usage

datazone_update_project(description, domainIdentifier, glossaryTerms,
  identifier, name)

Arguments

description

The description to be updated as part of the update_project action.

domainIdentifier

[required] The ID of the Amazon DataZone domain where a project is being updated.

glossaryTerms

The glossary terms to be updated as part of the update_project action.

identifier

[required] The identifier of the project that is to be updated.

name

The name to be updated as part of the update_project action.

Value

A list with the following syntax:

list(
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  createdBy = "string",
  description = "string",
  domainId = "string",
  domainUnitId = "string",
  failureReasons = list(
    list(
      code = "string",
      message = "string"
    )
  ),
  glossaryTerms = list(
    "string"
  ),
  id = "string",
  lastUpdatedAt = as.POSIXct(
    "2015-01-01"
  ),
  name = "string",
  projectStatus = "ACTIVE"|"DELETING"|"DELETE_FAILED"
)

Request syntax

svc$update_project(
  description = "string",
  domainIdentifier = "string",
  glossaryTerms = list(
    "string"
  ),
  identifier = "string",
  name = "string"
)