aws-sdk-ssmcontacts 1.6.0 → 1.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 35202afd55eb94c576336a417cffb342b26b86c9fe1a89845ca597425cefcd47
4
- data.tar.gz: a4d8bb3265092e120ad15589d59a0dc628c8efdd84323436b77f5ea0c5f2b0a2
3
+ metadata.gz: 8c36753cb00d2d128d3f4c70625497fecda52ca39225c36d10aa5aabe6981a04
4
+ data.tar.gz: e90bfc4b06462c51699bc3b300fbc375a14ba3feac30e37b6829160efd6d07b1
5
5
  SHA512:
6
- metadata.gz: '08cf3194aeaf672970948473308e6bff238314f4af1065d4e1a2698bbad6920283cbd4740130384a5b064baa5b2eaf78b16a1f7b237469c770985b37a6e53458'
7
- data.tar.gz: 17c02c7dc8bae3c57965cbb9537f70cfbe32aab9d5f48c11264f6ecba82f0f2ae4b3d7d85ded17ea9b05985df56632227b9fe918c906fc1d8f8573007e64590e
6
+ metadata.gz: 60d57b008f17940780375db36a0f4e5822dc78497d7c67602cafa22e246b8cded8964d977290cd8a4297420c7cf1d481b3c9d485cddf8e4ff7fd5442f48fe4f7
7
+ data.tar.gz: 8a6e585230e1bc83e326723709f249fc9237a59447396c032c01cae95e5e2ae3bc67a76985af332c2b4015f362986114fb1c96eecf477733f2f2efcba2c0d19b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.10.0 (2021-11-30)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.9.0 (2021-11-04)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.8.0 (2021-10-18)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
19
+ 1.7.0 (2021-09-07)
20
+ ------------------
21
+
22
+ * Feature - Added SDK examples for SSM-Contacts.
23
+
4
24
  1.6.0 (2021-09-01)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.10.0
@@ -119,7 +119,9 @@ module Aws::SSMContacts
119
119
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
120
120
  # are very aggressive. Construct and pass an instance of
121
121
  # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
122
- # enable retries and extended timeouts.
122
+ # enable retries and extended timeouts. Instance profile credential
123
+ # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
124
+ # to true.
123
125
  #
124
126
  # @option options [required, String] :region
125
127
  # The AWS region to connect to. The configured `:region` is
@@ -285,6 +287,15 @@ module Aws::SSMContacts
285
287
  # ** Please note ** When response stubbing is enabled, no HTTP
286
288
  # requests are made, and retries are disabled.
287
289
  #
290
+ # @option options [Boolean] :use_dualstack_endpoint
291
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
292
+ # will be used if available.
293
+ #
294
+ # @option options [Boolean] :use_fips_endpoint
295
+ # When set to `true`, fips compatible endpoints will be used if available.
296
+ # When a `fips` region is used, the region is normalized and this config
297
+ # is set to `true`.
298
+ #
288
299
  # @option options [Boolean] :validate_params (true)
289
300
  # When `true`, request parameters are validated before
290
301
  # sending the request.
@@ -369,6 +380,21 @@ module Aws::SSMContacts
369
380
  #
370
381
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
371
382
  #
383
+ #
384
+ # @example Example: To accept a page during and engagement
385
+ #
386
+ # # The following accept-page operation uses an accept code sent to the contact channel to accept a page.
387
+ #
388
+ # resp = client.accept_page({
389
+ # accept_code: "425440",
390
+ # accept_type: "READ",
391
+ # page_id: "arn:aws:ssm-contacts:us-east-2:682428703967:page/akuam/94ea0c7b-56d9-46c3-b84a-a37c8b067ad3",
392
+ # })
393
+ #
394
+ # resp.to_h outputs the following:
395
+ # {
396
+ # }
397
+ #
372
398
  # @example Request syntax with placeholder values
373
399
  #
374
400
  # resp = client.accept_page({
@@ -401,6 +427,20 @@ module Aws::SSMContacts
401
427
  #
402
428
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
403
429
  #
430
+ #
431
+ # @example Example: Activate a contact's contact channel
432
+ #
433
+ # # The following activate-contact-channel example activates a contact channel and makes it usable as part of an incident.
434
+ #
435
+ # resp = client.activate_contact_channel({
436
+ # activation_code: "466136",
437
+ # contact_channel_id: "arn:aws:ssm-contacts:us-east-2:111122223333:contact-channel/akuam/fc7405c4-46b2-48b7-87b2-93e2f225b90d",
438
+ # })
439
+ #
440
+ # resp.to_h outputs the following:
441
+ # {
442
+ # }
443
+ #
404
444
  # @example Request syntax with placeholder values
405
445
  #
406
446
  # resp = client.activate_contact_channel({
@@ -442,7 +482,7 @@ module Aws::SSMContacts
442
482
  # first Region of your replication set.
443
483
  #
444
484
  # @option params [String] :idempotency_token
445
- # A token ensuring that the action is called only once with the
485
+ # A token ensuring that the operation is called only once with the
446
486
  # specified details.
447
487
  #
448
488
  # **A suitable default value is auto-generated.** You should normally
@@ -452,6 +492,28 @@ module Aws::SSMContacts
452
492
  #
453
493
  # * {Types::CreateContactResult#contact_arn #contact_arn} => String
454
494
  #
495
+ #
496
+ # @example Example: To create a contact
497
+ #
498
+ # # The following create-contact example creates a contact in your environment with a blank plan. The plan can be updated
499
+ # # after creating contact channels. Use the create-contact-channel operation with the output ARN of this command. After you
500
+ # # have created contact channels for this contact use update-contact to update the plan.
501
+ #
502
+ # resp = client.create_contact({
503
+ # alias: "akuam",
504
+ # display_name: "Akua Mansa",
505
+ # plan: {
506
+ # stages: [
507
+ # ],
508
+ # },
509
+ # type: "PERSONAL",
510
+ # })
511
+ #
512
+ # resp.to_h outputs the following:
513
+ # {
514
+ # contact_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/akuam",
515
+ # }
516
+ #
455
517
  # @example Request syntax with placeholder values
456
518
  #
457
519
  # resp = client.create_contact({
@@ -535,7 +597,7 @@ module Aws::SSMContacts
535
597
  # until it has been activated.
536
598
  #
537
599
  # @option params [String] :idempotency_token
538
- # A token ensuring that the action is called only once with the
600
+ # A token ensuring that the operation is called only once with the
539
601
  # specified details.
540
602
  #
541
603
  # **A suitable default value is auto-generated.** You should normally
@@ -545,6 +607,26 @@ module Aws::SSMContacts
545
607
  #
546
608
  # * {Types::CreateContactChannelResult#contact_channel_arn #contact_channel_arn} => String
547
609
  #
610
+ #
611
+ # @example Example: To create a contact channel
612
+ #
613
+ # # Creates a contact channel of type SMS for the contact Akua Mansa. Contact channels can be created of type SMS, EMAIL, or
614
+ # # VOICE.
615
+ #
616
+ # resp = client.create_contact_channel({
617
+ # contact_id: "arn:aws:ssm-contacts:us-east-1:111122223333:contact/akuam",
618
+ # delivery_address: {
619
+ # simple_address: "+15005550199",
620
+ # },
621
+ # name: "akuas sms-test",
622
+ # type: "SMS",
623
+ # })
624
+ #
625
+ # resp.to_h outputs the following:
626
+ # {
627
+ # contact_channel_arn: "arn:aws:ssm-contacts:us-east-1:111122223333:contact-channel/akuam/02f506b9-ea5d-4764-af89-2daa793ff024",
628
+ # }
629
+ #
548
630
  # @example Request syntax with placeholder values
549
631
  #
550
632
  # resp = client.create_contact_channel({
@@ -580,6 +662,21 @@ module Aws::SSMContacts
580
662
  #
581
663
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
582
664
  #
665
+ #
666
+ # @example Example: To deactivate a contact channel
667
+ #
668
+ # # The following ``deactivate-contact-channel`` example deactivates a contact channel. Deactivating a contact channel means
669
+ # # the contact channel will no longer be paged during an incident. You can also reactivate a contact channel at any time
670
+ # # using the activate-contact-channel operation.
671
+ #
672
+ # resp = client.deactivate_contact_channel({
673
+ # contact_channel_id: "arn:aws:ssm-contacts:us-east-2:111122223333:contact-channel/akuam/fc7405c4-46b2-48b7-87b2-93e2f225b90d",
674
+ # })
675
+ #
676
+ # resp.to_h outputs the following:
677
+ # {
678
+ # }
679
+ #
583
680
  # @example Request syntax with placeholder values
584
681
  #
585
682
  # resp = client.deactivate_contact_channel({
@@ -606,6 +703,20 @@ module Aws::SSMContacts
606
703
  #
607
704
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
608
705
  #
706
+ #
707
+ # @example Example: To delete a contact
708
+ #
709
+ # # The following delete-contact example deletes a contact. The contact will no longer be reachable from any escalation plan
710
+ # # that refers to them.
711
+ #
712
+ # resp = client.delete_contact({
713
+ # contact_id: "arn:aws:ssm-contacts:us-east-1:111122223333:contact/alejr",
714
+ # })
715
+ #
716
+ # resp.to_h outputs the following:
717
+ # {
718
+ # }
719
+ #
609
720
  # @example Request syntax with placeholder values
610
721
  #
611
722
  # resp = client.delete_contact({
@@ -632,6 +743,20 @@ module Aws::SSMContacts
632
743
  #
633
744
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
634
745
  #
746
+ #
747
+ # @example Example: To delete a contact channel
748
+ #
749
+ # # The following delete-contact-channel example deletes a contact channel. Deleting a contact channel ensures the contact
750
+ # # channel will not be paged during an incident.
751
+ #
752
+ # resp = client.delete_contact_channel({
753
+ # contact_channel_id: "arn:aws:ssm-contacts:us-east-1:111122223333:contact-channel/akuam/13149bad-52ee-45ea-ae1e-45857f78f9b2",
754
+ # })
755
+ #
756
+ # resp.to_h outputs the following:
757
+ # {
758
+ # }
759
+ #
635
760
  # @example Request syntax with placeholder values
636
761
  #
637
762
  # resp = client.delete_contact_channel({
@@ -668,6 +793,28 @@ module Aws::SSMContacts
668
793
  # * {Types::DescribeEngagementResult#start_time #start_time} => Time
669
794
  # * {Types::DescribeEngagementResult#stop_time #stop_time} => Time
670
795
  #
796
+ #
797
+ # @example Example: To describe the details of an engagement
798
+ #
799
+ # # The following describe-engagement example lists the details of an engagement to a contact or escalation plan. The
800
+ # # subject and content are sent to the contact channels.
801
+ #
802
+ # resp = client.describe_engagement({
803
+ # engagement_id: "arn:aws:ssm-contacts:us-east-2:111122223333:engagement/example_escalation/69e40ce1-8dbb-4d57-8962-5fbe7fc53356",
804
+ # })
805
+ #
806
+ # resp.to_h outputs the following:
807
+ # {
808
+ # contact_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/example_escalation",
809
+ # content: "Testing engagements",
810
+ # engagement_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:engagement/example_escalation/69e40ce1-8dbb-4d57-8962-5fbe7fc53356",
811
+ # public_content: "Testing engagements",
812
+ # public_subject: "test",
813
+ # sender: "tester",
814
+ # start_time: Time.parse("$2021-05-18T18:25:41.151000+00:00"),
815
+ # subject: "test",
816
+ # }
817
+ #
671
818
  # @example Request syntax with placeholder values
672
819
  #
673
820
  # resp = client.describe_engagement({
@@ -716,6 +863,31 @@ module Aws::SSMContacts
716
863
  # * {Types::DescribePageResult#read_time #read_time} => Time
717
864
  # * {Types::DescribePageResult#delivery_time #delivery_time} => Time
718
865
  #
866
+ #
867
+ # @example Example: To list the details of a page to a contact channel
868
+ #
869
+ # # The following describe-page example lists details of a page to a contact channel. The page will include the subject and
870
+ # # content provided.
871
+ #
872
+ # resp = client.describe_page({
873
+ # page_id: "arn:aws:ssm-contacts:us-east-2:111122223333:page/akuam/ad0052bd-e606-498a-861b-25726292eb93",
874
+ # })
875
+ #
876
+ # resp.to_h outputs the following:
877
+ # {
878
+ # contact_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/akuam",
879
+ # content: "Testing engagements",
880
+ # delivery_time: Time.parse("2021-05-18T18:43:55.265000+00:00"),
881
+ # engagement_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:engagement/akuam/78a29753-3674-4ac5-9f83-0468563567f0",
882
+ # page_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:page/akuam/ad0052bd-e606-498a-861b-25726292eb93",
883
+ # public_content: "Testing engagements",
884
+ # public_subject: "test",
885
+ # read_time: Time.parse("2021-05-18T18:43:55.708000+00:00"),
886
+ # sender: "tester",
887
+ # sent_time: Time.parse("2021-05-18T18:43:29.301000+00:00"),
888
+ # subject: "test",
889
+ # }
890
+ #
719
891
  # @example Request syntax with placeholder values
720
892
  #
721
893
  # resp = client.describe_page({
@@ -759,6 +931,113 @@ module Aws::SSMContacts
759
931
  # * {Types::GetContactResult#type #type} => String
760
932
  # * {Types::GetContactResult#plan #plan} => Types::Plan
761
933
  #
934
+ #
935
+ # @example Example: Example 1: To describe a contact plan
936
+ #
937
+ # # The following get-contact example describes a contact.
938
+ #
939
+ # resp = client.get_contact({
940
+ # contact_id: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/akuam",
941
+ # })
942
+ #
943
+ # resp.to_h outputs the following:
944
+ # {
945
+ # alias: "akuam",
946
+ # contact_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/akuam",
947
+ # display_name: "Akua Mansa",
948
+ # plan: {
949
+ # stages: [
950
+ # {
951
+ # duration_in_minutes: 5,
952
+ # targets: [
953
+ # {
954
+ # channel_target_info: {
955
+ # contact_channel_id: "arn:aws:ssm-contacts:us-east-2:111122223333:contact-channel/akuam/beb25840-5ac8-4644-95cc-7a8de390fa65",
956
+ # retry_interval_in_minutes: 1,
957
+ # },
958
+ # },
959
+ # ],
960
+ # },
961
+ # {
962
+ # duration_in_minutes: 5,
963
+ # targets: [
964
+ # {
965
+ # channel_target_info: {
966
+ # contact_channel_id: "arn:aws:ssm-contacts:us-east-2:111122223333:contact-channel/akuam/49f3c24d-5f9f-4638-ae25-3f49e04229ad",
967
+ # retry_interval_in_minutes: 1,
968
+ # },
969
+ # },
970
+ # ],
971
+ # },
972
+ # {
973
+ # duration_in_minutes: 5,
974
+ # targets: [
975
+ # {
976
+ # channel_target_info: {
977
+ # contact_channel_id: "arn:aws:ssm-contacts:us-east-2:111122223333:contact-channel/akuam/77d4f447-f619-4954-afff-85551e369c2a",
978
+ # retry_interval_in_minutes: 1,
979
+ # },
980
+ # },
981
+ # ],
982
+ # },
983
+ # ],
984
+ # },
985
+ # type: "PERSONAL",
986
+ # }
987
+ #
988
+ # @example Example: Example 2: To describe an escalation plan
989
+ #
990
+ # # The following get-contact example describes an escalation plan.
991
+ #
992
+ # resp = client.get_contact({
993
+ # contact_id: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/example_escalation",
994
+ # })
995
+ #
996
+ # resp.to_h outputs the following:
997
+ # {
998
+ # alias: "example_escalation",
999
+ # contact_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/example_escalation",
1000
+ # display_name: "Example Escalation Plan",
1001
+ # plan: {
1002
+ # stages: [
1003
+ # {
1004
+ # duration_in_minutes: 5,
1005
+ # targets: [
1006
+ # {
1007
+ # contact_target_info: {
1008
+ # contact_id: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/akuam",
1009
+ # is_essential: true,
1010
+ # },
1011
+ # },
1012
+ # ],
1013
+ # },
1014
+ # {
1015
+ # duration_in_minutes: 5,
1016
+ # targets: [
1017
+ # {
1018
+ # contact_target_info: {
1019
+ # contact_id: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/alejr",
1020
+ # is_essential: false,
1021
+ # },
1022
+ # },
1023
+ # ],
1024
+ # },
1025
+ # {
1026
+ # duration_in_minutes: 0,
1027
+ # targets: [
1028
+ # {
1029
+ # contact_target_info: {
1030
+ # contact_id: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/anasi",
1031
+ # is_essential: false,
1032
+ # },
1033
+ # },
1034
+ # ],
1035
+ # },
1036
+ # ],
1037
+ # },
1038
+ # type: "ESCALATION",
1039
+ # }
1040
+ #
762
1041
  # @example Request syntax with placeholder values
763
1042
  #
764
1043
  # resp = client.get_contact({
@@ -803,6 +1082,27 @@ module Aws::SSMContacts
803
1082
  # * {Types::GetContactChannelResult#delivery_address #delivery_address} => Types::ContactChannelAddress
804
1083
  # * {Types::GetContactChannelResult#activation_status #activation_status} => String
805
1084
  #
1085
+ #
1086
+ # @example Example: To list the details of a contact channel
1087
+ #
1088
+ # # The following get-contact-channel example lists the details of a contact channel.
1089
+ #
1090
+ # resp = client.get_contact_channel({
1091
+ # contact_channel_id: "arn:aws:ssm-contacts:us-east-2:111122223333:contact-channel/akuam/fc7405c4-46b2-48b7-87b2-93e2f225b90d",
1092
+ # })
1093
+ #
1094
+ # resp.to_h outputs the following:
1095
+ # {
1096
+ # activation_status: "ACTIVATED",
1097
+ # contact_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/akuam",
1098
+ # contact_channel_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:contact-channel/akuam/fc7405c4-46b2-48b7-87b2-93e2f225b90d",
1099
+ # delivery_address: {
1100
+ # simple_address: "+15005550199",
1101
+ # },
1102
+ # name: "akuas sms",
1103
+ # type: "SMS",
1104
+ # }
1105
+ #
806
1106
  # @example Request syntax with placeholder values
807
1107
  #
808
1108
  # resp = client.get_contact_channel({
@@ -838,6 +1138,21 @@ module Aws::SSMContacts
838
1138
  # * {Types::GetContactPolicyResult#contact_arn #contact_arn} => String
839
1139
  # * {Types::GetContactPolicyResult#policy #policy} => String
840
1140
  #
1141
+ #
1142
+ # @example Example: To list the resource policies of a contact
1143
+ #
1144
+ # # The following get-contact-policy example lists the resource policies associated with the specified contact.
1145
+ #
1146
+ # resp = client.get_contact_policy({
1147
+ # contact_arn: "arn:aws:ssm-contacts:us-east-1:111122223333:contact/akuam",
1148
+ # })
1149
+ #
1150
+ # resp.to_h outputs the following:
1151
+ # {
1152
+ # contact_arn: "arn:aws:ssm-contacts:us-east-1:111122223333:contact/akuam",
1153
+ # policy: "{\"Version\":\"2012-10-17\",\"Statement\":[{\"Sid\":\"SharePolicyForDocumentationDralia\",\"Effect\":\"Allow\",\"Principal\":{\"AWS\":\"222233334444\"},\"Action\":[\"ssm-contacts:GetContact\",\"ssm-contacts:StartEngagement\",\"ssm-contacts:DescribeEngagement\",\"ssm-contacts:ListPagesByEngagement\",\"ssm-contacts:StopEngagement\"],\"Resource\":[\"arn:aws:ssm-contacts:*:111122223333:contact/akuam\",\"arn:aws:ssm-contacts:*:111122223333:engagement/akuam/*\"]}]}",
1154
+ # }
1155
+ #
841
1156
  # @example Request syntax with placeholder values
842
1157
  #
843
1158
  # resp = client.get_contact_policy({
@@ -876,6 +1191,31 @@ module Aws::SSMContacts
876
1191
  #
877
1192
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
878
1193
  #
1194
+ #
1195
+ # @example Example: To list the contact channels of a contact
1196
+ #
1197
+ # # The following list-contact-channels example lists the available contact channels of the specified contact.
1198
+ #
1199
+ # resp = client.list_contact_channels({
1200
+ # contact_id: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/akuam",
1201
+ # })
1202
+ #
1203
+ # resp.to_h outputs the following:
1204
+ # {
1205
+ # contact_channels: [
1206
+ # {
1207
+ # activation_status: "ACTIVATED",
1208
+ # contact_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/akuam",
1209
+ # contact_channel_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:contact-channel/akuam/fc7405c4-46b2-48b7-87b2-93e2f225b90d",
1210
+ # delivery_address: {
1211
+ # simple_address: "+15005550100",
1212
+ # },
1213
+ # name: "akuas sms",
1214
+ # type: "SMS",
1215
+ # },
1216
+ # ],
1217
+ # }
1218
+ #
879
1219
  # @example Request syntax with placeholder values
880
1220
  #
881
1221
  # resp = client.list_contact_channels({
@@ -928,6 +1268,44 @@ module Aws::SSMContacts
928
1268
  #
929
1269
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
930
1270
  #
1271
+ #
1272
+ # @example Example: To list all escalation plans and contacts
1273
+ #
1274
+ # # The following list-contacts example lists the contacts and escalation plans in your account.
1275
+ #
1276
+ # resp = client.list_contacts({
1277
+ # })
1278
+ #
1279
+ # resp.to_h outputs the following:
1280
+ # {
1281
+ # contacts: [
1282
+ # {
1283
+ # alias: "akuam",
1284
+ # contact_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/akuam",
1285
+ # display_name: "Akua Mansa",
1286
+ # type: "PERSONAL",
1287
+ # },
1288
+ # {
1289
+ # alias: "alejr",
1290
+ # contact_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/alejr",
1291
+ # display_name: "Alejandro Rosalez",
1292
+ # type: "PERSONAL",
1293
+ # },
1294
+ # {
1295
+ # alias: "anasi",
1296
+ # contact_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/anasi",
1297
+ # display_name: "Ana Carolina Silva",
1298
+ # type: "PERSONAL",
1299
+ # },
1300
+ # {
1301
+ # alias: "example_escalation",
1302
+ # contact_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/example_escalation",
1303
+ # display_name: "Example Escalation",
1304
+ # type: "ESCALATION",
1305
+ # },
1306
+ # ],
1307
+ # }
1308
+ #
931
1309
  # @example Request syntax with placeholder values
932
1310
  #
933
1311
  # resp = client.list_contacts({
@@ -977,6 +1355,45 @@ module Aws::SSMContacts
977
1355
  #
978
1356
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
979
1357
  #
1358
+ #
1359
+ # @example Example: To list all engagements
1360
+ #
1361
+ # # The following list-engagements example lists engagements to escalation plans and contacts. You can also list engagements
1362
+ # # for a single incident.
1363
+ #
1364
+ # resp = client.list_engagements({
1365
+ # })
1366
+ #
1367
+ # resp.to_h outputs the following:
1368
+ # {
1369
+ # engagements: [
1370
+ # {
1371
+ # contact_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/akuam",
1372
+ # engagement_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:engagement/akuam/91792571-0b53-4821-9f73-d25d13d9e529",
1373
+ # sender: "cli",
1374
+ # start_time: Time.parse("2021-05-18T20:37:50.300000+00:00"),
1375
+ # },
1376
+ # {
1377
+ # contact_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/akuam",
1378
+ # engagement_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:engagement/akuam/78a29753-3674-4ac5-9f83-0468563567f0",
1379
+ # sender: "cli",
1380
+ # start_time: Time.parse("2021-05-18T18:40:26.666000+00:00"),
1381
+ # },
1382
+ # {
1383
+ # contact_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/example_escalation",
1384
+ # engagement_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:engagement/example_escalation/69e40ce1-8dbb-4d57-8962-5fbe7fc53356",
1385
+ # sender: "cli",
1386
+ # start_time: Time.parse("2021-05-18T18:25:41.151000+00:00"),
1387
+ # },
1388
+ # {
1389
+ # contact_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/akuam",
1390
+ # engagement_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:engagement/akuam/607ced0e-e8fa-4ea7-8958-a237b8803f8f",
1391
+ # sender: "cli",
1392
+ # start_time: Time.parse("2021-05-18T18:20:58.093000+00:00"),
1393
+ # },
1394
+ # ],
1395
+ # }
1396
+ #
980
1397
  # @example Request syntax with placeholder values
981
1398
  #
982
1399
  # resp = client.list_engagements({
@@ -1029,6 +1446,39 @@ module Aws::SSMContacts
1029
1446
  #
1030
1447
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1031
1448
  #
1449
+ #
1450
+ # @example Example: To list page receipts
1451
+ #
1452
+ # # The following command-name example lists whether a page was received or not by a contact.
1453
+ #
1454
+ # resp = client.list_page_receipts({
1455
+ # page_id: "arn:aws:ssm-contacts:us-east-2:111122223333:page/akuam/94ea0c7b-56d9-46c3-b84a-a37c8b067ad3",
1456
+ # })
1457
+ #
1458
+ # resp.to_h outputs the following:
1459
+ # {
1460
+ # receipts: [
1461
+ # {
1462
+ # contact_channel_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:contact-channel/akuam/fc7405c4-46b2-48b7-87b2-93e2f225b90d",
1463
+ # receipt_info: "425440",
1464
+ # receipt_time: Time.parse("2021-05-18T20:42:57.485000+00:00"),
1465
+ # receipt_type: "DELIVERED",
1466
+ # },
1467
+ # {
1468
+ # contact_channel_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:contact-channel/akuam/fc7405c4-46b2-48b7-87b2-93e2f225b90d",
1469
+ # receipt_info: "425440",
1470
+ # receipt_time: Time.parse("2021-05-18T20:42:57.907000+00:00"),
1471
+ # receipt_type: "READ",
1472
+ # },
1473
+ # {
1474
+ # contact_channel_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:contact-channel/akuam/fc7405c4-46b2-48b7-87b2-93e2f225b90d",
1475
+ # receipt_info: "SM6656c19132f1465f9c9c1123a5dde7c9",
1476
+ # receipt_time: Time.parse("2021-05-18T20:40:52.962000+00:00"),
1477
+ # receipt_type: "SENT",
1478
+ # },
1479
+ # ],
1480
+ # }
1481
+ #
1032
1482
  # @example Request syntax with placeholder values
1033
1483
  #
1034
1484
  # resp = client.list_page_receipts({
@@ -1075,6 +1525,30 @@ module Aws::SSMContacts
1075
1525
  #
1076
1526
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1077
1527
  #
1528
+ #
1529
+ # @example Example: To list pages by contact
1530
+ #
1531
+ # # The following list-pages-by-contact example lists all pages to the specified contact.
1532
+ #
1533
+ # resp = client.list_pages_by_contact({
1534
+ # contact_id: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/akuam",
1535
+ # })
1536
+ #
1537
+ # resp.to_h outputs the following:
1538
+ # {
1539
+ # pages: [
1540
+ # {
1541
+ # contact_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/akuam",
1542
+ # delivery_time: Time.parse("2021-05-18T18:43:55.265000+00:00"),
1543
+ # engagement_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:engagement/akuam/78a29753-3674-4ac5-9f83-0468563567f0",
1544
+ # page_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:page/akuam/ad0052bd-e606-498a-861b-25726292eb93",
1545
+ # read_time: Time.parse("2021-05-18T18:43:55.708000+00:00"),
1546
+ # sender: "cli",
1547
+ # sent_time: Time.parse("2021-05-18T18:43:29.301000+00:00"),
1548
+ # },
1549
+ # ],
1550
+ # }
1551
+ #
1078
1552
  # @example Request syntax with placeholder values
1079
1553
  #
1080
1554
  # resp = client.list_pages_by_contact({
@@ -1125,6 +1599,28 @@ module Aws::SSMContacts
1125
1599
  #
1126
1600
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
1127
1601
  #
1602
+ #
1603
+ # @example Example: To list pages to contact channels started from an engagement.
1604
+ #
1605
+ # # The following list-pages-by-engagement example lists the pages that occurred while engaging the defined engagement plan.
1606
+ #
1607
+ # resp = client.list_pages_by_engagement({
1608
+ # engagement_id: "arn:aws:ssm-contacts:us-east-2:111122223333:engagement/akuam/78a29753-3674-4ac5-9f83-0468563567f0",
1609
+ # })
1610
+ #
1611
+ # resp.to_h outputs the following:
1612
+ # {
1613
+ # pages: [
1614
+ # {
1615
+ # contact_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/akuam",
1616
+ # engagement_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:engagement/akuam/78a29753-3674-4ac5-9f83-0468563567f0",
1617
+ # page_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:page/akuam/ad0052bd-e606-498a-861b-25726292eb93",
1618
+ # sender: "cli",
1619
+ # sent_time: Time.parse("2021-05-18T18:40:27.245000+00:00"),
1620
+ # },
1621
+ # ],
1622
+ # }
1623
+ #
1128
1624
  # @example Request syntax with placeholder values
1129
1625
  #
1130
1626
  # resp = client.list_pages_by_engagement({
@@ -1164,6 +1660,25 @@ module Aws::SSMContacts
1164
1660
  #
1165
1661
  # * {Types::ListTagsForResourceResult#tags #tags} => Array<Types::Tag>
1166
1662
  #
1663
+ #
1664
+ # @example Example: To list tags for a contact
1665
+ #
1666
+ # # The following list-tags-for-resource example lists the tags of the specified contact.
1667
+ #
1668
+ # resp = client.list_tags_for_resource({
1669
+ # resource_arn: "arn:aws:ssm-contacts:us-east-1:111122223333:contact/akuam",
1670
+ # })
1671
+ #
1672
+ # resp.to_h outputs the following:
1673
+ # {
1674
+ # tags: [
1675
+ # {
1676
+ # key: "group1",
1677
+ # value: "1",
1678
+ # },
1679
+ # ],
1680
+ # }
1681
+ #
1167
1682
  # @example Request syntax with placeholder values
1168
1683
  #
1169
1684
  # resp = client.list_tags_for_resource({
@@ -1195,6 +1710,21 @@ module Aws::SSMContacts
1195
1710
  #
1196
1711
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1197
1712
  #
1713
+ #
1714
+ # @example Example: To share a contact and engagements
1715
+ #
1716
+ # # The following put-contact-policy example adds a resource policy to the contact Akua that shares the contact and related
1717
+ # # engagements with the principal.
1718
+ #
1719
+ # resp = client.put_contact_policy({
1720
+ # contact_arn: "arn:aws:ssm-contacts:us-east-1:111122223333:contact/akuam",
1721
+ # policy: "{\"Version\":\"2012-10-17\",\"Statement\":[{\"Sid\":\"ExampleResourcePolicy\",\"Action\":[\"ssm-contacts:GetContact\",\"ssm-contacts:StartEngagement\",\"ssm-contacts:DescribeEngagement\",\"ssm-contacts:ListPagesByEngagement\",\"ssm-contacts:StopEngagement\"],\"Principal\":{\"AWS\":\"222233334444\"},\"Effect\":\"Allow\",\"Resource\":[\"arn:aws:ssm-contacts:*:111122223333:contact/akuam\",\"arn:aws:ssm-contacts:*:111122223333:engagement/akuam/*\"]}]}",
1722
+ # })
1723
+ #
1724
+ # resp.to_h outputs the following:
1725
+ # {
1726
+ # }
1727
+ #
1198
1728
  # @example Request syntax with placeholder values
1199
1729
  #
1200
1730
  # resp = client.put_contact_policy({
@@ -1213,7 +1743,7 @@ module Aws::SSMContacts
1213
1743
 
1214
1744
  # Sends an activation code to a contact channel. The contact can use
1215
1745
  # this code to activate the contact channel in the console or with the
1216
- # `ActivateChannel` action. Incident Manager can't engage a contact
1746
+ # `ActivateChannel` operation. Incident Manager can't engage a contact
1217
1747
  # channel until it has been activated.
1218
1748
  #
1219
1749
  # @option params [required, String] :contact_channel_id
@@ -1221,6 +1751,19 @@ module Aws::SSMContacts
1221
1751
  #
1222
1752
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1223
1753
  #
1754
+ #
1755
+ # @example Example: To send an activation code
1756
+ #
1757
+ # # The following send-activation-code example sends an activation code and message to the specified contact channel.
1758
+ #
1759
+ # resp = client.send_activation_code({
1760
+ # contact_channel_id: "arn:aws:ssm-contacts:us-east-1:111122223333:contact-channel/akuam/8ddae2d1-12c8-4e45-b852-c8587266c400",
1761
+ # })
1762
+ #
1763
+ # resp.to_h outputs the following:
1764
+ # {
1765
+ # }
1766
+ #
1224
1767
  # @example Request syntax with placeholder values
1225
1768
  #
1226
1769
  # resp = client.send_activation_code({
@@ -1265,7 +1808,7 @@ module Aws::SSMContacts
1265
1808
  # The ARN of the incident that the engagement is part of.
1266
1809
  #
1267
1810
  # @option params [String] :idempotency_token
1268
- # A token ensuring that the action is called only once with the
1811
+ # A token ensuring that the operation is called only once with the
1269
1812
  # specified details.
1270
1813
  #
1271
1814
  # **A suitable default value is auto-generated.** You should normally
@@ -1275,6 +1818,47 @@ module Aws::SSMContacts
1275
1818
  #
1276
1819
  # * {Types::StartEngagementResult#engagement_arn #engagement_arn} => String
1277
1820
  #
1821
+ #
1822
+ # @example Example: Example 1: To page a contact's contact channels
1823
+ #
1824
+ # # The following start-engagement pages contact's contact channels. Sender, subject, public-subject, and public-content are
1825
+ # # all free from fields. Incident Manager sends the subject and content to the provided VOICE or EMAIL contact channels.
1826
+ # # Incident Manager sends the public-subject and public-content to the provided SMS contact channels. Sender is used to
1827
+ # # track who started the engagement.
1828
+ #
1829
+ # resp = client.start_engagement({
1830
+ # contact_id: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/akuam",
1831
+ # content: "Testing engagements",
1832
+ # public_content: "Testing engagements",
1833
+ # public_subject: "test",
1834
+ # sender: "tester",
1835
+ # subject: "test",
1836
+ # })
1837
+ #
1838
+ # resp.to_h outputs the following:
1839
+ # {
1840
+ # engagement_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:engagement/akuam/607ced0e-e8fa-4ea7-8958-a237b8803f8f",
1841
+ # }
1842
+ #
1843
+ # @example Example: Example 2: To page a contact in the provided escalation plan.
1844
+ #
1845
+ # # The following start-engagement engages contact's through an escalation plan. Each contact is paged according to their
1846
+ # # engagement plan.
1847
+ #
1848
+ # resp = client.start_engagement({
1849
+ # contact_id: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/example_escalation",
1850
+ # content: "Testing engagements",
1851
+ # public_content: "Testing engagements",
1852
+ # public_subject: "test",
1853
+ # sender: "tester",
1854
+ # subject: "test",
1855
+ # })
1856
+ #
1857
+ # resp.to_h outputs the following:
1858
+ # {
1859
+ # engagement_arn: "arn:aws:ssm-contacts:us-east-2:111122223333:engagement/example_escalation/69e40ce1-8dbb-4d57-8962-5fbe7fc53356",
1860
+ # }
1861
+ #
1278
1862
  # @example Request syntax with placeholder values
1279
1863
  #
1280
1864
  # resp = client.start_engagement({
@@ -1312,6 +1896,19 @@ module Aws::SSMContacts
1312
1896
  #
1313
1897
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1314
1898
  #
1899
+ #
1900
+ # @example Example: To stop an engagement
1901
+ #
1902
+ # # The following stop-engagement example stops an engagement from paging further contacts and contact channels.
1903
+ #
1904
+ # resp = client.stop_engagement({
1905
+ # engagement_id: "arn:aws:ssm-contacts:us-east-2:111122223333:engagement/example_escalation/69e40ce1-8dbb-4d57-8962-5fbe7fc53356",
1906
+ # })
1907
+ #
1908
+ # resp.to_h outputs the following:
1909
+ # {
1910
+ # }
1911
+ #
1315
1912
  # @example Request syntax with placeholder values
1316
1913
  #
1317
1914
  # resp = client.stop_engagement({
@@ -1339,6 +1936,25 @@ module Aws::SSMContacts
1339
1936
  #
1340
1937
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1341
1938
  #
1939
+ #
1940
+ # @example Example: To tag a contact
1941
+ #
1942
+ # # The following tag-resource example tags a specified contact with the provided tag key value pair.
1943
+ #
1944
+ # resp = client.tag_resource({
1945
+ # resource_arn: "arn:aws:ssm-contacts:us-east-1:111122223333:contact/akuam",
1946
+ # tags: [
1947
+ # {
1948
+ # key: "group1",
1949
+ # value: "1",
1950
+ # },
1951
+ # ],
1952
+ # })
1953
+ #
1954
+ # resp.to_h outputs the following:
1955
+ # {
1956
+ # }
1957
+ #
1342
1958
  # @example Request syntax with placeholder values
1343
1959
  #
1344
1960
  # resp = client.tag_resource({
@@ -1370,6 +1986,22 @@ module Aws::SSMContacts
1370
1986
  #
1371
1987
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1372
1988
  #
1989
+ #
1990
+ # @example Example: To remove tags from a contact
1991
+ #
1992
+ # # The following untag-resource example removes the group1 tag from the specified contact.
1993
+ #
1994
+ # resp = client.untag_resource({
1995
+ # resource_arn: "arn:aws:ssm-contacts:us-east-1:111122223333:contact/akuam",
1996
+ # tag_keys: [
1997
+ # "group1",
1998
+ # ],
1999
+ # })
2000
+ #
2001
+ # resp.to_h outputs the following:
2002
+ # {
2003
+ # }
2004
+ #
1373
2005
  # @example Request syntax with placeholder values
1374
2006
  #
1375
2007
  # resp = client.untag_resource({
@@ -1402,6 +2034,57 @@ module Aws::SSMContacts
1402
2034
  #
1403
2035
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1404
2036
  #
2037
+ #
2038
+ # @example Example: To update the engagement plan of contact
2039
+ #
2040
+ # # The following update-contact example updates the engagement plan of the contact Akua to include the three types of
2041
+ # # contacts channels. This is done after creating contact channels for Akua.
2042
+ #
2043
+ # resp = client.update_contact({
2044
+ # contact_id: "arn:aws:ssm-contacts:us-east-2:111122223333:contact/akuam",
2045
+ # plan: {
2046
+ # stages: [
2047
+ # {
2048
+ # duration_in_minutes: 5,
2049
+ # targets: [
2050
+ # {
2051
+ # channel_target_info: {
2052
+ # contact_channel_id: "arn:aws:ssm-contacts:us-east-2:111122223333:contact-channel/akuam/beb25840-5ac8-4644-95cc-7a8de390fa65",
2053
+ # retry_interval_in_minutes: 1,
2054
+ # },
2055
+ # },
2056
+ # ],
2057
+ # },
2058
+ # {
2059
+ # duration_in_minutes: 5,
2060
+ # targets: [
2061
+ # {
2062
+ # channel_target_info: {
2063
+ # contact_channel_id: "arn:aws:ssm-contacts:us-east-2:111122223333:contact-channel/akuam/49f3c24d-5f9f-4638-ae25-3f49e04229ad",
2064
+ # retry_interval_in_minutes: 1,
2065
+ # },
2066
+ # },
2067
+ # ],
2068
+ # },
2069
+ # {
2070
+ # duration_in_minutes: 5,
2071
+ # targets: [
2072
+ # {
2073
+ # channel_target_info: {
2074
+ # contact_channel_id: "arn:aws:ssm-contacts:us-east-2:111122223333:contact-channel/akuam/77d4f447-f619-4954-afff-85551e369c2a",
2075
+ # retry_interval_in_minutes: 1,
2076
+ # },
2077
+ # },
2078
+ # ],
2079
+ # },
2080
+ # ],
2081
+ # },
2082
+ # })
2083
+ #
2084
+ # resp.to_h outputs the following:
2085
+ # {
2086
+ # }
2087
+ #
1405
2088
  # @example Request syntax with placeholder values
1406
2089
  #
1407
2090
  # resp = client.update_contact({
@@ -1444,7 +2127,7 @@ module Aws::SSMContacts
1444
2127
  # update.
1445
2128
  #
1446
2129
  # @option params [String] :name
1447
- # The name of the contact channel
2130
+ # The name of the contact channel.
1448
2131
  #
1449
2132
  # @option params [Types::ContactChannelAddress] :delivery_address
1450
2133
  # The details that Incident Manager uses when trying to engage the
@@ -1452,6 +2135,23 @@ module Aws::SSMContacts
1452
2135
  #
1453
2136
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1454
2137
  #
2138
+ #
2139
+ # @example Example: To update a contact channel
2140
+ #
2141
+ # # The following update-contact-channel example updates the name and delivery address of a contact channel.
2142
+ #
2143
+ # resp = client.update_contact_channel({
2144
+ # contact_channel_id: "arn:aws:ssm-contacts:us-east-2:111122223333:contact-channel/akuam/49f3c24d-5f9f-4638-ae25-3f49e04229ad",
2145
+ # delivery_address: {
2146
+ # simple_address: "+15005550198",
2147
+ # },
2148
+ # name: "akuas voice channel",
2149
+ # })
2150
+ #
2151
+ # resp.to_h outputs the following:
2152
+ # {
2153
+ # }
2154
+ #
1455
2155
  # @example Request syntax with placeholder values
1456
2156
  #
1457
2157
  # resp = client.update_contact_channel({
@@ -1484,7 +2184,7 @@ module Aws::SSMContacts
1484
2184
  params: params,
1485
2185
  config: config)
1486
2186
  context[:gem_name] = 'aws-sdk-ssmcontacts'
1487
- context[:gem_version] = '1.6.0'
2187
+ context[:gem_version] = '1.10.0'
1488
2188
  Seahorse::Client::Request.new(handlers, context)
1489
2189
  end
1490
2190
 
@@ -74,7 +74,7 @@ module Aws::SSMContacts
74
74
  #
75
75
  class AcceptPageResult < Aws::EmptyStructure; end
76
76
 
77
- # You don't have sufficient access to perform this action.
77
+ # You don't have sufficient access to perform this operation.
78
78
  #
79
79
  # @!attribute [rw] message
80
80
  # @return [String]
@@ -358,7 +358,7 @@ module Aws::SSMContacts
358
358
  # @return [Boolean]
359
359
  #
360
360
  # @!attribute [rw] idempotency_token
361
- # A token ensuring that the action is called only once with the
361
+ # A token ensuring that the operation is called only once with the
362
362
  # specified details.
363
363
  #
364
364
  # **A suitable default value is auto-generated.** You should normally
@@ -379,7 +379,7 @@ module Aws::SSMContacts
379
379
  end
380
380
 
381
381
  # @!attribute [rw] contact_channel_arn
382
- # The ARN of the contact channel.
382
+ # The Amazon Resource Name (ARN) of the contact channel.
383
383
  # @return [String]
384
384
  #
385
385
  # @see http://docs.aws.amazon.com/goto/WebAPI/ssm-contacts-2021-05-03/CreateContactChannelResult AWS API Documentation
@@ -451,7 +451,7 @@ module Aws::SSMContacts
451
451
  # @return [Array<Types::Tag>]
452
452
  #
453
453
  # @!attribute [rw] idempotency_token
454
- # A token ensuring that the action is called only once with the
454
+ # A token ensuring that the operation is called only once with the
455
455
  # specified details.
456
456
  #
457
457
  # **A suitable default value is auto-generated.** You should normally
@@ -484,7 +484,7 @@ module Aws::SSMContacts
484
484
  include Aws::Structure
485
485
  end
486
486
 
487
- # The action failed to due an encryption key error.
487
+ # The operation failed to due an encryption key error.
488
488
  #
489
489
  # @!attribute [rw] message
490
490
  # @return [String]
@@ -1607,7 +1607,7 @@ module Aws::SSMContacts
1607
1607
  # @return [String]
1608
1608
  #
1609
1609
  # @!attribute [rw] idempotency_token
1610
- # A token ensuring that the action is called only once with the
1610
+ # A token ensuring that the operation is called only once with the
1611
1611
  # specified details.
1612
1612
  #
1613
1613
  # **A suitable default value is auto-generated.** You should normally
@@ -1732,7 +1732,7 @@ module Aws::SSMContacts
1732
1732
  #
1733
1733
  class TagResourceResult < Aws::EmptyStructure; end
1734
1734
 
1735
- # The contact or contact channel that is being engaged.
1735
+ # The contact or contact channel that's being engaged.
1736
1736
  #
1737
1737
  # @note When making an API call, you may pass Target
1738
1738
  # data as a hash:
@@ -1866,7 +1866,7 @@ module Aws::SSMContacts
1866
1866
  # @return [String]
1867
1867
  #
1868
1868
  # @!attribute [rw] name
1869
- # The name of the contact channel
1869
+ # The name of the contact channel.
1870
1870
  # @return [String]
1871
1871
  #
1872
1872
  # @!attribute [rw] delivery_address
@@ -1944,8 +1944,8 @@ module Aws::SSMContacts
1944
1944
  #
1945
1945
  class UpdateContactResult < Aws::EmptyStructure; end
1946
1946
 
1947
- # The input fails to satisfy the constraints specified by an AWS
1948
- # service.
1947
+ # The input fails to satisfy the constraints specified by an Amazon Web
1948
+ # Services service.
1949
1949
  #
1950
1950
  # @!attribute [rw] message
1951
1951
  # @return [String]
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-ssmcontacts/customizations'
48
48
  # @!group service
49
49
  module Aws::SSMContacts
50
50
 
51
- GEM_VERSION = '1.6.0'
51
+ GEM_VERSION = '1.10.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ssmcontacts
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-09-01 00:00:00.000000000 Z
11
+ date: 2021-11-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.120.0
22
+ version: 3.122.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.120.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement