Skip to content

List Image Recipes

imagebuilder_list_image_recipes R Documentation

Returns a list of image recipes

Description

Returns a list of image recipes.

Usage

imagebuilder_list_image_recipes(owner, filters, maxResults, nextToken)

Arguments

owner

You can specify the recipe owner to filter results by that owner. By default, this request will only show image recipes owned by your account. To filter by a different owner, specify one of the ⁠Valid Values⁠ that are listed for this parameter.

filters

Use the following filters to streamline results:

  • name

  • parentImage

  • platform

maxResults

Specify the maximum number of 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",
  imageRecipeSummaryList = list(
    list(
      arn = "string",
      name = "string",
      platform = "Windows"|"Linux"|"macOS",
      owner = "string",
      parentImage = "string",
      dateCreated = "string",
      tags = list(
        "string"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_image_recipes(
  owner = "Self"|"Shared"|"Amazon"|"ThirdParty"|"AWSMarketplace",
  filters = list(
    list(
      name = "string",
      values = list(
        "string"
      )
    )
  ),
  maxResults = 123,
  nextToken = "string"
)