interface SubstituteStringProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Logs.SubstituteStringProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awslogs#SubstituteStringProperty |
![]() | software.amazon.awscdk.services.logs.SubstituteStringProperty |
![]() | aws_cdk.aws_logs.SubstituteStringProperty |
![]() | aws-cdk-lib » aws_logs » 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.SubstituteStringProperty = {
entries: [{
from: 'from',
source: 'source',
to: 'to',
}],
};
Properties
Name | Type | Description |
---|---|---|
entries | Substitute [] | An array of objects, where each object contains information about one key to match and replace. |
entries
Type:
Substitute
[]
An array of objects, where each object contains information about one key to match and replace.