|
NAMEPaws::SSMIncidents::UpdateResponsePlan - Arguments for method UpdateResponsePlan on Paws::SSMIncidents DESCRIPTIONThis class represents the parameters used for calling the method UpdateResponsePlan on the AWS Systems Manager Incident Manager service. Use the attributes of this class as arguments to method UpdateResponsePlan. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdateResponsePlan. SYNOPSIS my $ssm-incidents = Paws->service('SSMIncidents');
my $UpdateResponsePlanOutput = $ssm -incidents->UpdateResponsePlan(
Arn => 'MyArn',
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
IncidentTemplateDedupeString => 'MyDedupeString', # OPTIONAL
IncidentTemplateImpact => 1, # OPTIONAL
IncidentTemplateNotificationTargets => [
{
SnsTopicArn => 'MyArn', # max: 1000
},
...
], # OPTIONAL
IncidentTemplateSummary => 'MyIncidentSummary', # OPTIONAL
IncidentTemplateTitle => 'MyIncidentTitle', # OPTIONAL
);
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/UpdateResponsePlan> ATTRIBUTESActions => ArrayRef[Paws::SSMIncidents::Action]The actions that this response plan takes at the beginning of an incident. REQUIRED Arn => StrThe Amazon Resource Name (ARN) of the response plan. 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 name of the response plan. Can't contain spaces. Engagements => ArrayRef[Str|Undef]The contacts and escalation plans that Incident Manager engages at the start of the incident. IncidentTemplateDedupeString => StrUsed to create only one incident record for an incident. IncidentTemplateImpact => IntDefines the impact to the customers. Providing an impact overwrites the impact provided by a response plan. Possible impacts:
IncidentTemplateNotificationTargets => ArrayRef[Paws::SSMIncidents::NotificationTargetItem]The SNS targets that AWS Chatbot uses to notify the chat channels and perform actions on the incident record. IncidentTemplateSummary => StrA brief summary of the incident. This typically contains what has happened, what's currently happening, and next steps. IncidentTemplateTitle => StrThe short format name of the incident. Can't contain spaces. SEE ALSOThis class forms part of Paws, documenting arguments for method UpdateResponsePlan 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>
|