interface WeeklyScheduleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.InspectorV2.CfnCisScanConfigurationPropsMixin.WeeklyScheduleProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsinspectorv2#CfnCisScanConfigurationPropsMixin_WeeklyScheduleProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.inspectorv2.CfnCisScanConfigurationPropsMixin.WeeklyScheduleProperty |
Python | aws_cdk.cfn_property_mixins.aws_inspectorv2.CfnCisScanConfigurationPropsMixin.WeeklyScheduleProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_inspectorv2 » 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 { aws_inspectorv2 as inspectorv2 } from '@aws-cdk/cfn-property-mixins';
const weeklyScheduleProperty: inspectorv2.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