Class: Aws::CloudWatchLogs::Types::PatternToken
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchLogs::Types::PatternToken
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchlogs/types.rb
Overview
A structure that contains information about one pattern token related to an anomaly.
For more information about patterns and tokens, see [CreateLogAnomalyDetector].
[1]: docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_CreateLogAnomalyDetector.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dynamic_token_position ⇒ Integer
For a dynamic token, this indicates where in the pattern that this token appears, related to other dynamic tokens.
-
#enumerations ⇒ Hash<String,Integer>
Contains the values found for a dynamic token, and the number of times each value was found.
-
#is_dynamic ⇒ Boolean
Specifies whether this is a dynamic token.
-
#token_string ⇒ String
The string represented by this token.
Instance Attribute Details
#dynamic_token_position ⇒ Integer
For a dynamic token, this indicates where in the pattern that this token appears, related to other dynamic tokens. The dynamic token that appears first has a value of ‘1`, the one that appears second is `2`, and so on.
3732 3733 3734 3735 3736 3737 3738 3739 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 3732 class PatternToken < Struct.new( :dynamic_token_position, :is_dynamic, :token_string, :enumerations) SENSITIVE = [] include Aws::Structure end |
#enumerations ⇒ Hash<String,Integer>
Contains the values found for a dynamic token, and the number of times each value was found.
3732 3733 3734 3735 3736 3737 3738 3739 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 3732 class PatternToken < Struct.new( :dynamic_token_position, :is_dynamic, :token_string, :enumerations) SENSITIVE = [] include Aws::Structure end |
#is_dynamic ⇒ Boolean
Specifies whether this is a dynamic token.
3732 3733 3734 3735 3736 3737 3738 3739 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 3732 class PatternToken < Struct.new( :dynamic_token_position, :is_dynamic, :token_string, :enumerations) SENSITIVE = [] include Aws::Structure end |
#token_string ⇒ String
The string represented by this token. If this is a dynamic token, the value will be ‘<*>`
3732 3733 3734 3735 3736 3737 3738 3739 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 3732 class PatternToken < Struct.new( :dynamic_token_position, :is_dynamic, :token_string, :enumerations) SENSITIVE = [] include Aws::Structure end |