Class: Aws::CloudWatchLogs::Types::CopyValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchLogs::Types::CopyValue
- Defined in:
- gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb
Overview
This processor copies values within a log event. You can also use this
processor to add metadata to log events by copying the values of the
following metadata keys into the log events: @logGroupName
,
@logGroupStream
, @accountId
, @regionName
.
For more information about this processor including examples, see copyValue in the CloudWatch Logs User Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#entries ⇒ Array<Types::CopyValueEntry>
An array of
CopyValueEntry
objects, where each object contains the information about one field value to copy.
Instance Attribute Details
#entries ⇒ Array<Types::CopyValueEntry>
An array of CopyValueEntry
objects, where each object contains the
information about one field value to copy.
618 619 620 621 622 |
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 618 class CopyValue < Struct.new( :entries) SENSITIVE = [] include Aws::Structure end |