interface EventBridgeRuleEventProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SAM.Mixins.CfnFunctionPropsMixin.EventBridgeRuleEventProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssam/mixins#CfnFunctionPropsMixin_EventBridgeRuleEventProperty |
Java | software.amazon.awscdk.mixins.preview.services.sam.mixins.CfnFunctionPropsMixin.EventBridgeRuleEventProperty |
Python | aws_cdk.mixins_preview.aws_sam.mixins.CfnFunctionPropsMixin.EventBridgeRuleEventProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sam » mixins » CfnFunctionPropsMixin » EventBridgeRuleEventProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sam_mixins } from '@aws-cdk/mixins-preview/aws-sam';
declare const pattern: any;
const eventBridgeRuleEventProperty: sam_mixins.CfnFunctionPropsMixin.EventBridgeRuleEventProperty = {
eventBusName: 'eventBusName',
input: 'input',
inputPath: 'inputPath',
pattern: pattern,
};
Properties
| Name | Type | Description |
|---|---|---|
| event | string | |
| input? | string | |
| input | string | |
| pattern? | any |
eventBusName?
Type:
string
(optional)
input?
Type:
string
(optional)
inputPath?
Type:
string
(optional)
pattern?
Type:
any
(optional)

.NET
Go
Java
Python
TypeScript