interface CfnScheduledAuditMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnScheduledAuditMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnScheduledAuditMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnScheduledAuditMixinProps |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnScheduledAuditMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnScheduledAuditMixinProps |
Properties for CfnScheduledAuditPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-scheduledaudit.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const cfnScheduledAuditMixinProps: iot_mixins.CfnScheduledAuditMixinProps = {
dayOfMonth: 'dayOfMonth',
dayOfWeek: 'dayOfWeek',
frequency: 'frequency',
scheduledAuditName: 'scheduledAuditName',
tags: [{
key: 'key',
value: 'value',
}],
targetCheckNames: ['targetCheckNames'],
};
Properties
| Name | Type | Description |
|---|---|---|
| day | string | The day of the month on which the scheduled audit is run (if the frequency is "MONTHLY"). |
| day | string | The day of the week on which the scheduled audit is run (if the frequency is "WEEKLY" or "BIWEEKLY"). |
| frequency? | string | How often the scheduled audit occurs. |
| scheduled | string | The name of the scheduled audit. |
| tags? | Cfn[] | Metadata that can be used to manage the scheduled audit. |
| target | string[] | Which checks are performed during the scheduled audit. |
dayOfMonth?
Type:
string
(optional)
The day of the month on which the scheduled audit is run (if the frequency is "MONTHLY").
If days 29-31 are specified, and the month does not have that many days, the audit takes place on the "LAST" day of the month.
dayOfWeek?
Type:
string
(optional)
The day of the week on which the scheduled audit is run (if the frequency is "WEEKLY" or "BIWEEKLY").
frequency?
Type:
string
(optional)
How often the scheduled audit occurs.
scheduledAuditName?
Type:
string
(optional)
The name of the scheduled audit.
tags?
Type:
Cfn[]
(optional)
Metadata that can be used to manage the scheduled audit.
targetCheckNames?
Type:
string[]
(optional)
Which checks are performed during the scheduled audit.
Checks must be enabled for your account. (Use DescribeAccountAuditConfiguration to see the list of all checks, including those that are enabled or use UpdateAccountAuditConfiguration to select which checks are enabled.)
The following checks are currently available:
AUTHENTICATED_COGNITO_ROLE_OVERLY_PERMISSIVE_CHECKCA_CERTIFICATE_EXPIRING_CHECKCA_CERTIFICATE_KEY_QUALITY_CHECKCONFLICTING_CLIENT_IDS_CHECKDEVICE_CERTIFICATE_EXPIRING_CHECKDEVICE_CERTIFICATE_KEY_QUALITY_CHECKDEVICE_CERTIFICATE_SHARED_CHECKIOT_POLICY_OVERLY_PERMISSIVE_CHECKIOT_ROLE_ALIAS_ALLOWS_ACCESS_TO_UNUSED_SERVICES_CHECKIOT_ROLE_ALIAS_OVERLY_PERMISSIVE_CHECKLOGGING_DISABLED_CHECKREVOKED_CA_CERTIFICATE_STILL_ACTIVE_CHECKREVOKED_DEVICE_CERTIFICATE_STILL_ACTIVE_CHECKUNAUTHENTICATED_COGNITO_ROLE_OVERLY_PERMISSIVE_CHECK

.NET
Go
Java
Python
TypeScript