Class: Aws::ChimeSDKMediaPipelines::Types::KeywordMatchConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ChimeSDKMediaPipelines::Types::KeywordMatchConfiguration
- Defined in:
- gems/aws-sdk-chimesdkmediapipelines/lib/aws-sdk-chimesdkmediapipelines/types.rb
Overview
A structure that contains the settings for a keyword match task.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#keywords ⇒ Array<String>
The keywords or phrases that you want to match.
-
#negate ⇒ Boolean
Matches keywords or phrases on their presence or absence.
-
#rule_name ⇒ String
The name of the keyword match rule.
Instance Attribute Details
#keywords ⇒ Array<String>
The keywords or phrases that you want to match.
1578 1579 1580 1581 1582 1583 1584 |
# File 'gems/aws-sdk-chimesdkmediapipelines/lib/aws-sdk-chimesdkmediapipelines/types.rb', line 1578 class KeywordMatchConfiguration < Struct.new( :rule_name, :keywords, :negate) SENSITIVE = [] include Aws::Structure end |
#negate ⇒ Boolean
Matches keywords or phrases on their presence or absence. If set to
TRUE
, the rule matches when all the specified keywords or phrases
are absent. Default: FALSE
.
1578 1579 1580 1581 1582 1583 1584 |
# File 'gems/aws-sdk-chimesdkmediapipelines/lib/aws-sdk-chimesdkmediapipelines/types.rb', line 1578 class KeywordMatchConfiguration < Struct.new( :rule_name, :keywords, :negate) SENSITIVE = [] include Aws::Structure end |
#rule_name ⇒ String
The name of the keyword match rule.
1578 1579 1580 1581 1582 1583 1584 |
# File 'gems/aws-sdk-chimesdkmediapipelines/lib/aws-sdk-chimesdkmediapipelines/types.rb', line 1578 class KeywordMatchConfiguration < Struct.new( :rule_name, :keywords, :negate) SENSITIVE = [] include Aws::Structure end |