interface CfnOpsItemProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SSM.CfnOpsItemProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsssm#CfnOpsItemProps |
Java | software.amazon.awscdk.services.ssm.CfnOpsItemProps |
Python | aws_cdk.aws_ssm.CfnOpsItemProps |
TypeScript | aws-cdk-lib » aws_ssm » CfnOpsItemProps |
Properties for defining a CfnOpsItem.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-opsitem.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ssm as ssm } from 'aws-cdk-lib';
const cfnOpsItemProps: ssm.CfnOpsItemProps = {
description: 'description',
source: 'source',
title: 'title',
// the properties below are optional
category: 'category',
priority: 123,
severity: 'severity',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description | string | The description of the OpsItem. |
| source | string | The origin of the OpsItem. |
| title | string | The title of the OpsItem. |
| category? | string | The category of the OpsItem. |
| priority? | number | The priority of the OpsItem. |
| severity? | string | The severity of the OpsItem. |
| tags? | Cfn[] | Tags for the OpsItem. |
description
Type:
string
The description of the OpsItem.
source
Type:
string
The origin of the OpsItem.
title
Type:
string
The title of the OpsItem.
category?
Type:
string
(optional)
The category of the OpsItem.
priority?
Type:
number
(optional)
The priority of the OpsItem.
severity?
Type:
string
(optional)
The severity of the OpsItem.
tags?
Type:
Cfn[]
(optional)
Tags for the OpsItem.

.NET
Go
Java
Python
TypeScript