CfnOpsItemProps
- class aws_cdk.aws_ssm.CfnOpsItemProps(*, description, source, title, category=None, priority=None, severity=None, tags=None)
Bases:
objectProperties for defining a
CfnOpsItem.- Parameters:
description (
str) – The description of the OpsItem.source (
str) – The origin of the OpsItem.title (
str) – The title of the OpsItem.category (
Optional[str]) – The category of the OpsItem.priority (
Union[int,float,None]) – The priority of the OpsItem.severity (
Optional[str]) – The severity of the OpsItem.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Tags for the OpsItem.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-opsitem.html
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_ssm as ssm cfn_ops_item_props = ssm.CfnOpsItemProps( description="description", source="source", title="title", # the properties below are optional category="category", priority=123, severity="severity", tags=[CfnTag( key="key", value="value" )] )
Attributes
- category
The category of the OpsItem.
- description
The description of the OpsItem.
- priority
The priority of the OpsItem.
- severity
The severity of the OpsItem.
- source
The origin of the OpsItem.
- tags
Tags for the OpsItem.
- title
The title of the OpsItem.