AWS::AuditManager::AssessmentFrameworkCreates a custom framework in AWS Audit Manager.
5 configurable properties. 2 required. Click a row to see details.
| Property | Type | Flags |
|---|---|---|
ControlSets | Array<ControlSet> | Required |
Name | string | Required |
ComplianceType | string | |
Description | string | |
Tags | Array<Tag> |
Values returned after the resource is created. Access these with Fn::GetAtt.
| Attribute | Type | Description |
|---|---|---|
Arn | string | The Amazon Resource Name (ARN) of the framework. |
CreatedAt | string | The time when the framework was created. |
CreatedBy | string | The user or role that created the framework. |
FrameworkId | string | The unique identifier for the framework. |
LastUpdatedAt | string | The time when the framework was most recently updated. |
LastUpdatedBy | string | The user or role that most recently updated the framework. |
Type | string | The framework type, such as a standard framework or a custom framework. |
A minimal template with required properties and common optional ones.
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"Permissions CloudFormation needs in your IAM role to manage this resource.
auditmanager:CreateAssessmentFrameworkauditmanager:TagResourceauditmanager:GetAssessmentFrameworkauditmanager:UpdateAssessmentFrameworkauditmanager:TagResourceauditmanager:UntagResourceauditmanager:DeleteAssessmentFrameworkauditmanager:ListAssessmentFrameworksOur bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.
Subscribe to NewsletterArn