Skip to content

List Infrastructure Configurations

imagebuilder_list_infrastructure_configurations R Documentation

Returns a list of infrastructure configurations

Description

Returns a list of infrastructure configurations.

Usage

imagebuilder_list_infrastructure_configurations(filters, maxResults,
  nextToken)

Arguments

filters

You can filter on name 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",
  infrastructureConfigurationSummaryList = list(
    list(
      arn = "string",
      name = "string",
      description = "string",
      dateCreated = "string",
      dateUpdated = "string",
      resourceTags = list(
        "string"
      ),
      tags = list(
        "string"
      ),
      instanceTypes = list(
        "string"
      ),
      instanceProfileName = "string"
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_infrastructure_configurations(
  filters = list(
    list(
      name = "string",
      values = list(
        "string"
      )
    )
  ),
  maxResults = 123,
  nextToken = "string"
)