CfnOpsItemProps

class aws_cdk.aws_ssm.CfnOpsItemProps(*, description, source, title, category=None, priority=None, severity=None, tags=None)

Bases: object

Properties 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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-opsitem.html#cfn-ssm-opsitem-category

description

The description of the OpsItem.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-opsitem.html#cfn-ssm-opsitem-description

priority

The priority of the OpsItem.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-opsitem.html#cfn-ssm-opsitem-priority

severity

The severity of the OpsItem.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-opsitem.html#cfn-ssm-opsitem-severity

source

The origin of the OpsItem.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-opsitem.html#cfn-ssm-opsitem-source

tags

Tags for the OpsItem.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-opsitem.html#cfn-ssm-opsitem-tags

title

The title of the OpsItem.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-opsitem.html#cfn-ssm-opsitem-title