Skip to content

Create Project Profile

datazone_create_project_profile R Documentation

Creates a project profile

Description

Creates a project profile.

Usage

datazone_create_project_profile(description, domainIdentifier,
  domainUnitIdentifier, environmentConfigurations, name, status)

Arguments

description

A description of a project profile.

domainIdentifier

[required] A domain ID of the project profile.

domainUnitIdentifier

A domain unit ID of the project profile.

environmentConfigurations

Environment configurations of the project profile.

name

[required] Project profile name.

status

Project profile status.

Value

A list with the following syntax:

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

Request syntax

svc$create_project_profile(
  description = "string",
  domainIdentifier = "string",
  domainUnitIdentifier = "string",
  environmentConfigurations = list(
    list(
      awsAccount = list(
        awsAccountId = "string",
        awsAccountIdPath = "string"
      ),
      awsRegion = list(
        regionName = "string",
        regionNamePath = "string"
      ),
      configurationParameters = list(
        parameterOverrides = list(
          list(
            isEditable = TRUE|FALSE,
            name = "string",
            value = "string"
          )
        ),
        resolvedParameters = list(
          list(
            isEditable = TRUE|FALSE,
            name = "string",
            value = "string"
          )
        ),
        ssmPath = "string"
      ),
      deploymentMode = "ON_CREATE"|"ON_DEMAND",
      deploymentOrder = 123,
      description = "string",
      environmentBlueprintId = "string",
      id = "string",
      name = "string"
    )
  ),
  name = "string",
  status = "ENABLED"|"DISABLED"
)