List Subscription Requests
| datazone_list_subscription_requests | R Documentation |
Lists Amazon DataZone subscription requests¶
Description¶
Lists Amazon DataZone subscription requests.
Usage¶
datazone_list_subscription_requests(approverProjectId, domainIdentifier,
maxResults, nextToken, owningProjectId, sortBy, sortOrder, status,
subscribedListingId)
Arguments¶
approverProjectIdThe identifier of the subscription request approver's project.
domainIdentifier[required] The identifier of the Amazon DataZone domain.
maxResultsThe maximum number of subscription requests to return in a single call to
list_subscription_requests. When the number of subscription requests to be listed is greater than the value ofMaxResults, the response contains aNextTokenvalue that you can use in a subsequent call tolist_subscription_requeststo list the next set of subscription requests.nextTokenWhen the number of subscription requests is greater than the default value for the
MaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of subscription requests, the response includes a pagination token namedNextToken. You can specify thisNextTokenvalue in a subsequent call tolist_subscription_requeststo list the next set of subscription requests.owningProjectIdThe identifier of the project for the subscription requests.
sortBySpecifies the way to sort the results of this action.
sortOrderSpecifies the sort order for the results of this action.
statusSpecifies the status of the subscription requests.
This is not a required parameter, but if not specified, by default, Amazon DataZone returns only
PENDINGsubscription requests.subscribedListingIdThe identifier of the subscribed listing.
Value¶
A list with the following syntax:
list(
items = list(
list(
createdAt = as.POSIXct(
"2015-01-01"
),
createdBy = "string",
decisionComment = "string",
domainId = "string",
id = "string",
requestReason = "string",
reviewerId = "string",
status = "PENDING"|"ACCEPTED"|"REJECTED",
subscribedListings = list(
list(
description = "string",
id = "string",
item = list(
assetListing = list(
entityId = "string",
entityRevision = "string",
entityType = "string",
forms = "string",
glossaryTerms = list(
list(
name = "string",
shortDescription = "string"
)
)
),
productListing = list(
assetListings = list(
list(
entityId = "string",
entityRevision = "string",
entityType = "string"
)
),
description = "string",
entityId = "string",
entityRevision = "string",
glossaryTerms = list(
list(
name = "string",
shortDescription = "string"
)
),
name = "string"
)
),
name = "string",
ownerProjectId = "string",
ownerProjectName = "string",
revision = "string"
)
),
subscribedPrincipals = list(
list(
project = list(
id = "string",
name = "string"
)
)
),
updatedAt = as.POSIXct(
"2015-01-01"
),
updatedBy = "string"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_subscription_requests(
approverProjectId = "string",
domainIdentifier = "string",
maxResults = 123,
nextToken = "string",
owningProjectId = "string",
sortBy = "CREATED_AT"|"UPDATED_AT",
sortOrder = "ASCENDING"|"DESCENDING",
status = "PENDING"|"ACCEPTED"|"REJECTED",
subscribedListingId = "string"
)