interface EventBridgeRuleEventProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SAM.CfnFunctionPropsMixin.EventBridgeRuleEventProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssam#CfnFunctionPropsMixin_EventBridgeRuleEventProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sam.CfnFunctionPropsMixin.EventBridgeRuleEventProperty |
Python | aws_cdk.cfn_property_mixins.aws_sam.CfnFunctionPropsMixin.EventBridgeRuleEventProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sam » CfnFunctionPropsMixin » EventBridgeRuleEventProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sam as sam } from '@aws-cdk/cfn-property-mixins';
declare const pattern: any;
const eventBridgeRuleEventProperty: sam.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