interface CfnCisScanConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.InspectorV2.Mixins.CfnCisScanConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsinspectorv2/mixins#CfnCisScanConfigurationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.inspectorv2.mixins.CfnCisScanConfigurationMixinProps |
Python | aws_cdk.mixins_preview.aws_inspectorv2.mixins.CfnCisScanConfigurationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_inspectorv2 » mixins » CfnCisScanConfigurationMixinProps |
Properties for CfnCisScanConfigurationPropsMixin.
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';
declare const oneTime: any;
const cfnCisScanConfigurationMixinProps: inspectorv2_mixins.CfnCisScanConfigurationMixinProps = {
scanName: 'scanName',
schedule: {
daily: {
startTime: {
timeOfDay: 'timeOfDay',
timeZone: 'timeZone',
},
},
monthly: {
day: 'day',
startTime: {
timeOfDay: 'timeOfDay',
timeZone: 'timeZone',
},
},
oneTime: oneTime,
weekly: {
days: ['days'],
startTime: {
timeOfDay: 'timeOfDay',
timeZone: 'timeZone',
},
},
},
securityLevel: 'securityLevel',
tags: {
tagsKey: 'tags',
},
targets: {
accountIds: ['accountIds'],
targetResourceTags: {
targetResourceTagsKey: ['targetResourceTags'],
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| scan | string | The name of the CIS scan configuration. |
| schedule? | IResolvable | Schedule | The CIS scan configuration's schedule. |
| security | string | The CIS scan configuration's CIS Benchmark level. |
| tags? | { [string]: string } | The CIS scan configuration's tags. |
| targets? | IResolvable | Cis | The CIS scan configuration's targets. |
scanName?
Type:
string
(optional)
The name of the CIS scan configuration.
schedule?
Type:
IResolvable | Schedule
(optional)
The CIS scan configuration's schedule.
securityLevel?
Type:
string
(optional)
The CIS scan configuration's CIS Benchmark level.
tags?
Type:
{ [string]: string }
(optional)
The CIS scan configuration's tags.
targets?
Type:
IResolvable | Cis
(optional)
The CIS scan configuration's targets.

.NET
Go
Java
Python
TypeScript