AWS Fundamentals Logo
AWS Fundamentals
AWS::CloudTrail::Dashboard

CloudTrail Dashboard

The Amazon CloudTrail dashboard resource allows customers to manage managed dashboards and create custom dashboards. You can manually refresh custom and managed dashboards. For custom dashboards, you can also set up an automatic refresh schedule and modify dashboard widgets.

Properties

5 configurable properties. Click a row to see details.

Filter:
PropertyTypeFlags
Name
string
RefreshSchedule
RefreshSchedule
Tags
Array<Tag>
TerminationProtectionEnabled
boolean
Widgets
Array<Widget>

Return Values

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

AttributeTypeDescription
CreatedTimestampstringThe timestamp of the dashboard creation.
DashboardArnstringThe ARN of the dashboard.
StatusstringThe status of the dashboard. Values are CREATING, CREATED, UPDATING, UPDATED and DELETING.
TypestringThe type of the dashboard. Values are CUSTOM and MANAGED.
UpdatedTimestampstringThe timestamp showing when the dashboard was updated, if applicable. UpdatedTimestamp is always either the same or newer than the time shown in CreatedTimestamp.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::CloudTrail::Dashboard

Resources:
  MyResource:
    Type: AWS::CloudTrail::Dashboard
    Properties:
      Tags:
        - Key: Environment
          Value: Production
      Name: !Ref "AWS::StackName"

Required IAM Permissions

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

create

CloudTrail:CreateDashboardCloudTrail:AddTagsCloudTrail:StartQueryCloudTrail:StartDashboardRefresh

read

CloudTrail:GetDashboardCloudTrail:ListDashboardsCloudTrail:ListTags

update

CloudTrail:UpdateDashboardCloudTrail:AddTagsCloudTrail:RemoveTagsCloudTrail:StartQueryCloudTrail:StartDashboardRefresh

delete

CloudTrail:DeleteDashboardCloudTrail:UpdateDashboard

list

CloudTrail:ListDashboardsCloudTrail:GetDashboardCloudTrail:ListTags

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

ServiceCloudTrail
Properties10
Required0
TaggingSupported
Primary IDDashboardArn

Supported Operations

CreateReadUpdateDeleteList

External Links