AWS Fundamentals Logo
AWS Fundamentals
AWS::AuditManager::AssessmentFramework

AuditManager AssessmentFramework

Creates a custom framework in AWS Audit Manager.

Properties

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

Filter:
PropertyTypeFlags
ControlSets
Array<ControlSet>
Required
Name
string
Required
ComplianceType
string
Description
string
Tags
Array<Tag>

Return Values

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

AttributeTypeDescription
ArnstringThe Amazon Resource Name (ARN) of the framework.
CreatedAtstringThe time when the framework was created.
CreatedBystringThe user or role that created the framework.
FrameworkIdstringThe unique identifier for the framework.
LastUpdatedAtstringThe time when the framework was most recently updated.
LastUpdatedBystringThe user or role that most recently updated the framework.
TypestringThe framework type, such as a standard framework or a custom framework.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::AuditManager::AssessmentFramework

Resources:
  MyResource:
    Type: AWS::AuditManager::AssessmentFramework
    Properties:
      Name: "my-name"
      ControlSets: []
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

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

create

auditmanager:CreateAssessmentFrameworkauditmanager:TagResource

read

auditmanager:GetAssessmentFramework

update

auditmanager:UpdateAssessmentFrameworkauditmanager:TagResourceauditmanager:UntagResource

delete

auditmanager:DeleteAssessmentFramework

list

auditmanager:ListAssessmentFrameworks

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

ServiceAuditManager
Properties12
Required2
TaggingSupported
Primary IDArn

Supported Operations

CreateReadUpdateDeleteList

Related Resources

External Links