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
6912 6913 6914 6915 6916 6917 6918 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 6912 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`
6912 6913 6914 6915 6916 6917 6918 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 6912 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
6912 6913 6914 6915 6916 6917 6918 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 6912 class RenameKeyEntry < Struct.new( :key, :rename_to, :overwrite_if_exists) SENSITIVE = [] include Aws::Structure end |