Class: Aws::SWF::Types::TagFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::TagFilter
- 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
-
#tag ⇒ String
Specifies the tag that must be associated with the execution for it to meet the filter criteria.
Instance Attribute Details
#tag ⇒ String
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: _ . : / = + - @
.
5406 5407 5408 5409 5410 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 5406 class TagFilter < Struct.new( :tag) SENSITIVE = [] include Aws::Structure end |