List Container Recipes
imagebuilder_list_container_recipes | R Documentation |
Returns a list of container recipes¶
Description¶
Returns a list of container recipes.
Usage¶
imagebuilder_list_container_recipes(owner, filters, maxResults,
nextToken)
Arguments¶
owner |
Returns container recipes belonging to the specified owner, that have been shared with you. You can omit this field to return container recipes belonging to your account. |
filters |
Use the following filters to streamline results:
|
maxResults |
The maximum items to return in a request. |
nextToken |
A token to specify where to start paginating. This is the nextToken from a previously truncated response. |
Value¶
A list with the following syntax:
list(
requestId = "string",
containerRecipeSummaryList = list(
list(
arn = "string",
containerType = "DOCKER",
name = "string",
platform = "Windows"|"Linux"|"macOS",
owner = "string",
parentImage = "string",
dateCreated = "string",
tags = list(
"string"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_container_recipes(
owner = "Self"|"Shared"|"Amazon"|"ThirdParty"|"AWSMarketplace",
filters = list(
list(
name = "string",
values = list(
"string"
)
)
),
maxResults = 123,
nextToken = "string"
)