Skip to content

Get Project Profile

datazone_get_project_profile R Documentation

The details of the project profile

Description

The details of the project profile.

Usage

datazone_get_project_profile(domainIdentifier, identifier)

Arguments

domainIdentifier

[required] The ID of the domain.

identifier

[required] The ID of the project profile.

Value

A list with the following syntax:

list(
  domainId = "string",
  id = "string",
  name = "string",
  description = "string",
  status = "ENABLED"|"DISABLED",
  projectResourceTags = list(
    list(
      key = "string",
      value = "string",
      isValueEditable = TRUE|FALSE
    )
  ),
  allowCustomProjectResourceTags = TRUE|FALSE,
  projectResourceTagsDescription = "string",
  environmentConfigurations = list(
    list(
      name = "string",
      id = "string",
      environmentBlueprintId = "string",
      description = "string",
      deploymentMode = "ON_CREATE"|"ON_DEMAND",
      configurationParameters = list(
        ssmPath = "string",
        parameterOverrides = list(
          list(
            name = "string",
            value = "string",
            isEditable = TRUE|FALSE
          )
        ),
        resolvedParameters = list(
          list(
            name = "string",
            value = "string",
            isEditable = TRUE|FALSE
          )
        )
      ),
      awsAccount = list(
        awsAccountId = "string",
        awsAccountIdPath = "string"
      ),
      accountPools = list(
        "string"
      ),
      awsRegion = list(
        regionName = "string",
        regionNamePath = "string"
      ),
      deploymentOrder = 123
    )
  ),
  createdBy = "string",
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  lastUpdatedAt = as.POSIXct(
    "2015-01-01"
  ),
  domainUnitId = "string"
)

Request syntax

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