Class: Aws::AppStream::Types::DescribeImagesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppStream::Types::DescribeImagesRequest
- Defined in:
- gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb
Overview
Note:
When making an API call, you may pass DescribeImagesRequest data as a hash:
{
names: ["String"],
arns: ["Arn"],
type: "PUBLIC", # accepts PUBLIC, PRIVATE, SHARED
next_token: "String",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arns ⇒ Array<String>
The ARNs of the public, private, and shared images to describe.
-
#max_results ⇒ Integer
The maximum size of each page of results.
-
#names ⇒ Array<String>
The names of the public or private images to describe.
-
#next_token ⇒ String
The pagination token to use to retrieve the next page of results for this operation.
-
#type ⇒ String
The type of image (public, private, or shared) to describe.
Instance Attribute Details
#arns ⇒ Array<String>
The ARNs of the public, private, and shared images to describe.
2591 2592 2593 2594 2595 2596 2597 2598 2599 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 2591 class DescribeImagesRequest < Struct.new( :names, :arns, :type, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum size of each page of results.
2591 2592 2593 2594 2595 2596 2597 2598 2599 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 2591 class DescribeImagesRequest < Struct.new( :names, :arns, :type, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#names ⇒ Array<String>
The names of the public or private images to describe.
2591 2592 2593 2594 2595 2596 2597 2598 2599 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 2591 class DescribeImagesRequest < Struct.new( :names, :arns, :type, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
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.
2591 2592 2593 2594 2595 2596 2597 2598 2599 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 2591 class DescribeImagesRequest < Struct.new( :names, :arns, :type, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of image (public, private, or shared) to describe.
2591 2592 2593 2594 2595 2596 2597 2598 2599 |
# File 'gems/aws-sdk-appstream/lib/aws-sdk-appstream/types.rb', line 2591 class DescribeImagesRequest < Struct.new( :names, :arns, :type, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |