Class: Aws::ECR::Types::DescribeImagesFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECR::Types::DescribeImagesFilter
- Defined in:
- gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb
Overview
An object representing a filter on a DescribeImages operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#image_status ⇒ String
The image status with which to filter your DescribeImages results.
-
#tag_status ⇒ String
The tag status with which to filter your DescribeImages results.
Instance Attribute Details
#image_status ⇒ String
The image status with which to filter your DescribeImages results.
Valid values are ACTIVE, ARCHIVED, and ACTIVATING.
1267 1268 1269 1270 1271 1272 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 1267 class DescribeImagesFilter < Struct.new( :tag_status, :image_status) SENSITIVE = [] include Aws::Structure end |
#tag_status ⇒ String
The tag status with which to filter your DescribeImages results. You
can filter results based on whether they are TAGGED or UNTAGGED.
1267 1268 1269 1270 1271 1272 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 1267 class DescribeImagesFilter < Struct.new( :tag_status, :image_status) SENSITIVE = [] include Aws::Structure end |