interface EventBridgeParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Scheduler.Mixins.CfnSchedulePropsMixin.EventBridgeParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsscheduler/mixins#CfnSchedulePropsMixin_EventBridgeParametersProperty |
Java | software.amazon.awscdk.mixins.preview.services.scheduler.mixins.CfnSchedulePropsMixin.EventBridgeParametersProperty |
Python | aws_cdk.mixins_preview.aws_scheduler.mixins.CfnSchedulePropsMixin.EventBridgeParametersProperty |
TypeScript | @aws-cdk/mixins-preview » aws_scheduler » mixins » CfnSchedulePropsMixin » EventBridgeParametersProperty |
The templated target type for the EventBridge PutEvents API operation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as scheduler_mixins } from '@aws-cdk/mixins-preview/aws-scheduler';
const eventBridgeParametersProperty: scheduler_mixins.CfnSchedulePropsMixin.EventBridgeParametersProperty = {
detailType: 'detailType',
source: 'source',
};
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. |
| source? | string | The source of the event. |
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.
source?
Type:
string
(optional)
The source of the event.

.NET
Go
Java
Python
TypeScript