Class: Aws::CloudWatchLogs::Types::RenameKeyEntry
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchLogs::Types::RenameKeyEntry
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchlogs/types.rb
Overview
This object defines one key that will be renamed with the [ renameKey] processor.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The key to rename.
-
#overwrite_if_exists ⇒ Boolean
Specifies whether to overwrite the existing value if the destination key already exists.
-
#rename_to ⇒ String
The string to use for the new key name.
Instance Attribute Details
#key ⇒ String
The key to rename
6179 6180 6181 6182 6183 6184 6185 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 6179 class RenameKeyEntry < Struct.new( :key, :rename_to, :overwrite_if_exists) SENSITIVE = [] include Aws::Structure end |
#overwrite_if_exists ⇒ Boolean
Specifies whether to overwrite the existing value if the destination key already exists. The default is ‘false`
6179 6180 6181 6182 6183 6184 6185 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 6179 class RenameKeyEntry < Struct.new( :key, :rename_to, :overwrite_if_exists) SENSITIVE = [] include Aws::Structure end |
#rename_to ⇒ String
The string to use for the new key name
6179 6180 6181 6182 6183 6184 6185 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 6179 class RenameKeyEntry < Struct.new( :key, :rename_to, :overwrite_if_exists) SENSITIVE = [] include Aws::Structure end |