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,
  environmentDeploymentDetails, 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.

environmentDeploymentDetails

The environment deployment details of the project.

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",
  environmentDeploymentDetails = list(
    environmentFailureReasons = list(
      list(
        list(
          code = "string",
          message = "string"
        )
      )
    ),
    overallDeploymentStatus = "PENDING_DEPLOYMENT"|"IN_PROGRESS"|"SUCCESSFUL"|"FAILED_VALIDATION"|"FAILED_DEPLOYMENT"
  ),
  failureReasons = list(
    list(
      code = "string",
      message = "string"
    )
  ),
  glossaryTerms = list(
    "string"
  ),
  id = "string",
  lastUpdatedAt = as.POSIXct(
    "2015-01-01"
  ),
  name = "string",
  projectProfileId = "string",
  projectStatus = "ACTIVE"|"DELETING"|"DELETE_FAILED",
  userParameters = list(
    list(
      environmentConfigurationName = "string",
      environmentParameters = list(
        list(
          name = "string",
          value = "string"
        )
      )
    )
  )
)

Request syntax

svc$update_project(
  description = "string",
  domainIdentifier = "string",
  environmentDeploymentDetails = list(
    environmentFailureReasons = list(
      list(
        list(
          code = "string",
          message = "string"
        )
      )
    ),
    overallDeploymentStatus = "PENDING_DEPLOYMENT"|"IN_PROGRESS"|"SUCCESSFUL"|"FAILED_VALIDATION"|"FAILED_DEPLOYMENT"
  ),
  glossaryTerms = list(
    "string"
  ),
  identifier = "string",
  name = "string"
)