Search Provisioned Products
servicecatalog_search_provisioned_products | R Documentation |
Gets information about the provisioned products that meet the specified criteria¶
Description¶
Gets information about the provisioned products that meet the specified criteria.
Usage¶
servicecatalog_search_provisioned_products(AcceptLanguage,
AccessLevelFilter, Filters, SortBy, SortOrder, PageSize, PageToken)
Arguments¶
AcceptLanguage |
The language code.
|
AccessLevelFilter |
The access level to use to obtain results. The default is
|
Filters |
The search filters. When the key is Example: |
SortBy |
The sort field. If no value is specified, the results are not
sorted. The valid values are |
SortOrder |
The sort order. If no value is specified, the results are not sorted. |
PageSize |
The maximum number of items to return with this call. |
PageToken |
The page token for the next set of results. To retrieve the first set of results, use null. |
Value¶
A list with the following syntax:
list(
ProvisionedProducts = list(
list(
Name = "string",
Arn = "string",
Type = "string",
Id = "string",
Status = "AVAILABLE"|"UNDER_CHANGE"|"TAINTED"|"ERROR"|"PLAN_IN_PROGRESS",
StatusMessage = "string",
CreatedTime = as.POSIXct(
"2015-01-01"
),
IdempotencyToken = "string",
LastRecordId = "string",
LastProvisioningRecordId = "string",
LastSuccessfulProvisioningRecordId = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
),
PhysicalId = "string",
ProductId = "string",
ProductName = "string",
ProvisioningArtifactId = "string",
ProvisioningArtifactName = "string",
UserArn = "string",
UserArnSession = "string"
)
),
TotalResultsCount = 123,
NextPageToken = "string"
)
Request syntax¶
svc$search_provisioned_products(
AcceptLanguage = "string",
AccessLevelFilter = list(
Key = "Account"|"Role"|"User",
Value = "string"
),
Filters = list(
list(
"string"
)
),
SortBy = "string",
SortOrder = "ASCENDING"|"DESCENDING",
PageSize = 123,
PageToken = "string"
)