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¶
approverProjectId |
The identifier of the subscription request approver's project. |
domainIdentifier |
[required] The identifier of the Amazon DataZone domain. |
maxResults |
The maximum number of subscription requests to return in a single
call to |
nextToken |
When the number of subscription requests is greater than the
default value for the |
owningProjectId |
The identifier of the project for the subscription requests. |
sortBy |
Specifies the way to sort the results of this action. |
sortOrder |
Specifies the sort order for the results of this action. |
status |
Specifies the status of the subscription requests. This is not a required parameter, but if not specified, by default,
Amazon DataZone returns only |
subscribedListingId |
The 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",
existingSubscriptionId = "string",
id = "string",
metadataFormsSummary = list(
list(
formName = "string",
typeName = "string",
typeRevision = "string"
)
),
requestReason = "string",
reviewerId = "string",
status = "PENDING"|"ACCEPTED"|"REJECTED",
subscribedListings = list(
list(
description = "string",
id = "string",
item = list(
assetListing = list(
assetScope = list(
assetId = "string",
errorMessage = "string",
filterIds = list(
"string"
),
status = "string"
),
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"
)