interface CfnOpsItemMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SSM.CfnOpsItemMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsssm#CfnOpsItemMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ssm.CfnOpsItemMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ssm.CfnOpsItemMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ssm » CfnOpsItemMixinProps |
Properties for CfnOpsItemPropsMixin.
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/cfn-property-mixins';
const cfnOpsItemMixinProps: ssm.CfnOpsItemMixinProps = {
category: 'category',
description: 'description',
priority: 123,
severity: 'severity',
source: 'source',
tags: [{
key: 'key',
value: 'value',
}],
title: 'title',
};
Properties
| Name | Type | Description |
|---|---|---|
| category? | string | The category of the OpsItem. |
| description? | string | The description of the OpsItem. |
| priority? | number | The priority of the OpsItem. |
| severity? | string | The severity of the OpsItem. |
| source? | string | The origin of the OpsItem. |
| tags? | Cfn[] | Tags for the OpsItem. |
| title? | string | The title of the OpsItem. |
category?
Type:
string
(optional)
The category of the OpsItem.
description?
Type:
string
(optional)
The description of the OpsItem.
priority?
Type:
number
(optional)
The priority of the OpsItem.
severity?
Type:
string
(optional)
The severity of the OpsItem.
source?
Type:
string
(optional)
The origin of the OpsItem.
tags?
Type:
Cfn[]
(optional)
Tags for the OpsItem.
title?
Type:
string
(optional)
The title of the OpsItem.

.NET
Go
Java
Python
TypeScript