Class: Aws::CloudWatchLogs::Types::CopyValueEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchLogs::Types::CopyValueEntry
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchlogs/types.rb
Overview
This object defines one value to be copied with the [ copyValue] processor.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#overwrite_if_exists ⇒ Boolean
Specifies whether to overwrite the value if the destination key already exists.
-
#source ⇒ String
The key to copy.
-
#target ⇒ String
The key of the field to copy the value to.
Instance Attribute Details
#overwrite_if_exists ⇒ Boolean
Specifies whether to overwrite the value if the destination key already exists. If you omit this, the default is ‘false`.
646 647 648 649 650 651 652 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 646 class CopyValueEntry < Struct.new( :source, :target, :overwrite_if_exists) SENSITIVE = [] include Aws::Structure end |
#source ⇒ String
The key to copy.
646 647 648 649 650 651 652 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 646 class CopyValueEntry < Struct.new( :source, :target, :overwrite_if_exists) SENSITIVE = [] include Aws::Structure end |
#target ⇒ String
The key of the field to copy the value to.
646 647 648 649 650 651 652 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 646 class CopyValueEntry < Struct.new( :source, :target, :overwrite_if_exists) SENSITIVE = [] include Aws::Structure end |