interface SubstituteStringProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Logs.CfnTransformer.SubstituteStringProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslogs#CfnTransformer_SubstituteStringProperty |
Java | software.amazon.awscdk.services.logs.CfnTransformer.SubstituteStringProperty |
Python | aws_cdk.aws_logs.CfnTransformer.SubstituteStringProperty |
TypeScript | aws-cdk-lib » aws_logs » CfnTransformer » SubstituteStringProperty |
This processor matches a key’s value against a regular expression and replaces all matches with a replacement string.
For more information about this processor including examples, see substituteString in the CloudWatch Logs User Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_logs as logs } from 'aws-cdk-lib';
const substituteStringProperty: logs.CfnTransformer.SubstituteStringProperty = {
entries: [{
from: 'from',
source: 'source',
to: 'to',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| entries | IResolvable | (IResolvable | Substitute)[] | An array of objects, where each object contains the information about one key to match and replace. |
entries
Type:
IResolvable | (IResolvable | Substitute)[]
An array of objects, where each object contains the information about one key to match and replace.

.NET
Go
Java
Python
TypeScript