Skip to content

Describe Fast Launch Images

ec2_describe_fast_launch_images R Documentation

Describe details for Windows AMIs that are configured for Windows fast launch

Description

Describe details for Windows AMIs that are configured for Windows fast launch.

Usage

ec2_describe_fast_launch_images(ImageIds, Filters, MaxResults,
  NextToken, DryRun)

Arguments

ImageIds

Specify one or more Windows AMI image IDs for the request.

Filters

Use the following filters to streamline results.

  • resource-type - The resource type for pre-provisioning.

  • owner-id - The owner ID for the pre-provisioning resource.

  • state - The current state of fast launching for the Windows AMI.

MaxResults

The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.

NextToken

The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.

DryRun

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

Value

A list with the following syntax:

list(
  FastLaunchImages = list(
    list(
      ImageId = "string",
      ResourceType = "snapshot",
      SnapshotConfiguration = list(
        TargetResourceCount = 123
      ),
      LaunchTemplate = list(
        LaunchTemplateId = "string",
        LaunchTemplateName = "string",
        Version = "string"
      ),
      MaxParallelLaunches = 123,
      OwnerId = "string",
      State = "enabling"|"enabling-failed"|"enabled"|"enabled-failed"|"disabling"|"disabling-failed",
      StateTransitionReason = "string",
      StateTransitionTime = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$describe_fast_launch_images(
  ImageIds = list(
    "string"
  ),
  Filters = list(
    list(
      Name = "string",
      Values = list(
        "string"
      )
    )
  ),
  MaxResults = 123,
  NextToken = "string",
  DryRun = TRUE|FALSE
)