Class: Aws::Imagebuilder::Types::ListImagesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Imagebuilder::Types::ListImagesResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-imagebuilder/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#image_version_list ⇒ Array<Types::ImageVersion>
The list of image semantic versions.
-
#next_token ⇒ String
The next token used for paginated responses.
-
#request_id ⇒ String
The request ID that uniquely identifies this request.
Instance Attribute Details
#image_version_list ⇒ Array<Types::ImageVersion>
The list of image semantic versions.
<note markdown=“1”> The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them.
**Filtering:** With semantic versioning, you have the flexibility to
use wildcards (x) to specify the most recent versions or nodes when selecting the base image or components for your recipe. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards.
</note>
6371 6372 6373 6374 6375 6376 6377 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 6371 class ListImagesResponse < Struct.new( :request_id, :image_version_list, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The next token used for paginated responses. When this field isn’t empty, there are additional elements that the service hasn’t included in this request. Use this token with the next request to retrieve additional objects.
6371 6372 6373 6374 6375 6376 6377 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 6371 class ListImagesResponse < Struct.new( :request_id, :image_version_list, :next_token) SENSITIVE = [] include Aws::Structure end |
#request_id ⇒ String
The request ID that uniquely identifies this request.
6371 6372 6373 6374 6375 6376 6377 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 6371 class ListImagesResponse < Struct.new( :request_id, :image_version_list, :next_token) SENSITIVE = [] include Aws::Structure end |