List Subscription Targets
| datazone_list_subscription_targets | R Documentation |
Lists subscription targets in Amazon DataZone¶
Description¶
Lists subscription targets in Amazon DataZone.
Usage¶
datazone_list_subscription_targets(domainIdentifier,
environmentIdentifier, sortBy, sortOrder, maxResults, nextToken)
Arguments¶
domainIdentifier |
[required] The identifier of the Amazon DataZone domain where you want to list subscription targets. |
environmentIdentifier |
[required] The identifier of the environment where you want to list subscription targets. |
sortBy |
Specifies the way in which the results of this action are to be sorted. |
sortOrder |
Specifies the sort order for the results of this action. |
maxResults |
The maximum number of subscription targets to return in a single
call to |
nextToken |
When the number of subscription targets is greater than the
default value for the |
Value¶
A list with the following syntax:
list(
items = list(
list(
id = "string",
authorizedPrincipals = list(
"string"
),
domainId = "string",
projectId = "string",
environmentId = "string",
name = "string",
type = "string",
createdBy = "string",
updatedBy = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
),
manageAccessRole = "string",
applicableAssetTypes = list(
"string"
),
subscriptionTargetConfig = list(
list(
formName = "string",
content = "string"
)
),
provider = "string",
subscriptionGrantCreationMode = "AUTOMATIC"|"MANUAL"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_subscription_targets(
domainIdentifier = "string",
environmentIdentifier = "string",
sortBy = "CREATED_AT"|"UPDATED_AT",
sortOrder = "ASCENDING"|"DESCENDING",
maxResults = 123,
nextToken = "string"
)