Provides operations on AWS EventBridge Targets
import { CommonConstruct } from '@gradientedge/cdk-utils'class CustomConstruct extends CommonConstruct { constructor(parent: cdk.Construct, id: string, props: common.CommonStackProps) { super(parent, id, props) this.props = props this.eventTargetManager.createCloudWatchLogGroupNoPolicy('MyLogGrouptarget', this, myLogGroup) }} Copy
import { CommonConstruct } from '@gradientedge/cdk-utils'class CustomConstruct extends CommonConstruct { constructor(parent: cdk.Construct, id: string, props: common.CommonStackProps) { super(parent, id, props) this.props = props this.eventTargetManager.createCloudWatchLogGroupNoPolicy('MyLogGrouptarget', this, myLogGroup) }}
[CDK EventBridge Target Module]https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_events_targets-readme.html
scoped id of the resource
scope in which this resource is defined
the log group
Optional
the log group target properties
Provides operations on AWS EventBridge Targets
Example
See
[CDK EventBridge Target Module]https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_events_targets-readme.html