diff --git a/packages/@aws-cdk/aws-pipes-targets-alpha/lib/cloudwatch-logs.ts b/packages/@aws-cdk/aws-pipes-targets-alpha/lib/cloudwatch-logs.ts index d0a8c905eb1cb..ee17f834cc6f0 100644 --- a/packages/@aws-cdk/aws-pipes-targets-alpha/lib/cloudwatch-logs.ts +++ b/packages/@aws-cdk/aws-pipes-targets-alpha/lib/cloudwatch-logs.ts @@ -23,10 +23,13 @@ export interface CloudWatchLogsTargetParameters { readonly logStreamName?: string; /** - * The time the event occurred, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC. + * The JSON path expression that references the timestamp in the payload. + * + * @example + * '$.data.timestamp' * * @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-pipetargetcloudwatchlogsparameters.html#cfn-pipes-pipe-pipetargetcloudwatchlogsparameters-timestamp - * @default - none + * @default - current time */ readonly timestamp?: string; }