interface ScheduleEventProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SAM.CfnFunction.ScheduleEventProperty |
Java | software.amazon.awscdk.services.sam.CfnFunction.ScheduleEventProperty |
Python | aws_cdk.aws_sam.CfnFunction.ScheduleEventProperty |
TypeScript | @aws-cdk/aws-sam » CfnFunction » ScheduleEventProperty |
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';
const scheduleEventProperty: sam.CfnFunction.ScheduleEventProperty = {
schedule: 'schedule',
// the properties below are optional
description: 'description',
enabled: false,
input: 'input',
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| schedule | string | CfnFunction.ScheduleEventProperty.Schedule. |
| description? | string | CfnFunction.ScheduleEventProperty.Description. |
| enabled? | boolean | IResolvable | CfnFunction.ScheduleEventProperty.Enabled. |
| input? | string | CfnFunction.ScheduleEventProperty.Input. |
| name? | string | CfnFunction.ScheduleEventProperty.Name. |
schedule
Type:
string
CfnFunction.ScheduleEventProperty.Schedule.
description?
Type:
string
(optional)
CfnFunction.ScheduleEventProperty.Description.
enabled?
Type:
boolean | IResolvable
(optional)
CfnFunction.ScheduleEventProperty.Enabled.
input?
Type:
string
(optional)
CfnFunction.ScheduleEventProperty.Input.
name?
Type:
string
(optional)
CfnFunction.ScheduleEventProperty.Name.

.NET
Java
Python
TypeScript