interface ScheduleProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.InspectorV2.CfnCisScanConfiguration.ScheduleProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsinspectorv2#CfnCisScanConfiguration_ScheduleProperty | 
  Java | software.amazon.awscdk.services.inspectorv2.CfnCisScanConfiguration.ScheduleProperty | 
  Python | aws_cdk.aws_inspectorv2.CfnCisScanConfiguration.ScheduleProperty | 
  TypeScript  | aws-cdk-lib » aws_inspectorv2 » CfnCisScanConfiguration » ScheduleProperty | 
The schedule the CIS scan configuration runs on.
Each CIS scan configuration has exactly one type of schedule.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_inspectorv2 as inspectorv2 } from 'aws-cdk-lib';
declare const oneTime: any;
const scheduleProperty: inspectorv2.CfnCisScanConfiguration.ScheduleProperty = {
  daily: {
    startTime: {
      timeOfDay: 'timeOfDay',
      timeZone: 'timeZone',
    },
  },
  monthly: {
    day: 'day',
    startTime: {
      timeOfDay: 'timeOfDay',
      timeZone: 'timeZone',
    },
  },
  oneTime: oneTime,
  weekly: {
    days: ['days'],
    startTime: {
      timeOfDay: 'timeOfDay',
      timeZone: 'timeZone',
    },
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| daily? | IResolvable | Daily | A daily schedule. | 
| monthly? | IResolvable | Monthly | A monthly schedule. | 
| one | any | A one time schedule. | 
| weekly? | IResolvable | Weekly | A weekly schedule. | 
daily?
Type:
IResolvable | Daily
(optional)
A daily schedule.
monthly?
Type:
IResolvable | Monthly
(optional)
A monthly schedule.
oneTime?
Type:
any
(optional)
A one time schedule.
weekly?
Type:
IResolvable | Weekly
(optional)
A weekly schedule.

 .NET
 Go
 Java
 Python
 TypeScript