![]() |
![]()
| ![]() |
![]()
NAMEPaws::SSMIncidents::CreateResponsePlan - Arguments for method CreateResponsePlan on Paws::SSMIncidents DESCRIPTIONThis class represents the parameters used for calling the method CreateResponsePlan on the AWS Systems Manager Incident Manager service. Use the attributes of this class as arguments to method CreateResponsePlan. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateResponsePlan. SYNOPSISmy $ssm-incidents = Paws->service('SSMIncidents'); my $CreateResponsePlanOutput = $ssm -incidents->CreateResponsePlan( IncidentTemplate => { Impact => 1, # min: 1, max: 5 Title => 'MyIncidentTitle', # max: 200 DedupeString => 'MyDedupeString', # max: 1000; OPTIONAL NotificationTargets => [ { SnsTopicArn => 'MyArn', # max: 1000; OPTIONAL }, ... ], # max: 10; OPTIONAL Summary => 'MyIncidentSummary', # max: 4000; OPTIONAL }, Name => 'MyResponsePlanName', Actions => [ { SsmAutomation => { DocumentName => 'MySsmAutomationDocumentNameString', RoleArn => 'MyRoleArn', # max: 1000 DocumentVersion => 'MySsmAutomationDocumentVersionString', # max: 128; OPTIONAL Parameters => { 'MySsmParametersKeyString' => [ 'MySsmParameterValuesMemberString', ... # max: 512 ], # key: min: 1, max: 50, value: max: 100 }, # min: 1, max: 200; OPTIONAL TargetAccount => 'RESPONSE_PLAN_OWNER_ACCOUNT' , # values: RESPONSE_PLAN_OWNER_ACCOUNT, IMPACTED_ACCOUNT; OPTIONAL }, # OPTIONAL }, ... ], # OPTIONAL ChatChannel => { ChatbotSns => [ 'MySnsArn', ... # max: 1000 ], # min: 1, max: 5; OPTIONAL Empty => { }, # OPTIONAL }, # OPTIONAL ClientToken => 'MyClientToken', # OPTIONAL DisplayName => 'MyResponsePlanDisplayName', # OPTIONAL Engagements => [ 'MySsmContactsArn', ... # max: 2048 ], # OPTIONAL Tags => { 'MyTagKey' => 'MyTagValue', # key: min: 1, max: 128, value: max: 256 }, # OPTIONAL ); # Results: my $Arn = $CreateResponsePlanOutput->Arn; # Returns a L<Paws::SSMIncidents::CreateResponsePlanOutput> object. Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see <https://docs.aws.amazon.com/goto/WebAPI/ssm-incidents/CreateResponsePlan> ATTRIBUTESActions => ArrayRef[Paws::SSMIncidents::Action]The actions that the response plan starts at the beginning of an incident. ChatChannel => Paws::SSMIncidents::ChatChannelThe AWS Chatbot chat channel used for collaboration during an incident. ClientToken => StrA token ensuring that the action is called only once with the specified details. DisplayName => StrThe long format of the response plan name. This field can contain spaces. Engagements => ArrayRef[Str|Undef]The contacts and escalation plans that the response plan engages during an incident. REQUIRED IncidentTemplate => Paws::SSMIncidents::IncidentTemplateDetails used to create an incident when using this response plan. REQUIRED Name => StrThe short format name of the response plan. Can't include spaces. Tags => Paws::SSMIncidents::TagMapA list of tags that you are adding to the response plan. SEE ALSOThis class forms part of Paws, documenting arguments for method CreateResponsePlan in Paws::SSMIncidents BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|