Show / Hide Table of Contents

Class MoveKeysProperty

This processor moves a key from one field to another.

Inheritance
object
MoveKeysProperty
Implements
IMoveKeysProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Logs
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class MoveKeysProperty : IMoveKeysProperty
Syntax (vb)
Public Class MoveKeysProperty Implements IMoveKeysProperty
Remarks

The original key is deleted. For more information about this processor including examples, see moveKeys in the CloudWatch Logs User Guide.

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Logs;

             var moveKeysProperty = new MoveKeysProperty {
                 Entries = new [] { new MoveKeyEntryProperty {
                     Source = "source",
                     Target = "target",

                     // the properties below are optional
                     OverwriteIfExists = false
                 } }
             };

Synopsis

Constructors

MoveKeysProperty()

This processor moves a key from one field to another.

Properties

Entries

An array of objects, where each object contains information about one key to move.

Constructors

MoveKeysProperty()

This processor moves a key from one field to another.

public MoveKeysProperty()
Remarks

The original key is deleted. For more information about this processor including examples, see moveKeys in the CloudWatch Logs User Guide.

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Logs;

             var moveKeysProperty = new MoveKeysProperty {
                 Entries = new [] { new MoveKeyEntryProperty {
                     Source = "source",
                     Target = "target",

                     // the properties below are optional
                     OverwriteIfExists = false
                 } }
             };

Properties

Entries

An array of objects, where each object contains information about one key to move.

public IMoveKeyEntryProperty[] Entries { get; set; }
Property Value

IMoveKeyEntryProperty[]

Remarks

The original key is deleted. For more information about this processor including examples, see moveKeys in the CloudWatch Logs User Guide.

ExampleMetadata: fixture=_generated

Implements

IMoveKeysProperty
Back to top Generated by DocFX