interface ScheduleEventProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SAM.CfnFunctionPropsMixin.ScheduleEventProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssam#CfnFunctionPropsMixin_ScheduleEventProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sam.CfnFunctionPropsMixin.ScheduleEventProperty |
Python | aws_cdk.cfn_property_mixins.aws_sam.CfnFunctionPropsMixin.ScheduleEventProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sam » CfnFunctionPropsMixin » ScheduleEventProperty |
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';
const scheduleEventProperty: sam.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