Skip to content

Commit

Permalink
AWS Systems Manager Incident Manager Contacts Update: Added new attri…
Browse files Browse the repository at this point in the history
…bute in AcceptCode API. AcceptCodeValidation takes in two values - ENFORCE, IGNORE. ENFORCE forces validation of accept code and IGNORE ignores it which is also the default behavior; Corrected TagKeyList length from 200 to 50
  • Loading branch information
AWS committed Aug 2, 2021
1 parent 1d82e0c commit 53a4021
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"type": "feature",
"category": "AWS Systems Manager Incident Manager Contacts",
"contributor": "",
"description": "Added new attribute in AcceptCode API. AcceptCodeValidation takes in two values - ENFORCE, IGNORE. ENFORCE forces validation of accept code and IGNORE ignores it which is also the default behavior; Corrected TagKeyList length from 200 to 50"
}
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,13 @@
"min":6,
"pattern":"^[0-9]*$"
},
"AcceptCodeValidation":{
"type":"string",
"enum":[
"IGNORE",
"ENFORCE"
]
},
"AcceptPageRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -523,6 +530,10 @@
"AcceptCode":{
"shape":"AcceptCode",
"documentation":"<p>The accept code is a 6-digit code used to acknowledge the page.</p>"
},
"AcceptCodeValidation":{
"shape":"AcceptCodeValidation",
"documentation":"<p>An optional field that Incident Manager uses to <code>ENFORCE</code> <code>AcceptCode</code> validation when acknowledging an page. Acknowledgement can occur by replying to a page, or when entering the AcceptCode in the console. Enforcing AcceptCode validation causes Incident Manager to verify that the code entered by the user matches the code sent by Incident Manager with the page.</p> <p>Incident Manager can also <code>IGNORE</code> <code>AcceptCode</code> validation. Ignoring <code>AcceptCode</code> validation causes Incident Manager to accept any value entered for the <code>AcceptCode</code>.</p>"
}
}
},
Expand Down Expand Up @@ -1687,7 +1698,7 @@
"members":{
"DurationInMinutes":{
"shape":"StageDurationInMins",
"documentation":"<p>The time to wait until beginning the next stage.</p>"
"documentation":"<p>The time to wait until beginning the next stage. The duration can only be set to 0 if a target is specified.</p>"
},
"Targets":{
"shape":"TargetsList",
Expand Down Expand Up @@ -1814,7 +1825,7 @@
"TagKeyList":{
"type":"list",
"member":{"shape":"TagKey"},
"max":200,
"max":50,
"min":0
},
"TagResourceRequest":{
Expand Down Expand Up @@ -2021,5 +2032,5 @@
]
}
},
"documentation":"<p/>"
"documentation":"<p>AWS Systems Manager Incident Manager is an incident management console designed to help users mitigate and recover from incidents affecting their AWS-hosted applications. An incident is any unplanned interruption or reduction in quality of services. </p> <p>Incident Manager increases incident resolution by notifying responders of impact, highlighting relevant troubleshooting data, and providing collaboration tools to get services back up and running. To achieve the primary goal of reducing the time-to-resolution of critical incidents, Incident Manager automates response plans and enables responder team escalation. </p>"
}

0 comments on commit 53a4021

Please sign in to comment.