interface MonthlyScheduleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.InspectorV2.CfnCisScanConfigurationPropsMixin.MonthlyScheduleProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsinspectorv2#CfnCisScanConfigurationPropsMixin_MonthlyScheduleProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.inspectorv2.CfnCisScanConfigurationPropsMixin.MonthlyScheduleProperty |
Python | aws_cdk.cfn_property_mixins.aws_inspectorv2.CfnCisScanConfigurationPropsMixin.MonthlyScheduleProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_inspectorv2 » CfnCisScanConfigurationPropsMixin » MonthlyScheduleProperty |
A monthly 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 monthlyScheduleProperty: inspectorv2.CfnCisScanConfigurationPropsMixin.MonthlyScheduleProperty = {
day: 'day',
startTime: {
timeOfDay: 'timeOfDay',
timeZone: 'timeZone',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| day? | string | The monthly schedule's day. |
| start | IResolvable | Time | The monthly schedule's start time. |
day?
Type:
string
(optional)
The monthly schedule's day.
startTime?
Type:
IResolvable | Time
(optional)
The monthly schedule's start time.

.NET
Go
Java
Python
TypeScript