You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::AppStream::Types::DescribeImagesRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing DescribeImagesRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  names: ["String"],
  arns: ["Arn"],
  type: "PUBLIC", # accepts PUBLIC, PRIVATE, SHARED
  next_token: "String",
  max_results: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#arnsArray<String>

The ARNs of the public, private, and shared images to describe.

Returns:

  • (Array<String>)

    The ARNs of the public, private, and shared images to describe.

#max_resultsInteger

The maximum size of each page of results.

Returns:

  • (Integer)

    The maximum size of each page of results.

#namesArray<String>

The names of the public or private images to describe.

Returns:

  • (Array<String>)

    The names of the public or private images to describe.

#next_tokenString

The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.

Returns:

  • (String)

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

#typeString

The type of image (public, private, or shared) to describe.

Possible values:

  • PUBLIC
  • PRIVATE
  • SHARED

Returns:

  • (String)

    The type of image (public, private, or shared) to describe.