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, maxResults, nextToken, sortBy, sortOrder)
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.
maxResultsThe maximum number of subscription targets to return in a single call to
list_subscription_targets. When the number of subscription targets to be listed is greater than the value ofMaxResults, the response contains aNextTokenvalue that you can use in a subsequent call tolist_subscription_targetsto list the next set of subscription targets.nextTokenWhen the number of subscription targets is greater than the default value for the
MaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of subscription targets, the response includes a pagination token namedNextToken. You can specify thisNextTokenvalue in a subsequent call tolist_subscription_targetsto list the next set of subscription targets.sortBySpecifies the way in which the results of this action are to be sorted.
sortOrderSpecifies the sort order for the results of this action.
Value¶
A list with the following syntax:
list(
items = list(
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"
)
),
nextToken = "string"
)