interface PipeTargetEventBridgeEventBusParametersProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Pipes.CfnPipe.PipeTargetEventBridgeEventBusParametersProperty | 
  Java | software.amazon.awscdk.services.pipes.CfnPipe.PipeTargetEventBridgeEventBusParametersProperty | 
  Python | aws_cdk.aws_pipes.CfnPipe.PipeTargetEventBridgeEventBusParametersProperty | 
  TypeScript  | @aws-cdk/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 * as pipes from '@aws-cdk/aws-pipes';
const pipeTargetEventBridgeEventBusParametersProperty: pipes.CfnPipe.PipeTargetEventBridgeEventBusParametersProperty = {
  detailType: 'detailType',
  endpointId: 'endpointId',
  resources: ['resources'],
  source: 'source',
  time: 'time',
};
Properties
| Name | Type | Description | 
|---|---|---|
| detail | string | A free-form string, with a maximum of 128 characters, used to decide what fields to expect in the event detail. | 
| endpoint | string | The URL subdomain of the endpoint. | 
| resources? | string[] | AWS resources, identified by Amazon Resource Name (ARN), which the event primarily concerns. | 
| source? | string | The source of the event. | 
| time? | string | The 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.

 .NET
 Java
 Python
 TypeScript