Skip to content

Create Subscription Target

datazone_create_subscription_target R Documentation

Creates a subscription target in Amazon DataZone

Description

Creates a subscription target in Amazon DataZone.

Usage

datazone_create_subscription_target(applicableAssetTypes,
  authorizedPrincipals, clientToken, domainIdentifier,
  environmentIdentifier, manageAccessRole, name, provider,
  subscriptionTargetConfig, type)

Arguments

applicableAssetTypes

[required] The asset types that can be included in the subscription target.

authorizedPrincipals

[required] The authorized principals of the subscription target.

clientToken

A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.

domainIdentifier

[required] The ID of the Amazon DataZone domain in which subscription target is created.

environmentIdentifier

[required] The ID of the environment in which subscription target is created.

manageAccessRole

[required] The manage access role that is used to create the subscription target.

name

[required] The name of the subscription target.

provider

The provider of the subscription target.

subscriptionTargetConfig

[required] The configuration of the subscription target.

type

[required] The type of the subscription target.

Value

A list with the following syntax:

list(
  applicableAssetTypes = list(
    "string"
  ),
  authorizedPrincipals = list(
    "string"
  ),
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  createdBy = "string",
  domainId = "string",
  environmentId = "string",
  id = "string",
  manageAccessRole = "string",
  name = "string",
  projectId = "string",
  provider = "string",
  subscriptionTargetConfig = list(
    list(
      content = "string",
      formName = "string"
    )
  ),
  type = "string",
  updatedAt = as.POSIXct(
    "2015-01-01"
  ),
  updatedBy = "string"
)

Request syntax

svc$create_subscription_target(
  applicableAssetTypes = list(
    "string"
  ),
  authorizedPrincipals = list(
    "string"
  ),
  clientToken = "string",
  domainIdentifier = "string",
  environmentIdentifier = "string",
  manageAccessRole = "string",
  name = "string",
  provider = "string",
  subscriptionTargetConfig = list(
    list(
      content = "string",
      formName = "string"
    )
  ),
  type = "string"
)