Class: Aws::CloudWatchLogs::Types::MoveKeyEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchLogs::Types::MoveKeyEntry
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchlogs/types.rb
Overview
This object defines one key that will be moved with the [ moveKey] 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 move.
-
#target ⇒ String
The key to move 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`.
4362 4363 4364 4365 4366 4367 4368 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 4362 class MoveKeyEntry < Struct.new( :source, :target, :overwrite_if_exists) SENSITIVE = [] include Aws::Structure end |
#source ⇒ String
The key to move.
4362 4363 4364 4365 4366 4367 4368 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 4362 class MoveKeyEntry < Struct.new( :source, :target, :overwrite_if_exists) SENSITIVE = [] include Aws::Structure end |
#target ⇒ String
The key to move to.
4362 4363 4364 4365 4366 4367 4368 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 4362 class MoveKeyEntry < Struct.new( :source, :target, :overwrite_if_exists) SENSITIVE = [] include Aws::Structure end |