CfnOpsItemMixinProps

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

Bases: object

Properties for CfnOpsItemPropsMixin.

Parameters:
  • category (Optional[str]) – The category of the OpsItem.

  • description (Optional[str]) – The description of the OpsItem.

  • priority (Union[int, float, None]) – The priority of the OpsItem.

  • severity (Optional[str]) – The severity of the OpsItem.

  • source (Optional[str]) – The origin of the OpsItem.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – Tags for the OpsItem.

  • title (Optional[str]) – The title of 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.cfn_property_mixins import aws_ssm as ssm

cfn_ops_item_mixin_props = ssm.CfnOpsItemMixinProps(
    category="category",
    description="description",
    priority=123,
    severity="severity",
    source="source",
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    title="title"
)

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