Search Listings
| datazone_search_listings | R Documentation |
Searches listings (records of an asset at a given time) in Amazon DataZone¶
Description¶
Searches listings (records of an asset at a given time) in Amazon DataZone.
Usage¶
datazone_search_listings(additionalAttributes, domainIdentifier,
filters, maxResults, nextToken, searchIn, searchText, sort)
Arguments¶
additionalAttributesSpecifies additional attributes for the search.
domainIdentifier[required] The identifier of the domain in which to search listings.
filtersSpecifies the filters for the search of listings.
maxResultsThe maximum number of results to return in a single call to
search_listings. When the number of results to be listed is greater than the value ofMaxResults, the response contains aNextTokenvalue that you can use in a subsequent call tosearch_listingsto list the next set of results.nextTokenWhen the number of results is greater than the default value for the
MaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of results, the response includes a pagination token namedNextToken. You can specify thisNextTokenvalue in a subsequent call tosearch_listingsto list the next set of results.searchInThe details of the search.
searchTextSpecifies the text for which to search.
sortSpecifies the way for sorting the search results.
Value¶
A list with the following syntax:
list(
items = list(
list(
assetListing = list(
additionalAttributes = list(
forms = "string",
latestTimeSeriesDataPointForms = list(
list(
contentSummary = "string",
formName = "string",
id = "string",
timestamp = as.POSIXct(
"2015-01-01"
),
typeIdentifier = "string",
typeRevision = "string"
)
)
),
createdAt = as.POSIXct(
"2015-01-01"
),
description = "string",
entityId = "string",
entityRevision = "string",
entityType = "string",
glossaryTerms = list(
list(
name = "string",
shortDescription = "string"
)
),
listingCreatedBy = "string",
listingId = "string",
listingRevision = "string",
listingUpdatedBy = "string",
name = "string",
owningProjectId = "string"
),
dataProductListing = list(
additionalAttributes = list(
forms = "string"
),
createdAt = as.POSIXct(
"2015-01-01"
),
description = "string",
entityId = "string",
entityRevision = "string",
glossaryTerms = list(
list(
name = "string",
shortDescription = "string"
)
),
items = list(
list(
glossaryTerms = list(
list(
name = "string",
shortDescription = "string"
)
),
listingId = "string",
listingRevision = "string"
)
),
listingCreatedBy = "string",
listingId = "string",
listingRevision = "string",
listingUpdatedBy = "string",
name = "string",
owningProjectId = "string"
)
)
),
nextToken = "string",
totalMatchCount = 123
)
Request syntax¶
svc$search_listings(
additionalAttributes = list(
"FORMS"|"TIME_SERIES_DATA_POINT_FORMS"
),
domainIdentifier = "string",
filters = list(
and = list(
list()
),
filter = list(
attribute = "string",
value = "string"
),
or = list(
list()
)
),
maxResults = 123,
nextToken = "string",
searchIn = list(
list(
attribute = "string"
)
),
searchText = "string",
sort = list(
attribute = "string",
order = "ASCENDING"|"DESCENDING"
)
)