interface EventBridgeRuleEventProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SAM.CfnFunction.EventBridgeRuleEventProperty |
Java | software.amazon.awscdk.services.sam.CfnFunction.EventBridgeRuleEventProperty |
Python | aws_cdk.aws_sam.CfnFunction.EventBridgeRuleEventProperty |
TypeScript | @aws-cdk/aws-sam » CfnFunction » EventBridgeRuleEventProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sam from '@aws-cdk/aws-sam';
declare const pattern: any;
const eventBridgeRuleEventProperty: sam.CfnFunction.EventBridgeRuleEventProperty = {
pattern: pattern,
// the properties below are optional
eventBusName: 'eventBusName',
input: 'input',
inputPath: 'inputPath',
};
Properties
| Name | Type | Description |
|---|---|---|
| pattern | any | CfnFunction.EventBridgeRuleEventProperty.Pattern. |
| event | string | CfnFunction.EventBridgeRuleEventProperty.EventBusName. |
| input? | string | CfnFunction.EventBridgeRuleEventProperty.Input. |
| input | string | CfnFunction.EventBridgeRuleEventProperty.InputPath. |
pattern
Type:
any
CfnFunction.EventBridgeRuleEventProperty.Pattern.
eventBusName?
Type:
string
(optional)
CfnFunction.EventBridgeRuleEventProperty.EventBusName.
input?
Type:
string
(optional)
CfnFunction.EventBridgeRuleEventProperty.Input.
inputPath?
Type:
string
(optional)
CfnFunction.EventBridgeRuleEventProperty.InputPath.

.NET
Java
Python
TypeScript