curl --location -g --request POST 'https://api.iotwireless.{region}.amazonaws.com/audit/scheduledaudits/' \
--header 'Content-Type: application/json' \
--data-raw '{
"frequency": "DAILY",
"dayOfMonth": "string",
"dayOfWeek": "SUN",
"targetCheckNames": [
"string"
],
"tags": [
{
"Key": "string",
"Value": "string"
}
]
}'
{
"scheduledAuditArn": "string"
}
DAILY
, WEEKLY
, BIWEEKLY
or MONTHLY
. The start time of each audit is determined by the system.MONTHLY
. If days 29 to 31 are specified, and the month doesn't have that many days, the audit takes place on the LAST
day of the month.SUN
, MON
, TUE
, WED
, THU
, FRI
, or SAT
. This field is required if the frequency
parameter is set to WEEKLY
or BIWEEKLY
.DescribeAccountAuditConfiguration
to see the list of all checks, including those that are enabled or use UpdateAccountAuditConfiguration
to select which checks are enabled.)