interface CloudWatchEventEventProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.SAM.CfnFunction.CloudWatchEventEventProperty |
Java | software.amazon.awscdk.services.sam.CfnFunction.CloudWatchEventEventProperty |
Python | aws_cdk.aws_sam.CfnFunction.CloudWatchEventEventProperty |
TypeScript | @aws-cdk/aws-sam » CfnFunction » CloudWatchEventEventProperty |
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 cloudWatchEventEventProperty: sam.CfnFunction.CloudWatchEventEventProperty = {
pattern: pattern,
// the properties below are optional
input: 'input',
inputPath: 'inputPath',
};
Properties
Name | Type | Description |
---|---|---|
pattern | any | CfnFunction.CloudWatchEventEventProperty.Pattern . |
input? | string | CfnFunction.CloudWatchEventEventProperty.Input . |
input | string | CfnFunction.CloudWatchEventEventProperty.InputPath . |
pattern
Type:
any
CfnFunction.CloudWatchEventEventProperty.Pattern
.
input?
Type:
string
(optional)
CfnFunction.CloudWatchEventEventProperty.Input
.
inputPath?
Type:
string
(optional)
CfnFunction.CloudWatchEventEventProperty.InputPath
.