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
Note:
When making an API call, you may pass DescribeImagesFilter data as a hash:
{
tag_status: "TAGGED", # accepts TAGGED, UNTAGGED, ANY
}
An object representing a filter on a DescribeImages operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#tag_status ⇒ String
The tag status with which to filter your DescribeImages results.
Instance Attribute Details
#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
.
1042 1043 1044 1045 1046 |
# File 'gems/aws-sdk-ecr/lib/aws-sdk-ecr/types.rb', line 1042 class DescribeImagesFilter < Struct.new( :tag_status) SENSITIVE = [] include Aws::Structure end |