Class: Aws::WorkSpaces::Types::DescribeWorkspaceImagesRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-workspaces/types.rb

Overview

Note:

When making an API call, you may pass DescribeWorkspaceImagesRequest data as a hash:

{
  image_ids: ["WorkspaceImageId"],
  next_token: "PaginationToken",
  max_results: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#image_idsArray<String>

The identifier of the image.

Returns:

  • (Array<String>)


711
712
713
714
715
716
# File 'lib/aws-sdk-workspaces/types.rb', line 711

class DescribeWorkspaceImagesRequest < Struct.new(
  :image_ids,
  :next_token,
  :max_results)
  include Aws::Structure
end

#max_resultsInteger

The maximum number of items to return.

Returns:

  • (Integer)


711
712
713
714
715
716
# File 'lib/aws-sdk-workspaces/types.rb', line 711

class DescribeWorkspaceImagesRequest < Struct.new(
  :image_ids,
  :next_token,
  :max_results)
  include Aws::Structure
end

#next_tokenString

If you received a ‘NextToken` from a previous call that was paginated, provide this token to receive the next set of results.

Returns:

  • (String)


711
712
713
714
715
716
# File 'lib/aws-sdk-workspaces/types.rb', line 711

class DescribeWorkspaceImagesRequest < Struct.new(
  :image_ids,
  :next_token,
  :max_results)
  include Aws::Structure
end