curl --location -g --request PATCH 'https://api.iotwireless.{region}.amazonaws.com/audit/scheduledaudits/' \
--header 'Content-Type: application/json' \
--data-raw '{
"frequency": "DAILY",
"dayOfMonth": "string",
"dayOfWeek": "SUN",
"targetCheckNames": [
"string"
]
}'
{
"scheduledAuditArn": "string"
}
DAILY
, WEEKLY
, BIWEEKLY
, or MONTHLY
. The start time of each audit is determined by the system.1
through 31
or LAST
. This field is required if the frequency
parameter is set to 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.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.)