interface ScheduleEventProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SAM.Mixins.CfnFunctionPropsMixin.ScheduleEventProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssam/mixins#CfnFunctionPropsMixin_ScheduleEventProperty |
Java | software.amazon.awscdk.mixins.preview.services.sam.mixins.CfnFunctionPropsMixin.ScheduleEventProperty |
Python | aws_cdk.mixins_preview.aws_sam.mixins.CfnFunctionPropsMixin.ScheduleEventProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sam » mixins » CfnFunctionPropsMixin » ScheduleEventProperty |
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';
const scheduleEventProperty: sam_mixins.CfnFunctionPropsMixin.ScheduleEventProperty = {
description: 'description',
enabled: false,
input: 'input',
name: 'name',
schedule: 'schedule',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | |
| enabled? | boolean | IResolvable | |
| input? | string | |
| name? | string | |
| schedule? | string |
description?
Type:
string
(optional)
enabled?
Type:
boolean | IResolvable
(optional)
input?
Type:
string
(optional)
name?
Type:
string
(optional)
schedule?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript