AWS Fundamentals Logo
AWS Fundamentals
AWS::IoT::ScheduledAudit

IoT ScheduledAudit

Scheduled audits can be used to specify the checks you want to perform during an audit and how often the audit should be run.

Properties

6 configurable properties. 2 required. Click a row to see details.

Filter:
PropertyTypeFlags
Frequency
string
Required
TargetCheckNames
Array<string>
Required
DayOfMonth
string
DayOfWeek
string
ScheduledAuditName
string
Create-only
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
ScheduledAuditArnstringThe ARN (Amazon resource name) of the scheduled audit.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::IoT::ScheduledAudit

Resources:
  MyResource:
    Type: AWS::IoT::ScheduledAudit
    Properties:
      Frequency: "DAILY"
      TargetCheckNames: "my-targetchecknames"
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

iot:CreateScheduledAuditiot:DescribeScheduledAuditiot:TagResource

read

iot:DescribeScheduledAuditiot:ListTagsForResource

update

iot:UpdateScheduledAuditiot:ListTagsForResourceiot:UntagResourceiot:TagResource

delete

iot:DescribeScheduledAuditiot:DeleteScheduledAudit

list

iot:ListScheduledAudits

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceIoT
Properties7
Required2
TaggingSupported
Primary IDScheduledAuditName

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

ScheduledAuditName

External Links