Skip to content

Get Environment

datazone_get_environment R Documentation

Gets an Amazon DataZone environment

Description

Gets an Amazon DataZone environment.

Usage

datazone_get_environment(domainIdentifier, identifier)

Arguments

domainIdentifier

[required] The ID of the Amazon DataZone domain where the environment exists.

identifier

[required] The ID of the Amazon DataZone environment.

Value

A list with the following syntax:

list(
  awsAccountId = "string",
  awsAccountRegion = "string",
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  createdBy = "string",
  deploymentProperties = list(
    endTimeoutMinutes = 123,
    startTimeoutMinutes = 123
  ),
  description = "string",
  domainId = "string",
  environmentActions = list(
    list(
      auth = "IAM"|"HTTPS",
      parameters = list(
        list(
          key = "string",
          value = "string"
        )
      ),
      type = "string"
    )
  ),
  environmentBlueprintId = "string",
  environmentProfileId = "string",
  glossaryTerms = list(
    "string"
  ),
  id = "string",
  lastDeployment = list(
    deploymentId = "string",
    deploymentStatus = "IN_PROGRESS"|"SUCCESSFUL"|"FAILED"|"PENDING_DEPLOYMENT",
    deploymentType = "CREATE"|"UPDATE"|"DELETE",
    failureReason = list(
      code = "string",
      message = "string"
    ),
    isDeploymentComplete = TRUE|FALSE,
    messages = list(
      "string"
    )
  ),
  name = "string",
  projectId = "string",
  provider = "string",
  provisionedResources = list(
    list(
      name = "string",
      provider = "string",
      type = "string",
      value = "string"
    )
  ),
  provisioningProperties = list(
    cloudFormation = list(
      templateUrl = "string"
    )
  ),
  status = "ACTIVE"|"CREATING"|"UPDATING"|"DELETING"|"CREATE_FAILED"|"UPDATE_FAILED"|"DELETE_FAILED"|"VALIDATION_FAILED"|"SUSPENDED"|"DISABLED"|"EXPIRED"|"DELETED"|"INACCESSIBLE",
  updatedAt = as.POSIXct(
    "2015-01-01"
  ),
  userParameters = list(
    list(
      defaultValue = "string",
      description = "string",
      fieldType = "string",
      isEditable = TRUE|FALSE,
      isOptional = TRUE|FALSE,
      keyName = "string"
    )
  )
)

Request syntax

svc$get_environment(
  domainIdentifier = "string",
  identifier = "string"
)