Scan Provisioned Products
servicecatalog_scan_provisioned_products | R Documentation |
Lists the provisioned products that are available (not terminated)¶
Description¶
Lists the provisioned products that are available (not terminated).
To use additional filtering, see search_provisioned_products
.
Usage¶
Arguments¶
AcceptLanguage
The language code.
jp
- Japanesezh
- Chinese
AccessLevelFilter
The access level to use to obtain results. The default is
User
.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",
ProductId = "string",
ProvisioningArtifactId = "string",
LaunchRoleArn = "string"
)
),
NextPageToken = "string"
)