Source code for troposphere.ssmincidents

# Copyright (c) 2012-2024, Mark Peek <mark@peek.org>
# All rights reserved.
#
# See LICENSE file for full license.
#
# *** Do not modify - this file is autogenerated ***


from . import AWSObject, AWSProperty, PropsDictType, Tags
from .validators import boolean, integer


[docs]class RegionConfiguration(AWSProperty): """ `RegionConfiguration <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmincidents-replicationset-regionconfiguration.html>`__ """ props: PropsDictType = { "SseKmsKeyId": (str, True), }
[docs]class ReplicationRegion(AWSProperty): """ `ReplicationRegion <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmincidents-replicationset-replicationregion.html>`__ """ props: PropsDictType = { "RegionConfiguration": (RegionConfiguration, False), "RegionName": (str, False), }
[docs]class ReplicationSet(AWSObject): """ `ReplicationSet <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmincidents-replicationset.html>`__ """ resource_type = "AWS::SSMIncidents::ReplicationSet" props: PropsDictType = { "DeletionProtected": (boolean, False), "Regions": ([ReplicationRegion], True), "Tags": (Tags, False), }
[docs]class DynamicSsmParameterValue(AWSProperty): """ `DynamicSsmParameterValue <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmincidents-responseplan-dynamicssmparametervalue.html>`__ """ props: PropsDictType = { "Variable": (str, False), }
[docs]class DynamicSsmParameter(AWSProperty): """ `DynamicSsmParameter <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmincidents-responseplan-dynamicssmparameter.html>`__ """ props: PropsDictType = { "Key": (str, True), "Value": (DynamicSsmParameterValue, True), }
[docs]class SsmParameter(AWSProperty): """ `SsmParameter <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmincidents-responseplan-ssmparameter.html>`__ """ props: PropsDictType = { "Key": (str, True), "Values": ([str], True), }
[docs]class SsmAutomation(AWSProperty): """ `SsmAutomation <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmincidents-responseplan-ssmautomation.html>`__ """ props: PropsDictType = { "DocumentName": (str, True), "DocumentVersion": (str, False), "DynamicParameters": ([DynamicSsmParameter], False), "Parameters": ([SsmParameter], False), "RoleArn": (str, True), "TargetAccount": (str, False), }
[docs]class Action(AWSProperty): """ `Action <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmincidents-responseplan-action.html>`__ """ props: PropsDictType = { "SsmAutomation": (SsmAutomation, False), }
[docs]class ChatChannel(AWSProperty): """ `ChatChannel <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmincidents-responseplan-chatchannel.html>`__ """ props: PropsDictType = { "ChatbotSns": ([str], False), }
[docs]class NotificationTargetItem(AWSProperty): """ `NotificationTargetItem <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmincidents-responseplan-notificationtargetitem.html>`__ """ props: PropsDictType = { "SnsTopicArn": (str, False), }
[docs]class IncidentTemplate(AWSProperty): """ `IncidentTemplate <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmincidents-responseplan-incidenttemplate.html>`__ """ props: PropsDictType = { "DedupeString": (str, False), "Impact": (integer, True), "IncidentTags": (Tags, False), "NotificationTargets": ([NotificationTargetItem], False), "Summary": (str, False), "Title": (str, True), }
[docs]class PagerDutyIncidentConfiguration(AWSProperty): """ `PagerDutyIncidentConfiguration <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmincidents-responseplan-pagerdutyincidentconfiguration.html>`__ """ props: PropsDictType = { "ServiceId": (str, True), }
[docs]class PagerDutyConfiguration(AWSProperty): """ `PagerDutyConfiguration <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmincidents-responseplan-pagerdutyconfiguration.html>`__ """ props: PropsDictType = { "Name": (str, True), "PagerDutyIncidentConfiguration": (PagerDutyIncidentConfiguration, True), "SecretId": (str, True), }
[docs]class Integration(AWSProperty): """ `Integration <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmincidents-responseplan-integration.html>`__ """ props: PropsDictType = { "PagerDutyConfiguration": (PagerDutyConfiguration, True), }
[docs]class ResponsePlan(AWSObject): """ `ResponsePlan <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmincidents-responseplan.html>`__ """ resource_type = "AWS::SSMIncidents::ResponsePlan" props: PropsDictType = { "Actions": ([Action], False), "ChatChannel": (ChatChannel, False), "DisplayName": (str, False), "Engagements": ([str], False), "IncidentTemplate": (IncidentTemplate, True), "Integrations": ([Integration], False), "Name": (str, True), "Tags": (Tags, False), }