Class: Aws::ECR::Types::ListImagesFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECR::Types::ListImagesFilter
- Defined in:
- gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb
Overview
Note:
When making an API call, you may pass ListImagesFilter data as a hash:
{
tag_status: "TAGGED", # accepts TAGGED, UNTAGGED, ANY
}
An object representing a filter on a ListImages operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#tag_status ⇒ String
The tag status with which to filter your ListImages results.
Instance Attribute Details
#tag_status ⇒ String
The tag status with which to filter your ListImages results. You can
filter results based on whether they are TAGGED
or UNTAGGED
.
2674 2675 2676 2677 2678 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 2674 class ListImagesFilter < Struct.new( :tag_status) SENSITIVE = [] include Aws::Structure end |