Class: Aws::SWF::Types::TagFilter

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb

Overview

Used to filter the workflow executions in visibility APIs based on a tag.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#tagString

Specifies the tag that must be associated with the execution for it to meet the filter criteria.

Tags may only contain unicode letters, digits, whitespace, or these symbols: _ . : / = + - @.

Returns:

  • (String)


5376
5377
5378
5379
5380
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 5376

class TagFilter < Struct.new(
  :tag)
  SENSITIVE = []
  include Aws::Structure
end