aws-cdk-lib.aws_pipes.CfnPipe.PipeTargetEventBridgeEventBusParametersProperty

interface PipeTargetEventBridgeEventBusParametersProperty

LanguageType name
.NETAmazon.CDK.AWS.Pipes.CfnPipe.PipeTargetEventBridgeEventBusParametersProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awspipes#CfnPipe_PipeTargetEventBridgeEventBusParametersProperty
Javasoftware.amazon.awscdk.services.pipes.CfnPipe.PipeTargetEventBridgeEventBusParametersProperty
Pythonaws_cdk.aws_pipes.CfnPipe.PipeTargetEventBridgeEventBusParametersProperty
TypeScript aws-cdk-lib » aws_pipes » CfnPipe » PipeTargetEventBridgeEventBusParametersProperty

The parameters for using an EventBridge event bus as a target.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_pipes as pipes } from 'aws-cdk-lib';
const pipeTargetEventBridgeEventBusParametersProperty: pipes.CfnPipe.PipeTargetEventBridgeEventBusParametersProperty = {
  detailType: 'detailType',
  endpointId: 'endpointId',
  resources: ['resources'],
  source: 'source',
  time: 'time',
};

Properties

NameTypeDescription
detailType?stringA free-form string, with a maximum of 128 characters, used to decide what fields to expect in the event detail.
endpointId?stringThe URL subdomain of the endpoint.
resources?string[]AWS resources, identified by Amazon Resource Name (ARN), which the event primarily concerns.
source?stringThe source of the event.
time?stringThe time stamp of the event, per RFC3339 . If no time stamp is provided, the time stamp of the PutEvents call is used.

detailType?

Type: string (optional)

A free-form string, with a maximum of 128 characters, used to decide what fields to expect in the event detail.


endpointId?

Type: string (optional)

The URL subdomain of the endpoint.

For example, if the URL for Endpoint is https://abcde.veo.endpoints.event.amazonaws.com, then the EndpointId is abcde.veo .


resources?

Type: string[] (optional)

AWS resources, identified by Amazon Resource Name (ARN), which the event primarily concerns.

Any number, including zero, may be present.


source?

Type: string (optional)

The source of the event.


time?

Type: string (optional)

The time stamp of the event, per RFC3339 . If no time stamp is provided, the time stamp of the PutEvents call is used.