aws-cdk-lib.aws_sam.CfnFunction.ScheduleEventProperty

interface ScheduleEventProperty

LanguageType name
.NETAmazon.CDK.AWS.SAM.CfnFunction.ScheduleEventProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssam#CfnFunction_ScheduleEventProperty
Javasoftware.amazon.awscdk.services.sam.CfnFunction.ScheduleEventProperty
Pythonaws_cdk.aws_sam.CfnFunction.ScheduleEventProperty
TypeScript aws-cdk-lib » 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 { aws_sam as sam } from 'aws-cdk-lib';
const scheduleEventProperty: sam.CfnFunction.ScheduleEventProperty = {
  schedule: 'schedule',

  // the properties below are optional
  description: 'description',
  enabled: false,
  input: 'input',
  name: 'name',
};

Properties

NameTypeDescription
schedulestringCfnFunction.ScheduleEventProperty.Schedule.
description?stringCfnFunction.ScheduleEventProperty.Description.
enabled?boolean | IResolvableCfnFunction.ScheduleEventProperty.Enabled.
input?stringCfnFunction.ScheduleEventProperty.Input.
name?stringCfnFunction.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.