Skip to content

Describe App Blocks

appstream_describe_app_blocks R Documentation

Retrieves a list that describes one or more app blocks

Description

Retrieves a list that describes one or more app blocks.

Usage

appstream_describe_app_blocks(Arns, NextToken, MaxResults)

Arguments

Arns

The ARNs of the app blocks.

NextToken

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

MaxResults

The maximum size of each page of results.

Value

A list with the following syntax:

list(
  AppBlocks = list(
    list(
      Name = "string",
      Arn = "string",
      Description = "string",
      DisplayName = "string",
      SourceS3Location = list(
        S3Bucket = "string",
        S3Key = "string"
      ),
      SetupScriptDetails = list(
        ScriptS3Location = list(
          S3Bucket = "string",
          S3Key = "string"
        ),
        ExecutablePath = "string",
        ExecutableParameters = "string",
        TimeoutInSeconds = 123
      ),
      CreatedTime = as.POSIXct(
        "2015-01-01"
      ),
      PostSetupScriptDetails = list(
        ScriptS3Location = list(
          S3Bucket = "string",
          S3Key = "string"
        ),
        ExecutablePath = "string",
        ExecutableParameters = "string",
        TimeoutInSeconds = 123
      ),
      PackagingType = "CUSTOM"|"APPSTREAM2",
      State = "INACTIVE"|"ACTIVE",
      AppBlockErrors = list(
        list(
          ErrorCode = "string",
          ErrorMessage = "string"
        )
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$describe_app_blocks(
  Arns = list(
    "string"
  ),
  NextToken = "string",
  MaxResults = 123
)