AWS Fundamentals Logo
AWS Fundamentals
AWS::SSM::OpsItem

SSM OpsItem

Resource schema for AWS::SSM::OpsItem.

Properties

7 configurable properties. 3 required. Click a row to see details.

Filter:
PropertyTypeFlags
Description
string
Required
Source
string
RequiredCreate-only
Title
string
Required
Category
string
Priority
integer
Severity
string
Tags
Array<Tag>

Return Values

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

AttributeTypeDescription
CreatedBystringThe user who created the OpsItem.
CreatedTimestringThe time the OpsItem was created.
LastModifiedBystringThe user who last modified the OpsItem.
LastModifiedTimestringThe time the OpsItem was last modified.
OpsItemArnstringThe ARN of the OpsItem.
OpsItemIdstringThe ID of the OpsItem.
OpsItemTypestringThe type of OpsItem.
StatusstringThe status of the OpsItem.
VersionstringThe version of the OpsItem.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::SSM::OpsItem

Resources:
  MyResource:
    Type: AWS::SSM::OpsItem
    Properties:
      Title: "value"
      Description: "value"
      Source: "value"
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

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

create

ssm:CreateOpsItemssm:GetOpsItemssm:DescribeOpsItemsssm:AddTagsToResource

read

ssm:GetOpsItemssm:ListTagsForResource

update

ssm:UpdateOpsItemssm:GetOpsItemssm:AddTagsToResourcessm:RemoveTagsFromResourcessm:ListTagsForResource

delete

ssm:GetOpsItemssm:ListTagsForResourcessm:DeleteOpsItem

list

ssm:DescribeOpsItems

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

ServiceSSM
Properties16
Required3
TaggingSupported
Primary IDOpsItemArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

Source

External Links