Skip to content

Describe Application Fleet Associations

appstream_describe_application_fleet_associations R Documentation

Retrieves a list that describes one or more application fleet associations

Description

Retrieves a list that describes one or more application fleet associations. Either ApplicationArn or FleetName must be specified.

Usage

appstream_describe_application_fleet_associations(FleetName,
  ApplicationArn, MaxResults, NextToken)

Arguments

FleetName

The name of the fleet.

ApplicationArn

The ARN of the application.

MaxResults

The maximum size of each page of results.

NextToken

The pagination token used to retrieve the next page of results for this operation.

Value

A list with the following syntax:

list(
  ApplicationFleetAssociations = list(
    list(
      FleetName = "string",
      ApplicationArn = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$describe_application_fleet_associations(
  FleetName = "string",
  ApplicationArn = "string",
  MaxResults = 123,
  NextToken = "string"
)