interface WeeklyScheduleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.InspectorV2.Mixins.CfnCisScanConfigurationPropsMixin.WeeklyScheduleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsinspectorv2/mixins#CfnCisScanConfigurationPropsMixin_WeeklyScheduleProperty |
Java | software.amazon.awscdk.mixins.preview.services.inspectorv2.mixins.CfnCisScanConfigurationPropsMixin.WeeklyScheduleProperty |
Python | aws_cdk.mixins_preview.aws_inspectorv2.mixins.CfnCisScanConfigurationPropsMixin.WeeklyScheduleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_inspectorv2 » mixins » CfnCisScanConfigurationPropsMixin » WeeklyScheduleProperty |
A weekly schedule.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as inspectorv2_mixins } from '@aws-cdk/mixins-preview/aws-inspectorv2';
const weeklyScheduleProperty: inspectorv2_mixins.CfnCisScanConfigurationPropsMixin.WeeklyScheduleProperty = {
days: ['days'],
startTime: {
timeOfDay: 'timeOfDay',
timeZone: 'timeZone',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| days? | string[] | The weekly schedule's days. |
| start | IResolvable | Time | The weekly schedule's start time. |
days?
Type:
string[]
(optional)
The weekly schedule's days.
startTime?
Type:
IResolvable | Time
(optional)
The weekly schedule's start time.

.NET
Go
Java
Python
TypeScript