Class: Aws::ECR::Types::ListImagesFilter

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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
}

An object representing a filter on a ListImages operation.

Instance Attribute Summary collapse

Instance Attribute Details

#tag_statusString

The tag status with which to filter your ListImages results. You can filter results based on whether they are ‘TAGGED` or `UNTAGGED`.

Returns:

  • (String)


962
963
964
965
# File 'lib/aws-sdk-ecr/types.rb', line 962

class ListImagesFilter < Struct.new(
  :tag_status)
  include Aws::Structure
end