aws-sdk-chime 1.26.0 → 1.31.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-chime.rb +3 -1
- data/lib/aws-sdk-chime/client.rb +224 -11
- data/lib/aws-sdk-chime/client_api.rb +100 -0
- data/lib/aws-sdk-chime/errors.rb +2 -0
- data/lib/aws-sdk-chime/resource.rb +2 -0
- data/lib/aws-sdk-chime/types.rb +534 -6
- metadata +4 -4
data/lib/aws-sdk-chime/errors.rb
CHANGED
data/lib/aws-sdk-chime/types.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -21,6 +23,7 @@ module Aws::Chime
|
|
21
23
|
class AccessDeniedException < Struct.new(
|
22
24
|
:code,
|
23
25
|
:message)
|
26
|
+
SENSITIVE = []
|
24
27
|
include Aws::Structure
|
25
28
|
end
|
26
29
|
|
@@ -76,6 +79,7 @@ module Aws::Chime
|
|
76
79
|
:default_license,
|
77
80
|
:supported_licenses,
|
78
81
|
:signin_delegate_groups)
|
82
|
+
SENSITIVE = []
|
79
83
|
include Aws::Structure
|
80
84
|
end
|
81
85
|
|
@@ -117,6 +121,7 @@ module Aws::Chime
|
|
117
121
|
class AccountSettings < Struct.new(
|
118
122
|
:disable_remote_control,
|
119
123
|
:enable_dial_out)
|
124
|
+
SENSITIVE = []
|
120
125
|
include Aws::Structure
|
121
126
|
end
|
122
127
|
|
@@ -144,6 +149,7 @@ module Aws::Chime
|
|
144
149
|
class AlexaForBusinessMetadata < Struct.new(
|
145
150
|
:is_alexa_for_business_enabled,
|
146
151
|
:alexa_for_business_room_arn)
|
152
|
+
SENSITIVE = [:alexa_for_business_room_arn]
|
147
153
|
include Aws::Structure
|
148
154
|
end
|
149
155
|
|
@@ -174,6 +180,7 @@ module Aws::Chime
|
|
174
180
|
:account_id,
|
175
181
|
:user_id,
|
176
182
|
:e164_phone_number)
|
183
|
+
SENSITIVE = [:e164_phone_number]
|
177
184
|
include Aws::Structure
|
178
185
|
end
|
179
186
|
|
@@ -211,6 +218,7 @@ module Aws::Chime
|
|
211
218
|
:voice_connector_group_id,
|
212
219
|
:e164_phone_numbers,
|
213
220
|
:force_associate)
|
221
|
+
SENSITIVE = []
|
214
222
|
include Aws::Structure
|
215
223
|
end
|
216
224
|
|
@@ -224,6 +232,7 @@ module Aws::Chime
|
|
224
232
|
#
|
225
233
|
class AssociatePhoneNumbersWithVoiceConnectorGroupResponse < Struct.new(
|
226
234
|
:phone_number_errors)
|
235
|
+
SENSITIVE = []
|
227
236
|
include Aws::Structure
|
228
237
|
end
|
229
238
|
|
@@ -257,6 +266,7 @@ module Aws::Chime
|
|
257
266
|
:voice_connector_id,
|
258
267
|
:e164_phone_numbers,
|
259
268
|
:force_associate)
|
269
|
+
SENSITIVE = []
|
260
270
|
include Aws::Structure
|
261
271
|
end
|
262
272
|
|
@@ -270,6 +280,7 @@ module Aws::Chime
|
|
270
280
|
#
|
271
281
|
class AssociatePhoneNumbersWithVoiceConnectorResponse < Struct.new(
|
272
282
|
:phone_number_errors)
|
283
|
+
SENSITIVE = []
|
273
284
|
include Aws::Structure
|
274
285
|
end
|
275
286
|
|
@@ -298,6 +309,7 @@ module Aws::Chime
|
|
298
309
|
class AssociateSigninDelegateGroupsWithAccountRequest < Struct.new(
|
299
310
|
:account_id,
|
300
311
|
:signin_delegate_groups)
|
312
|
+
SENSITIVE = []
|
301
313
|
include Aws::Structure
|
302
314
|
end
|
303
315
|
|
@@ -334,6 +346,7 @@ module Aws::Chime
|
|
334
346
|
:external_user_id,
|
335
347
|
:attendee_id,
|
336
348
|
:join_token)
|
349
|
+
SENSITIVE = [:external_user_id, :join_token]
|
337
350
|
include Aws::Structure
|
338
351
|
end
|
339
352
|
|
@@ -350,6 +363,7 @@ module Aws::Chime
|
|
350
363
|
class BadRequestException < Struct.new(
|
351
364
|
:code,
|
352
365
|
:message)
|
366
|
+
SENSITIVE = []
|
353
367
|
include Aws::Structure
|
354
368
|
end
|
355
369
|
|
@@ -384,6 +398,7 @@ module Aws::Chime
|
|
384
398
|
class BatchCreateAttendeeRequest < Struct.new(
|
385
399
|
:meeting_id,
|
386
400
|
:attendees)
|
401
|
+
SENSITIVE = []
|
387
402
|
include Aws::Structure
|
388
403
|
end
|
389
404
|
|
@@ -402,6 +417,7 @@ module Aws::Chime
|
|
402
417
|
class BatchCreateAttendeeResponse < Struct.new(
|
403
418
|
:attendees,
|
404
419
|
:errors)
|
420
|
+
SENSITIVE = []
|
405
421
|
include Aws::Structure
|
406
422
|
end
|
407
423
|
|
@@ -437,6 +453,7 @@ module Aws::Chime
|
|
437
453
|
:account_id,
|
438
454
|
:room_id,
|
439
455
|
:membership_item_list)
|
456
|
+
SENSITIVE = []
|
440
457
|
include Aws::Structure
|
441
458
|
end
|
442
459
|
|
@@ -450,6 +467,7 @@ module Aws::Chime
|
|
450
467
|
#
|
451
468
|
class BatchCreateRoomMembershipResponse < Struct.new(
|
452
469
|
:errors)
|
470
|
+
SENSITIVE = []
|
453
471
|
include Aws::Structure
|
454
472
|
end
|
455
473
|
|
@@ -468,6 +486,7 @@ module Aws::Chime
|
|
468
486
|
#
|
469
487
|
class BatchDeletePhoneNumberRequest < Struct.new(
|
470
488
|
:phone_number_ids)
|
489
|
+
SENSITIVE = []
|
471
490
|
include Aws::Structure
|
472
491
|
end
|
473
492
|
|
@@ -481,6 +500,7 @@ module Aws::Chime
|
|
481
500
|
#
|
482
501
|
class BatchDeletePhoneNumberResponse < Struct.new(
|
483
502
|
:phone_number_errors)
|
503
|
+
SENSITIVE = []
|
484
504
|
include Aws::Structure
|
485
505
|
end
|
486
506
|
|
@@ -505,6 +525,7 @@ module Aws::Chime
|
|
505
525
|
class BatchSuspendUserRequest < Struct.new(
|
506
526
|
:account_id,
|
507
527
|
:user_id_list)
|
528
|
+
SENSITIVE = []
|
508
529
|
include Aws::Structure
|
509
530
|
end
|
510
531
|
|
@@ -518,6 +539,7 @@ module Aws::Chime
|
|
518
539
|
#
|
519
540
|
class BatchSuspendUserResponse < Struct.new(
|
520
541
|
:user_errors)
|
542
|
+
SENSITIVE = []
|
521
543
|
include Aws::Structure
|
522
544
|
end
|
523
545
|
|
@@ -542,6 +564,7 @@ module Aws::Chime
|
|
542
564
|
class BatchUnsuspendUserRequest < Struct.new(
|
543
565
|
:account_id,
|
544
566
|
:user_id_list)
|
567
|
+
SENSITIVE = []
|
545
568
|
include Aws::Structure
|
546
569
|
end
|
547
570
|
|
@@ -555,6 +578,7 @@ module Aws::Chime
|
|
555
578
|
#
|
556
579
|
class BatchUnsuspendUserResponse < Struct.new(
|
557
580
|
:user_errors)
|
581
|
+
SENSITIVE = []
|
558
582
|
include Aws::Structure
|
559
583
|
end
|
560
584
|
|
@@ -580,6 +604,7 @@ module Aws::Chime
|
|
580
604
|
#
|
581
605
|
class BatchUpdatePhoneNumberRequest < Struct.new(
|
582
606
|
:update_phone_number_request_items)
|
607
|
+
SENSITIVE = []
|
583
608
|
include Aws::Structure
|
584
609
|
end
|
585
610
|
|
@@ -593,6 +618,7 @@ module Aws::Chime
|
|
593
618
|
#
|
594
619
|
class BatchUpdatePhoneNumberResponse < Struct.new(
|
595
620
|
:phone_number_errors)
|
621
|
+
SENSITIVE = []
|
596
622
|
include Aws::Structure
|
597
623
|
end
|
598
624
|
|
@@ -627,6 +653,7 @@ module Aws::Chime
|
|
627
653
|
class BatchUpdateUserRequest < Struct.new(
|
628
654
|
:account_id,
|
629
655
|
:update_user_request_items)
|
656
|
+
SENSITIVE = []
|
630
657
|
include Aws::Structure
|
631
658
|
end
|
632
659
|
|
@@ -640,6 +667,7 @@ module Aws::Chime
|
|
640
667
|
#
|
641
668
|
class BatchUpdateUserResponse < Struct.new(
|
642
669
|
:user_errors)
|
670
|
+
SENSITIVE = []
|
643
671
|
include Aws::Structure
|
644
672
|
end
|
645
673
|
|
@@ -695,6 +723,7 @@ module Aws::Chime
|
|
695
723
|
:updated_timestamp,
|
696
724
|
:bot_email,
|
697
725
|
:security_token)
|
726
|
+
SENSITIVE = [:display_name, :bot_email, :security_token]
|
698
727
|
include Aws::Structure
|
699
728
|
end
|
700
729
|
|
@@ -717,6 +746,7 @@ module Aws::Chime
|
|
717
746
|
#
|
718
747
|
class BusinessCallingSettings < Struct.new(
|
719
748
|
:cdr_bucket)
|
749
|
+
SENSITIVE = []
|
720
750
|
include Aws::Structure
|
721
751
|
end
|
722
752
|
|
@@ -734,6 +764,29 @@ module Aws::Chime
|
|
734
764
|
class ConflictException < Struct.new(
|
735
765
|
:code,
|
736
766
|
:message)
|
767
|
+
SENSITIVE = []
|
768
|
+
include Aws::Structure
|
769
|
+
end
|
770
|
+
|
771
|
+
# The retention settings that determine how long to retain chat
|
772
|
+
# conversation messages for an Amazon Chime Enterprise account.
|
773
|
+
#
|
774
|
+
# @note When making an API call, you may pass ConversationRetentionSettings
|
775
|
+
# data as a hash:
|
776
|
+
#
|
777
|
+
# {
|
778
|
+
# retention_days: 1,
|
779
|
+
# }
|
780
|
+
#
|
781
|
+
# @!attribute [rw] retention_days
|
782
|
+
# The number of days for which to retain chat conversation messages.
|
783
|
+
# @return [Integer]
|
784
|
+
#
|
785
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/ConversationRetentionSettings AWS API Documentation
|
786
|
+
#
|
787
|
+
class ConversationRetentionSettings < Struct.new(
|
788
|
+
:retention_days)
|
789
|
+
SENSITIVE = []
|
737
790
|
include Aws::Structure
|
738
791
|
end
|
739
792
|
|
@@ -752,6 +805,7 @@ module Aws::Chime
|
|
752
805
|
#
|
753
806
|
class CreateAccountRequest < Struct.new(
|
754
807
|
:name)
|
808
|
+
SENSITIVE = []
|
755
809
|
include Aws::Structure
|
756
810
|
end
|
757
811
|
|
@@ -763,6 +817,7 @@ module Aws::Chime
|
|
763
817
|
#
|
764
818
|
class CreateAccountResponse < Struct.new(
|
765
819
|
:account)
|
820
|
+
SENSITIVE = []
|
766
821
|
include Aws::Structure
|
767
822
|
end
|
768
823
|
|
@@ -789,6 +844,7 @@ module Aws::Chime
|
|
789
844
|
:external_user_id,
|
790
845
|
:error_code,
|
791
846
|
:error_message)
|
847
|
+
SENSITIVE = [:external_user_id]
|
792
848
|
include Aws::Structure
|
793
849
|
end
|
794
850
|
|
@@ -825,6 +881,7 @@ module Aws::Chime
|
|
825
881
|
:meeting_id,
|
826
882
|
:external_user_id,
|
827
883
|
:tags)
|
884
|
+
SENSITIVE = [:external_user_id]
|
828
885
|
include Aws::Structure
|
829
886
|
end
|
830
887
|
|
@@ -858,6 +915,7 @@ module Aws::Chime
|
|
858
915
|
class CreateAttendeeRequestItem < Struct.new(
|
859
916
|
:external_user_id,
|
860
917
|
:tags)
|
918
|
+
SENSITIVE = [:external_user_id]
|
861
919
|
include Aws::Structure
|
862
920
|
end
|
863
921
|
|
@@ -869,6 +927,7 @@ module Aws::Chime
|
|
869
927
|
#
|
870
928
|
class CreateAttendeeResponse < Struct.new(
|
871
929
|
:attendee)
|
930
|
+
SENSITIVE = []
|
872
931
|
include Aws::Structure
|
873
932
|
end
|
874
933
|
|
@@ -899,6 +958,7 @@ module Aws::Chime
|
|
899
958
|
:account_id,
|
900
959
|
:display_name,
|
901
960
|
:domain)
|
961
|
+
SENSITIVE = [:display_name]
|
902
962
|
include Aws::Structure
|
903
963
|
end
|
904
964
|
|
@@ -910,6 +970,7 @@ module Aws::Chime
|
|
910
970
|
#
|
911
971
|
class CreateBotResponse < Struct.new(
|
912
972
|
:bot)
|
973
|
+
SENSITIVE = []
|
913
974
|
include Aws::Structure
|
914
975
|
end
|
915
976
|
|
@@ -950,11 +1011,12 @@ module Aws::Chime
|
|
950
1011
|
# @return [String]
|
951
1012
|
#
|
952
1013
|
# @!attribute [rw] media_region
|
953
|
-
# The Region in which to create the meeting.
|
954
|
-
#
|
955
|
-
#
|
956
|
-
# `
|
957
|
-
# `
|
1014
|
+
# The Region in which to create the meeting. Default: `us-east-1`.
|
1015
|
+
#
|
1016
|
+
# Available values: `ap-northeast-1`, `ap-southeast-1`,
|
1017
|
+
# `ap-southeast-2`, `ca-central-1`, `eu-central-1`, `eu-north-1`,
|
1018
|
+
# `eu-west-1`, `eu-west-2`, `eu-west-3`, `sa-east-1`, `us-east-1`,
|
1019
|
+
# `us-east-2`, `us-west-1`, `us-west-2`.
|
958
1020
|
# @return [String]
|
959
1021
|
#
|
960
1022
|
# @!attribute [rw] tags
|
@@ -975,6 +1037,7 @@ module Aws::Chime
|
|
975
1037
|
:media_region,
|
976
1038
|
:tags,
|
977
1039
|
:notifications_configuration)
|
1040
|
+
SENSITIVE = [:client_request_token, :external_meeting_id, :meeting_host_id]
|
978
1041
|
include Aws::Structure
|
979
1042
|
end
|
980
1043
|
|
@@ -987,6 +1050,116 @@ module Aws::Chime
|
|
987
1050
|
#
|
988
1051
|
class CreateMeetingResponse < Struct.new(
|
989
1052
|
:meeting)
|
1053
|
+
SENSITIVE = []
|
1054
|
+
include Aws::Structure
|
1055
|
+
end
|
1056
|
+
|
1057
|
+
# @note When making an API call, you may pass CreateMeetingWithAttendeesRequest
|
1058
|
+
# data as a hash:
|
1059
|
+
#
|
1060
|
+
# {
|
1061
|
+
# client_request_token: "ClientRequestToken", # required
|
1062
|
+
# external_meeting_id: "ExternalMeetingIdType",
|
1063
|
+
# meeting_host_id: "ExternalUserIdType",
|
1064
|
+
# media_region: "String",
|
1065
|
+
# tags: [
|
1066
|
+
# {
|
1067
|
+
# key: "TagKey", # required
|
1068
|
+
# value: "TagValue", # required
|
1069
|
+
# },
|
1070
|
+
# ],
|
1071
|
+
# notifications_configuration: {
|
1072
|
+
# sns_topic_arn: "Arn",
|
1073
|
+
# sqs_queue_arn: "Arn",
|
1074
|
+
# },
|
1075
|
+
# attendees: [
|
1076
|
+
# {
|
1077
|
+
# external_user_id: "ExternalUserIdType", # required
|
1078
|
+
# tags: [
|
1079
|
+
# {
|
1080
|
+
# key: "TagKey", # required
|
1081
|
+
# value: "TagValue", # required
|
1082
|
+
# },
|
1083
|
+
# ],
|
1084
|
+
# },
|
1085
|
+
# ],
|
1086
|
+
# }
|
1087
|
+
#
|
1088
|
+
# @!attribute [rw] client_request_token
|
1089
|
+
# The unique identifier for the client request. Use a different token
|
1090
|
+
# for different meetings.
|
1091
|
+
#
|
1092
|
+
# **A suitable default value is auto-generated.** You should normally
|
1093
|
+
# not need to pass this option.
|
1094
|
+
# @return [String]
|
1095
|
+
#
|
1096
|
+
# @!attribute [rw] external_meeting_id
|
1097
|
+
# The external meeting ID.
|
1098
|
+
# @return [String]
|
1099
|
+
#
|
1100
|
+
# @!attribute [rw] meeting_host_id
|
1101
|
+
# Reserved.
|
1102
|
+
# @return [String]
|
1103
|
+
#
|
1104
|
+
# @!attribute [rw] media_region
|
1105
|
+
# The Region in which to create the meeting. Default: `us-east-1`.
|
1106
|
+
#
|
1107
|
+
# Available values: `ap-northeast-1`, `ap-southeast-1`,
|
1108
|
+
# `ap-southeast-2`, `ca-central-1`, `eu-central-1`, `eu-north-1`,
|
1109
|
+
# `eu-west-1`, `eu-west-2`, `eu-west-3`, `sa-east-1`, `us-east-1`,
|
1110
|
+
# `us-east-2`, `us-west-1`, `us-west-2`.
|
1111
|
+
# @return [String]
|
1112
|
+
#
|
1113
|
+
# @!attribute [rw] tags
|
1114
|
+
# The tag key-value pairs.
|
1115
|
+
# @return [Array<Types::Tag>]
|
1116
|
+
#
|
1117
|
+
# @!attribute [rw] notifications_configuration
|
1118
|
+
# The configuration for resource targets to receive notifications when
|
1119
|
+
# Amazon Chime SDK meeting and attendee events occur. The Amazon Chime
|
1120
|
+
# SDK supports resource targets located in the US East (N. Virginia)
|
1121
|
+
# AWS Region (`us-east-1`).
|
1122
|
+
# @return [Types::MeetingNotificationConfiguration]
|
1123
|
+
#
|
1124
|
+
# @!attribute [rw] attendees
|
1125
|
+
# The request containing the attendees to create.
|
1126
|
+
# @return [Array<Types::CreateAttendeeRequestItem>]
|
1127
|
+
#
|
1128
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateMeetingWithAttendeesRequest AWS API Documentation
|
1129
|
+
#
|
1130
|
+
class CreateMeetingWithAttendeesRequest < Struct.new(
|
1131
|
+
:client_request_token,
|
1132
|
+
:external_meeting_id,
|
1133
|
+
:meeting_host_id,
|
1134
|
+
:media_region,
|
1135
|
+
:tags,
|
1136
|
+
:notifications_configuration,
|
1137
|
+
:attendees)
|
1138
|
+
SENSITIVE = [:client_request_token, :external_meeting_id, :meeting_host_id]
|
1139
|
+
include Aws::Structure
|
1140
|
+
end
|
1141
|
+
|
1142
|
+
# @!attribute [rw] meeting
|
1143
|
+
# A meeting created using the Amazon Chime SDK.
|
1144
|
+
# @return [Types::Meeting]
|
1145
|
+
#
|
1146
|
+
# @!attribute [rw] attendees
|
1147
|
+
# The attendee information, including attendees IDs and join tokens.
|
1148
|
+
# @return [Array<Types::Attendee>]
|
1149
|
+
#
|
1150
|
+
# @!attribute [rw] errors
|
1151
|
+
# If the action fails for one or more of the attendees in the request,
|
1152
|
+
# a list of the attendees is returned, along with error codes and
|
1153
|
+
# error messages.
|
1154
|
+
# @return [Array<Types::CreateAttendeeError>]
|
1155
|
+
#
|
1156
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/CreateMeetingWithAttendeesResponse AWS API Documentation
|
1157
|
+
#
|
1158
|
+
class CreateMeetingWithAttendeesResponse < Struct.new(
|
1159
|
+
:meeting,
|
1160
|
+
:attendees,
|
1161
|
+
:errors)
|
1162
|
+
SENSITIVE = []
|
990
1163
|
include Aws::Structure
|
991
1164
|
end
|
992
1165
|
|
@@ -1011,6 +1184,7 @@ module Aws::Chime
|
|
1011
1184
|
class CreatePhoneNumberOrderRequest < Struct.new(
|
1012
1185
|
:product_type,
|
1013
1186
|
:e164_phone_numbers)
|
1187
|
+
SENSITIVE = []
|
1014
1188
|
include Aws::Structure
|
1015
1189
|
end
|
1016
1190
|
|
@@ -1022,6 +1196,7 @@ module Aws::Chime
|
|
1022
1196
|
#
|
1023
1197
|
class CreatePhoneNumberOrderResponse < Struct.new(
|
1024
1198
|
:phone_number_order)
|
1199
|
+
SENSITIVE = []
|
1025
1200
|
include Aws::Structure
|
1026
1201
|
end
|
1027
1202
|
|
@@ -1087,6 +1262,7 @@ module Aws::Chime
|
|
1087
1262
|
:number_selection_behavior,
|
1088
1263
|
:geo_match_level,
|
1089
1264
|
:geo_match_params)
|
1265
|
+
SENSITIVE = [:name]
|
1090
1266
|
include Aws::Structure
|
1091
1267
|
end
|
1092
1268
|
|
@@ -1098,6 +1274,7 @@ module Aws::Chime
|
|
1098
1274
|
#
|
1099
1275
|
class CreateProxySessionResponse < Struct.new(
|
1100
1276
|
:proxy_session)
|
1277
|
+
SENSITIVE = []
|
1101
1278
|
include Aws::Structure
|
1102
1279
|
end
|
1103
1280
|
|
@@ -1134,6 +1311,7 @@ module Aws::Chime
|
|
1134
1311
|
:room_id,
|
1135
1312
|
:member_id,
|
1136
1313
|
:role)
|
1314
|
+
SENSITIVE = []
|
1137
1315
|
include Aws::Structure
|
1138
1316
|
end
|
1139
1317
|
|
@@ -1145,6 +1323,7 @@ module Aws::Chime
|
|
1145
1323
|
#
|
1146
1324
|
class CreateRoomMembershipResponse < Struct.new(
|
1147
1325
|
:room_membership)
|
1326
|
+
SENSITIVE = []
|
1148
1327
|
include Aws::Structure
|
1149
1328
|
end
|
1150
1329
|
|
@@ -1178,6 +1357,7 @@ module Aws::Chime
|
|
1178
1357
|
:account_id,
|
1179
1358
|
:name,
|
1180
1359
|
:client_request_token)
|
1360
|
+
SENSITIVE = [:name, :client_request_token]
|
1181
1361
|
include Aws::Structure
|
1182
1362
|
end
|
1183
1363
|
|
@@ -1189,6 +1369,7 @@ module Aws::Chime
|
|
1189
1369
|
#
|
1190
1370
|
class CreateRoomResponse < Struct.new(
|
1191
1371
|
:room)
|
1372
|
+
SENSITIVE = []
|
1192
1373
|
include Aws::Structure
|
1193
1374
|
end
|
1194
1375
|
|
@@ -1225,6 +1406,7 @@ module Aws::Chime
|
|
1225
1406
|
:username,
|
1226
1407
|
:email,
|
1227
1408
|
:user_type)
|
1409
|
+
SENSITIVE = [:email]
|
1228
1410
|
include Aws::Structure
|
1229
1411
|
end
|
1230
1412
|
|
@@ -1236,6 +1418,7 @@ module Aws::Chime
|
|
1236
1418
|
#
|
1237
1419
|
class CreateUserResponse < Struct.new(
|
1238
1420
|
:user)
|
1421
|
+
SENSITIVE = []
|
1239
1422
|
include Aws::Structure
|
1240
1423
|
end
|
1241
1424
|
|
@@ -1265,6 +1448,7 @@ module Aws::Chime
|
|
1265
1448
|
class CreateVoiceConnectorGroupRequest < Struct.new(
|
1266
1449
|
:name,
|
1267
1450
|
:voice_connector_items)
|
1451
|
+
SENSITIVE = []
|
1268
1452
|
include Aws::Structure
|
1269
1453
|
end
|
1270
1454
|
|
@@ -1276,6 +1460,7 @@ module Aws::Chime
|
|
1276
1460
|
#
|
1277
1461
|
class CreateVoiceConnectorGroupResponse < Struct.new(
|
1278
1462
|
:voice_connector_group)
|
1463
|
+
SENSITIVE = []
|
1279
1464
|
include Aws::Structure
|
1280
1465
|
end
|
1281
1466
|
|
@@ -1308,6 +1493,7 @@ module Aws::Chime
|
|
1308
1493
|
:name,
|
1309
1494
|
:aws_region,
|
1310
1495
|
:require_encryption)
|
1496
|
+
SENSITIVE = []
|
1311
1497
|
include Aws::Structure
|
1312
1498
|
end
|
1313
1499
|
|
@@ -1319,6 +1505,7 @@ module Aws::Chime
|
|
1319
1505
|
#
|
1320
1506
|
class CreateVoiceConnectorResponse < Struct.new(
|
1321
1507
|
:voice_connector)
|
1508
|
+
SENSITIVE = []
|
1322
1509
|
include Aws::Structure
|
1323
1510
|
end
|
1324
1511
|
|
@@ -1348,6 +1535,7 @@ module Aws::Chime
|
|
1348
1535
|
class Credential < Struct.new(
|
1349
1536
|
:username,
|
1350
1537
|
:password)
|
1538
|
+
SENSITIVE = [:username, :password]
|
1351
1539
|
include Aws::Structure
|
1352
1540
|
end
|
1353
1541
|
|
@@ -1366,6 +1554,7 @@ module Aws::Chime
|
|
1366
1554
|
#
|
1367
1555
|
class DeleteAccountRequest < Struct.new(
|
1368
1556
|
:account_id)
|
1557
|
+
SENSITIVE = []
|
1369
1558
|
include Aws::Structure
|
1370
1559
|
end
|
1371
1560
|
|
@@ -1394,6 +1583,7 @@ module Aws::Chime
|
|
1394
1583
|
class DeleteAttendeeRequest < Struct.new(
|
1395
1584
|
:meeting_id,
|
1396
1585
|
:attendee_id)
|
1586
|
+
SENSITIVE = []
|
1397
1587
|
include Aws::Structure
|
1398
1588
|
end
|
1399
1589
|
|
@@ -1418,6 +1608,7 @@ module Aws::Chime
|
|
1418
1608
|
class DeleteEventsConfigurationRequest < Struct.new(
|
1419
1609
|
:account_id,
|
1420
1610
|
:bot_id)
|
1611
|
+
SENSITIVE = []
|
1421
1612
|
include Aws::Structure
|
1422
1613
|
end
|
1423
1614
|
|
@@ -1436,6 +1627,7 @@ module Aws::Chime
|
|
1436
1627
|
#
|
1437
1628
|
class DeleteMeetingRequest < Struct.new(
|
1438
1629
|
:meeting_id)
|
1630
|
+
SENSITIVE = []
|
1439
1631
|
include Aws::Structure
|
1440
1632
|
end
|
1441
1633
|
|
@@ -1454,6 +1646,7 @@ module Aws::Chime
|
|
1454
1646
|
#
|
1455
1647
|
class DeletePhoneNumberRequest < Struct.new(
|
1456
1648
|
:phone_number_id)
|
1649
|
+
SENSITIVE = []
|
1457
1650
|
include Aws::Structure
|
1458
1651
|
end
|
1459
1652
|
|
@@ -1478,6 +1671,7 @@ module Aws::Chime
|
|
1478
1671
|
class DeleteProxySessionRequest < Struct.new(
|
1479
1672
|
:voice_connector_id,
|
1480
1673
|
:proxy_session_id)
|
1674
|
+
SENSITIVE = []
|
1481
1675
|
include Aws::Structure
|
1482
1676
|
end
|
1483
1677
|
|
@@ -1508,6 +1702,7 @@ module Aws::Chime
|
|
1508
1702
|
:account_id,
|
1509
1703
|
:room_id,
|
1510
1704
|
:member_id)
|
1705
|
+
SENSITIVE = []
|
1511
1706
|
include Aws::Structure
|
1512
1707
|
end
|
1513
1708
|
|
@@ -1532,6 +1727,7 @@ module Aws::Chime
|
|
1532
1727
|
class DeleteRoomRequest < Struct.new(
|
1533
1728
|
:account_id,
|
1534
1729
|
:room_id)
|
1730
|
+
SENSITIVE = []
|
1535
1731
|
include Aws::Structure
|
1536
1732
|
end
|
1537
1733
|
|
@@ -1550,6 +1746,7 @@ module Aws::Chime
|
|
1550
1746
|
#
|
1551
1747
|
class DeleteVoiceConnectorGroupRequest < Struct.new(
|
1552
1748
|
:voice_connector_group_id)
|
1749
|
+
SENSITIVE = []
|
1553
1750
|
include Aws::Structure
|
1554
1751
|
end
|
1555
1752
|
|
@@ -1568,6 +1765,7 @@ module Aws::Chime
|
|
1568
1765
|
#
|
1569
1766
|
class DeleteVoiceConnectorOriginationRequest < Struct.new(
|
1570
1767
|
:voice_connector_id)
|
1768
|
+
SENSITIVE = []
|
1571
1769
|
include Aws::Structure
|
1572
1770
|
end
|
1573
1771
|
|
@@ -1586,6 +1784,7 @@ module Aws::Chime
|
|
1586
1784
|
#
|
1587
1785
|
class DeleteVoiceConnectorProxyRequest < Struct.new(
|
1588
1786
|
:voice_connector_id)
|
1787
|
+
SENSITIVE = []
|
1589
1788
|
include Aws::Structure
|
1590
1789
|
end
|
1591
1790
|
|
@@ -1604,6 +1803,7 @@ module Aws::Chime
|
|
1604
1803
|
#
|
1605
1804
|
class DeleteVoiceConnectorRequest < Struct.new(
|
1606
1805
|
:voice_connector_id)
|
1806
|
+
SENSITIVE = []
|
1607
1807
|
include Aws::Structure
|
1608
1808
|
end
|
1609
1809
|
|
@@ -1622,6 +1822,7 @@ module Aws::Chime
|
|
1622
1822
|
#
|
1623
1823
|
class DeleteVoiceConnectorStreamingConfigurationRequest < Struct.new(
|
1624
1824
|
:voice_connector_id)
|
1825
|
+
SENSITIVE = []
|
1625
1826
|
include Aws::Structure
|
1626
1827
|
end
|
1627
1828
|
|
@@ -1647,6 +1848,7 @@ module Aws::Chime
|
|
1647
1848
|
class DeleteVoiceConnectorTerminationCredentialsRequest < Struct.new(
|
1648
1849
|
:voice_connector_id,
|
1649
1850
|
:usernames)
|
1851
|
+
SENSITIVE = []
|
1650
1852
|
include Aws::Structure
|
1651
1853
|
end
|
1652
1854
|
|
@@ -1665,6 +1867,7 @@ module Aws::Chime
|
|
1665
1867
|
#
|
1666
1868
|
class DeleteVoiceConnectorTerminationRequest < Struct.new(
|
1667
1869
|
:voice_connector_id)
|
1870
|
+
SENSITIVE = []
|
1668
1871
|
include Aws::Structure
|
1669
1872
|
end
|
1670
1873
|
|
@@ -1689,6 +1892,7 @@ module Aws::Chime
|
|
1689
1892
|
class DisassociatePhoneNumberFromUserRequest < Struct.new(
|
1690
1893
|
:account_id,
|
1691
1894
|
:user_id)
|
1895
|
+
SENSITIVE = []
|
1692
1896
|
include Aws::Structure
|
1693
1897
|
end
|
1694
1898
|
|
@@ -1717,6 +1921,7 @@ module Aws::Chime
|
|
1717
1921
|
class DisassociatePhoneNumbersFromVoiceConnectorGroupRequest < Struct.new(
|
1718
1922
|
:voice_connector_group_id,
|
1719
1923
|
:e164_phone_numbers)
|
1924
|
+
SENSITIVE = []
|
1720
1925
|
include Aws::Structure
|
1721
1926
|
end
|
1722
1927
|
|
@@ -1730,6 +1935,7 @@ module Aws::Chime
|
|
1730
1935
|
#
|
1731
1936
|
class DisassociatePhoneNumbersFromVoiceConnectorGroupResponse < Struct.new(
|
1732
1937
|
:phone_number_errors)
|
1938
|
+
SENSITIVE = []
|
1733
1939
|
include Aws::Structure
|
1734
1940
|
end
|
1735
1941
|
|
@@ -1754,6 +1960,7 @@ module Aws::Chime
|
|
1754
1960
|
class DisassociatePhoneNumbersFromVoiceConnectorRequest < Struct.new(
|
1755
1961
|
:voice_connector_id,
|
1756
1962
|
:e164_phone_numbers)
|
1963
|
+
SENSITIVE = []
|
1757
1964
|
include Aws::Structure
|
1758
1965
|
end
|
1759
1966
|
|
@@ -1767,6 +1974,7 @@ module Aws::Chime
|
|
1767
1974
|
#
|
1768
1975
|
class DisassociatePhoneNumbersFromVoiceConnectorResponse < Struct.new(
|
1769
1976
|
:phone_number_errors)
|
1977
|
+
SENSITIVE = []
|
1770
1978
|
include Aws::Structure
|
1771
1979
|
end
|
1772
1980
|
|
@@ -1791,6 +1999,7 @@ module Aws::Chime
|
|
1791
1999
|
class DisassociateSigninDelegateGroupsFromAccountRequest < Struct.new(
|
1792
2000
|
:account_id,
|
1793
2001
|
:group_names)
|
2002
|
+
SENSITIVE = []
|
1794
2003
|
include Aws::Structure
|
1795
2004
|
end
|
1796
2005
|
|
@@ -1819,6 +2028,7 @@ module Aws::Chime
|
|
1819
2028
|
:bot_id,
|
1820
2029
|
:outbound_events_https_endpoint,
|
1821
2030
|
:lambda_function_arn)
|
2031
|
+
SENSITIVE = [:outbound_events_https_endpoint, :lambda_function_arn]
|
1822
2032
|
include Aws::Structure
|
1823
2033
|
end
|
1824
2034
|
|
@@ -1837,6 +2047,7 @@ module Aws::Chime
|
|
1837
2047
|
class ForbiddenException < Struct.new(
|
1838
2048
|
:code,
|
1839
2049
|
:message)
|
2050
|
+
SENSITIVE = []
|
1840
2051
|
include Aws::Structure
|
1841
2052
|
end
|
1842
2053
|
|
@@ -1864,6 +2075,7 @@ module Aws::Chime
|
|
1864
2075
|
class GeoMatchParams < Struct.new(
|
1865
2076
|
:country,
|
1866
2077
|
:area_code)
|
2078
|
+
SENSITIVE = []
|
1867
2079
|
include Aws::Structure
|
1868
2080
|
end
|
1869
2081
|
|
@@ -1882,6 +2094,7 @@ module Aws::Chime
|
|
1882
2094
|
#
|
1883
2095
|
class GetAccountRequest < Struct.new(
|
1884
2096
|
:account_id)
|
2097
|
+
SENSITIVE = []
|
1885
2098
|
include Aws::Structure
|
1886
2099
|
end
|
1887
2100
|
|
@@ -1893,6 +2106,7 @@ module Aws::Chime
|
|
1893
2106
|
#
|
1894
2107
|
class GetAccountResponse < Struct.new(
|
1895
2108
|
:account)
|
2109
|
+
SENSITIVE = []
|
1896
2110
|
include Aws::Structure
|
1897
2111
|
end
|
1898
2112
|
|
@@ -1911,6 +2125,7 @@ module Aws::Chime
|
|
1911
2125
|
#
|
1912
2126
|
class GetAccountSettingsRequest < Struct.new(
|
1913
2127
|
:account_id)
|
2128
|
+
SENSITIVE = []
|
1914
2129
|
include Aws::Structure
|
1915
2130
|
end
|
1916
2131
|
|
@@ -1922,6 +2137,7 @@ module Aws::Chime
|
|
1922
2137
|
#
|
1923
2138
|
class GetAccountSettingsResponse < Struct.new(
|
1924
2139
|
:account_settings)
|
2140
|
+
SENSITIVE = []
|
1925
2141
|
include Aws::Structure
|
1926
2142
|
end
|
1927
2143
|
|
@@ -1946,6 +2162,7 @@ module Aws::Chime
|
|
1946
2162
|
class GetAttendeeRequest < Struct.new(
|
1947
2163
|
:meeting_id,
|
1948
2164
|
:attendee_id)
|
2165
|
+
SENSITIVE = []
|
1949
2166
|
include Aws::Structure
|
1950
2167
|
end
|
1951
2168
|
|
@@ -1957,6 +2174,7 @@ module Aws::Chime
|
|
1957
2174
|
#
|
1958
2175
|
class GetAttendeeResponse < Struct.new(
|
1959
2176
|
:attendee)
|
2177
|
+
SENSITIVE = []
|
1960
2178
|
include Aws::Structure
|
1961
2179
|
end
|
1962
2180
|
|
@@ -1981,6 +2199,7 @@ module Aws::Chime
|
|
1981
2199
|
class GetBotRequest < Struct.new(
|
1982
2200
|
:account_id,
|
1983
2201
|
:bot_id)
|
2202
|
+
SENSITIVE = []
|
1984
2203
|
include Aws::Structure
|
1985
2204
|
end
|
1986
2205
|
|
@@ -1992,6 +2211,7 @@ module Aws::Chime
|
|
1992
2211
|
#
|
1993
2212
|
class GetBotResponse < Struct.new(
|
1994
2213
|
:bot)
|
2214
|
+
SENSITIVE = []
|
1995
2215
|
include Aws::Structure
|
1996
2216
|
end
|
1997
2217
|
|
@@ -2016,6 +2236,7 @@ module Aws::Chime
|
|
2016
2236
|
class GetEventsConfigurationRequest < Struct.new(
|
2017
2237
|
:account_id,
|
2018
2238
|
:bot_id)
|
2239
|
+
SENSITIVE = []
|
2019
2240
|
include Aws::Structure
|
2020
2241
|
end
|
2021
2242
|
|
@@ -2027,6 +2248,7 @@ module Aws::Chime
|
|
2027
2248
|
#
|
2028
2249
|
class GetEventsConfigurationResponse < Struct.new(
|
2029
2250
|
:events_configuration)
|
2251
|
+
SENSITIVE = []
|
2030
2252
|
include Aws::Structure
|
2031
2253
|
end
|
2032
2254
|
|
@@ -2043,6 +2265,7 @@ module Aws::Chime
|
|
2043
2265
|
class GetGlobalSettingsResponse < Struct.new(
|
2044
2266
|
:business_calling,
|
2045
2267
|
:voice_connector)
|
2268
|
+
SENSITIVE = []
|
2046
2269
|
include Aws::Structure
|
2047
2270
|
end
|
2048
2271
|
|
@@ -2061,6 +2284,7 @@ module Aws::Chime
|
|
2061
2284
|
#
|
2062
2285
|
class GetMeetingRequest < Struct.new(
|
2063
2286
|
:meeting_id)
|
2287
|
+
SENSITIVE = []
|
2064
2288
|
include Aws::Structure
|
2065
2289
|
end
|
2066
2290
|
|
@@ -2072,6 +2296,7 @@ module Aws::Chime
|
|
2072
2296
|
#
|
2073
2297
|
class GetMeetingResponse < Struct.new(
|
2074
2298
|
:meeting)
|
2299
|
+
SENSITIVE = []
|
2075
2300
|
include Aws::Structure
|
2076
2301
|
end
|
2077
2302
|
|
@@ -2090,6 +2315,7 @@ module Aws::Chime
|
|
2090
2315
|
#
|
2091
2316
|
class GetPhoneNumberOrderRequest < Struct.new(
|
2092
2317
|
:phone_number_order_id)
|
2318
|
+
SENSITIVE = []
|
2093
2319
|
include Aws::Structure
|
2094
2320
|
end
|
2095
2321
|
|
@@ -2101,6 +2327,7 @@ module Aws::Chime
|
|
2101
2327
|
#
|
2102
2328
|
class GetPhoneNumberOrderResponse < Struct.new(
|
2103
2329
|
:phone_number_order)
|
2330
|
+
SENSITIVE = []
|
2104
2331
|
include Aws::Structure
|
2105
2332
|
end
|
2106
2333
|
|
@@ -2119,6 +2346,7 @@ module Aws::Chime
|
|
2119
2346
|
#
|
2120
2347
|
class GetPhoneNumberRequest < Struct.new(
|
2121
2348
|
:phone_number_id)
|
2349
|
+
SENSITIVE = []
|
2122
2350
|
include Aws::Structure
|
2123
2351
|
end
|
2124
2352
|
|
@@ -2130,6 +2358,7 @@ module Aws::Chime
|
|
2130
2358
|
#
|
2131
2359
|
class GetPhoneNumberResponse < Struct.new(
|
2132
2360
|
:phone_number)
|
2361
|
+
SENSITIVE = []
|
2133
2362
|
include Aws::Structure
|
2134
2363
|
end
|
2135
2364
|
|
@@ -2146,6 +2375,7 @@ module Aws::Chime
|
|
2146
2375
|
class GetPhoneNumberSettingsResponse < Struct.new(
|
2147
2376
|
:calling_name,
|
2148
2377
|
:calling_name_updated_timestamp)
|
2378
|
+
SENSITIVE = [:calling_name]
|
2149
2379
|
include Aws::Structure
|
2150
2380
|
end
|
2151
2381
|
|
@@ -2170,6 +2400,7 @@ module Aws::Chime
|
|
2170
2400
|
class GetProxySessionRequest < Struct.new(
|
2171
2401
|
:voice_connector_id,
|
2172
2402
|
:proxy_session_id)
|
2403
|
+
SENSITIVE = []
|
2173
2404
|
include Aws::Structure
|
2174
2405
|
end
|
2175
2406
|
|
@@ -2181,6 +2412,44 @@ module Aws::Chime
|
|
2181
2412
|
#
|
2182
2413
|
class GetProxySessionResponse < Struct.new(
|
2183
2414
|
:proxy_session)
|
2415
|
+
SENSITIVE = []
|
2416
|
+
include Aws::Structure
|
2417
|
+
end
|
2418
|
+
|
2419
|
+
# @note When making an API call, you may pass GetRetentionSettingsRequest
|
2420
|
+
# data as a hash:
|
2421
|
+
#
|
2422
|
+
# {
|
2423
|
+
# account_id: "NonEmptyString", # required
|
2424
|
+
# }
|
2425
|
+
#
|
2426
|
+
# @!attribute [rw] account_id
|
2427
|
+
# The Amazon Chime account ID.
|
2428
|
+
# @return [String]
|
2429
|
+
#
|
2430
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetRetentionSettingsRequest AWS API Documentation
|
2431
|
+
#
|
2432
|
+
class GetRetentionSettingsRequest < Struct.new(
|
2433
|
+
:account_id)
|
2434
|
+
SENSITIVE = []
|
2435
|
+
include Aws::Structure
|
2436
|
+
end
|
2437
|
+
|
2438
|
+
# @!attribute [rw] retention_settings
|
2439
|
+
# The retention settings.
|
2440
|
+
# @return [Types::RetentionSettings]
|
2441
|
+
#
|
2442
|
+
# @!attribute [rw] initiate_deletion_timestamp
|
2443
|
+
# The timestamp representing the time at which the specified items are
|
2444
|
+
# permanently deleted, in ISO 8601 format.
|
2445
|
+
# @return [Time]
|
2446
|
+
#
|
2447
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/GetRetentionSettingsResponse AWS API Documentation
|
2448
|
+
#
|
2449
|
+
class GetRetentionSettingsResponse < Struct.new(
|
2450
|
+
:retention_settings,
|
2451
|
+
:initiate_deletion_timestamp)
|
2452
|
+
SENSITIVE = []
|
2184
2453
|
include Aws::Structure
|
2185
2454
|
end
|
2186
2455
|
|
@@ -2205,6 +2474,7 @@ module Aws::Chime
|
|
2205
2474
|
class GetRoomRequest < Struct.new(
|
2206
2475
|
:account_id,
|
2207
2476
|
:room_id)
|
2477
|
+
SENSITIVE = []
|
2208
2478
|
include Aws::Structure
|
2209
2479
|
end
|
2210
2480
|
|
@@ -2216,6 +2486,7 @@ module Aws::Chime
|
|
2216
2486
|
#
|
2217
2487
|
class GetRoomResponse < Struct.new(
|
2218
2488
|
:room)
|
2489
|
+
SENSITIVE = []
|
2219
2490
|
include Aws::Structure
|
2220
2491
|
end
|
2221
2492
|
|
@@ -2240,6 +2511,7 @@ module Aws::Chime
|
|
2240
2511
|
class GetUserRequest < Struct.new(
|
2241
2512
|
:account_id,
|
2242
2513
|
:user_id)
|
2514
|
+
SENSITIVE = []
|
2243
2515
|
include Aws::Structure
|
2244
2516
|
end
|
2245
2517
|
|
@@ -2251,6 +2523,7 @@ module Aws::Chime
|
|
2251
2523
|
#
|
2252
2524
|
class GetUserResponse < Struct.new(
|
2253
2525
|
:user)
|
2526
|
+
SENSITIVE = []
|
2254
2527
|
include Aws::Structure
|
2255
2528
|
end
|
2256
2529
|
|
@@ -2275,6 +2548,7 @@ module Aws::Chime
|
|
2275
2548
|
class GetUserSettingsRequest < Struct.new(
|
2276
2549
|
:account_id,
|
2277
2550
|
:user_id)
|
2551
|
+
SENSITIVE = []
|
2278
2552
|
include Aws::Structure
|
2279
2553
|
end
|
2280
2554
|
|
@@ -2286,6 +2560,7 @@ module Aws::Chime
|
|
2286
2560
|
#
|
2287
2561
|
class GetUserSettingsResponse < Struct.new(
|
2288
2562
|
:user_settings)
|
2563
|
+
SENSITIVE = []
|
2289
2564
|
include Aws::Structure
|
2290
2565
|
end
|
2291
2566
|
|
@@ -2304,6 +2579,7 @@ module Aws::Chime
|
|
2304
2579
|
#
|
2305
2580
|
class GetVoiceConnectorGroupRequest < Struct.new(
|
2306
2581
|
:voice_connector_group_id)
|
2582
|
+
SENSITIVE = []
|
2307
2583
|
include Aws::Structure
|
2308
2584
|
end
|
2309
2585
|
|
@@ -2315,6 +2591,7 @@ module Aws::Chime
|
|
2315
2591
|
#
|
2316
2592
|
class GetVoiceConnectorGroupResponse < Struct.new(
|
2317
2593
|
:voice_connector_group)
|
2594
|
+
SENSITIVE = []
|
2318
2595
|
include Aws::Structure
|
2319
2596
|
end
|
2320
2597
|
|
@@ -2333,6 +2610,7 @@ module Aws::Chime
|
|
2333
2610
|
#
|
2334
2611
|
class GetVoiceConnectorLoggingConfigurationRequest < Struct.new(
|
2335
2612
|
:voice_connector_id)
|
2613
|
+
SENSITIVE = []
|
2336
2614
|
include Aws::Structure
|
2337
2615
|
end
|
2338
2616
|
|
@@ -2344,6 +2622,7 @@ module Aws::Chime
|
|
2344
2622
|
#
|
2345
2623
|
class GetVoiceConnectorLoggingConfigurationResponse < Struct.new(
|
2346
2624
|
:logging_configuration)
|
2625
|
+
SENSITIVE = []
|
2347
2626
|
include Aws::Structure
|
2348
2627
|
end
|
2349
2628
|
|
@@ -2362,6 +2641,7 @@ module Aws::Chime
|
|
2362
2641
|
#
|
2363
2642
|
class GetVoiceConnectorOriginationRequest < Struct.new(
|
2364
2643
|
:voice_connector_id)
|
2644
|
+
SENSITIVE = []
|
2365
2645
|
include Aws::Structure
|
2366
2646
|
end
|
2367
2647
|
|
@@ -2373,6 +2653,7 @@ module Aws::Chime
|
|
2373
2653
|
#
|
2374
2654
|
class GetVoiceConnectorOriginationResponse < Struct.new(
|
2375
2655
|
:origination)
|
2656
|
+
SENSITIVE = []
|
2376
2657
|
include Aws::Structure
|
2377
2658
|
end
|
2378
2659
|
|
@@ -2391,6 +2672,7 @@ module Aws::Chime
|
|
2391
2672
|
#
|
2392
2673
|
class GetVoiceConnectorProxyRequest < Struct.new(
|
2393
2674
|
:voice_connector_id)
|
2675
|
+
SENSITIVE = []
|
2394
2676
|
include Aws::Structure
|
2395
2677
|
end
|
2396
2678
|
|
@@ -2402,6 +2684,7 @@ module Aws::Chime
|
|
2402
2684
|
#
|
2403
2685
|
class GetVoiceConnectorProxyResponse < Struct.new(
|
2404
2686
|
:proxy)
|
2687
|
+
SENSITIVE = []
|
2405
2688
|
include Aws::Structure
|
2406
2689
|
end
|
2407
2690
|
|
@@ -2420,6 +2703,7 @@ module Aws::Chime
|
|
2420
2703
|
#
|
2421
2704
|
class GetVoiceConnectorRequest < Struct.new(
|
2422
2705
|
:voice_connector_id)
|
2706
|
+
SENSITIVE = []
|
2423
2707
|
include Aws::Structure
|
2424
2708
|
end
|
2425
2709
|
|
@@ -2431,6 +2715,7 @@ module Aws::Chime
|
|
2431
2715
|
#
|
2432
2716
|
class GetVoiceConnectorResponse < Struct.new(
|
2433
2717
|
:voice_connector)
|
2718
|
+
SENSITIVE = []
|
2434
2719
|
include Aws::Structure
|
2435
2720
|
end
|
2436
2721
|
|
@@ -2449,6 +2734,7 @@ module Aws::Chime
|
|
2449
2734
|
#
|
2450
2735
|
class GetVoiceConnectorStreamingConfigurationRequest < Struct.new(
|
2451
2736
|
:voice_connector_id)
|
2737
|
+
SENSITIVE = []
|
2452
2738
|
include Aws::Structure
|
2453
2739
|
end
|
2454
2740
|
|
@@ -2460,6 +2746,7 @@ module Aws::Chime
|
|
2460
2746
|
#
|
2461
2747
|
class GetVoiceConnectorStreamingConfigurationResponse < Struct.new(
|
2462
2748
|
:streaming_configuration)
|
2749
|
+
SENSITIVE = []
|
2463
2750
|
include Aws::Structure
|
2464
2751
|
end
|
2465
2752
|
|
@@ -2478,6 +2765,7 @@ module Aws::Chime
|
|
2478
2765
|
#
|
2479
2766
|
class GetVoiceConnectorTerminationHealthRequest < Struct.new(
|
2480
2767
|
:voice_connector_id)
|
2768
|
+
SENSITIVE = []
|
2481
2769
|
include Aws::Structure
|
2482
2770
|
end
|
2483
2771
|
|
@@ -2489,6 +2777,7 @@ module Aws::Chime
|
|
2489
2777
|
#
|
2490
2778
|
class GetVoiceConnectorTerminationHealthResponse < Struct.new(
|
2491
2779
|
:termination_health)
|
2780
|
+
SENSITIVE = []
|
2492
2781
|
include Aws::Structure
|
2493
2782
|
end
|
2494
2783
|
|
@@ -2507,6 +2796,7 @@ module Aws::Chime
|
|
2507
2796
|
#
|
2508
2797
|
class GetVoiceConnectorTerminationRequest < Struct.new(
|
2509
2798
|
:voice_connector_id)
|
2799
|
+
SENSITIVE = []
|
2510
2800
|
include Aws::Structure
|
2511
2801
|
end
|
2512
2802
|
|
@@ -2518,6 +2808,7 @@ module Aws::Chime
|
|
2518
2808
|
#
|
2519
2809
|
class GetVoiceConnectorTerminationResponse < Struct.new(
|
2520
2810
|
:termination)
|
2811
|
+
SENSITIVE = []
|
2521
2812
|
include Aws::Structure
|
2522
2813
|
end
|
2523
2814
|
|
@@ -2547,6 +2838,7 @@ module Aws::Chime
|
|
2547
2838
|
:status,
|
2548
2839
|
:email_address,
|
2549
2840
|
:email_status)
|
2841
|
+
SENSITIVE = [:email_address]
|
2550
2842
|
include Aws::Structure
|
2551
2843
|
end
|
2552
2844
|
|
@@ -2577,6 +2869,7 @@ module Aws::Chime
|
|
2577
2869
|
:account_id,
|
2578
2870
|
:user_email_list,
|
2579
2871
|
:user_type)
|
2872
|
+
SENSITIVE = []
|
2580
2873
|
include Aws::Structure
|
2581
2874
|
end
|
2582
2875
|
|
@@ -2588,6 +2881,7 @@ module Aws::Chime
|
|
2588
2881
|
#
|
2589
2882
|
class InviteUsersResponse < Struct.new(
|
2590
2883
|
:invites)
|
2884
|
+
SENSITIVE = []
|
2591
2885
|
include Aws::Structure
|
2592
2886
|
end
|
2593
2887
|
|
@@ -2625,6 +2919,7 @@ module Aws::Chime
|
|
2625
2919
|
:user_email,
|
2626
2920
|
:next_token,
|
2627
2921
|
:max_results)
|
2922
|
+
SENSITIVE = [:user_email]
|
2628
2923
|
include Aws::Structure
|
2629
2924
|
end
|
2630
2925
|
|
@@ -2641,6 +2936,7 @@ module Aws::Chime
|
|
2641
2936
|
class ListAccountsResponse < Struct.new(
|
2642
2937
|
:accounts,
|
2643
2938
|
:next_token)
|
2939
|
+
SENSITIVE = []
|
2644
2940
|
include Aws::Structure
|
2645
2941
|
end
|
2646
2942
|
|
@@ -2665,6 +2961,7 @@ module Aws::Chime
|
|
2665
2961
|
class ListAttendeeTagsRequest < Struct.new(
|
2666
2962
|
:meeting_id,
|
2667
2963
|
:attendee_id)
|
2964
|
+
SENSITIVE = []
|
2668
2965
|
include Aws::Structure
|
2669
2966
|
end
|
2670
2967
|
|
@@ -2676,6 +2973,7 @@ module Aws::Chime
|
|
2676
2973
|
#
|
2677
2974
|
class ListAttendeeTagsResponse < Struct.new(
|
2678
2975
|
:tags)
|
2976
|
+
SENSITIVE = []
|
2679
2977
|
include Aws::Structure
|
2680
2978
|
end
|
2681
2979
|
|
@@ -2706,6 +3004,7 @@ module Aws::Chime
|
|
2706
3004
|
:meeting_id,
|
2707
3005
|
:next_token,
|
2708
3006
|
:max_results)
|
3007
|
+
SENSITIVE = []
|
2709
3008
|
include Aws::Structure
|
2710
3009
|
end
|
2711
3010
|
|
@@ -2722,6 +3021,7 @@ module Aws::Chime
|
|
2722
3021
|
class ListAttendeesResponse < Struct.new(
|
2723
3022
|
:attendees,
|
2724
3023
|
:next_token)
|
3024
|
+
SENSITIVE = []
|
2725
3025
|
include Aws::Structure
|
2726
3026
|
end
|
2727
3027
|
|
@@ -2753,6 +3053,7 @@ module Aws::Chime
|
|
2753
3053
|
:account_id,
|
2754
3054
|
:max_results,
|
2755
3055
|
:next_token)
|
3056
|
+
SENSITIVE = []
|
2756
3057
|
include Aws::Structure
|
2757
3058
|
end
|
2758
3059
|
|
@@ -2769,6 +3070,7 @@ module Aws::Chime
|
|
2769
3070
|
class ListBotsResponse < Struct.new(
|
2770
3071
|
:bots,
|
2771
3072
|
:next_token)
|
3073
|
+
SENSITIVE = []
|
2772
3074
|
include Aws::Structure
|
2773
3075
|
end
|
2774
3076
|
|
@@ -2787,6 +3089,7 @@ module Aws::Chime
|
|
2787
3089
|
#
|
2788
3090
|
class ListMeetingTagsRequest < Struct.new(
|
2789
3091
|
:meeting_id)
|
3092
|
+
SENSITIVE = []
|
2790
3093
|
include Aws::Structure
|
2791
3094
|
end
|
2792
3095
|
|
@@ -2798,6 +3101,7 @@ module Aws::Chime
|
|
2798
3101
|
#
|
2799
3102
|
class ListMeetingTagsResponse < Struct.new(
|
2800
3103
|
:tags)
|
3104
|
+
SENSITIVE = []
|
2801
3105
|
include Aws::Structure
|
2802
3106
|
end
|
2803
3107
|
|
@@ -2822,6 +3126,7 @@ module Aws::Chime
|
|
2822
3126
|
class ListMeetingsRequest < Struct.new(
|
2823
3127
|
:next_token,
|
2824
3128
|
:max_results)
|
3129
|
+
SENSITIVE = []
|
2825
3130
|
include Aws::Structure
|
2826
3131
|
end
|
2827
3132
|
|
@@ -2838,6 +3143,7 @@ module Aws::Chime
|
|
2838
3143
|
class ListMeetingsResponse < Struct.new(
|
2839
3144
|
:meetings,
|
2840
3145
|
:next_token)
|
3146
|
+
SENSITIVE = []
|
2841
3147
|
include Aws::Structure
|
2842
3148
|
end
|
2843
3149
|
|
@@ -2862,6 +3168,7 @@ module Aws::Chime
|
|
2862
3168
|
class ListPhoneNumberOrdersRequest < Struct.new(
|
2863
3169
|
:next_token,
|
2864
3170
|
:max_results)
|
3171
|
+
SENSITIVE = []
|
2865
3172
|
include Aws::Structure
|
2866
3173
|
end
|
2867
3174
|
|
@@ -2878,6 +3185,7 @@ module Aws::Chime
|
|
2878
3185
|
class ListPhoneNumberOrdersResponse < Struct.new(
|
2879
3186
|
:phone_number_orders,
|
2880
3187
|
:next_token)
|
3188
|
+
SENSITIVE = []
|
2881
3189
|
include Aws::Structure
|
2882
3190
|
end
|
2883
3191
|
|
@@ -2926,6 +3234,7 @@ module Aws::Chime
|
|
2926
3234
|
:filter_value,
|
2927
3235
|
:max_results,
|
2928
3236
|
:next_token)
|
3237
|
+
SENSITIVE = []
|
2929
3238
|
include Aws::Structure
|
2930
3239
|
end
|
2931
3240
|
|
@@ -2942,6 +3251,7 @@ module Aws::Chime
|
|
2942
3251
|
class ListPhoneNumbersResponse < Struct.new(
|
2943
3252
|
:phone_numbers,
|
2944
3253
|
:next_token)
|
3254
|
+
SENSITIVE = []
|
2945
3255
|
include Aws::Structure
|
2946
3256
|
end
|
2947
3257
|
|
@@ -2978,6 +3288,7 @@ module Aws::Chime
|
|
2978
3288
|
:status,
|
2979
3289
|
:next_token,
|
2980
3290
|
:max_results)
|
3291
|
+
SENSITIVE = []
|
2981
3292
|
include Aws::Structure
|
2982
3293
|
end
|
2983
3294
|
|
@@ -2994,6 +3305,7 @@ module Aws::Chime
|
|
2994
3305
|
class ListProxySessionsResponse < Struct.new(
|
2995
3306
|
:proxy_sessions,
|
2996
3307
|
:next_token)
|
3308
|
+
SENSITIVE = []
|
2997
3309
|
include Aws::Structure
|
2998
3310
|
end
|
2999
3311
|
|
@@ -3030,6 +3342,7 @@ module Aws::Chime
|
|
3030
3342
|
:room_id,
|
3031
3343
|
:max_results,
|
3032
3344
|
:next_token)
|
3345
|
+
SENSITIVE = []
|
3033
3346
|
include Aws::Structure
|
3034
3347
|
end
|
3035
3348
|
|
@@ -3046,6 +3359,7 @@ module Aws::Chime
|
|
3046
3359
|
class ListRoomMembershipsResponse < Struct.new(
|
3047
3360
|
:room_memberships,
|
3048
3361
|
:next_token)
|
3362
|
+
SENSITIVE = []
|
3049
3363
|
include Aws::Structure
|
3050
3364
|
end
|
3051
3365
|
|
@@ -3082,6 +3396,7 @@ module Aws::Chime
|
|
3082
3396
|
:member_id,
|
3083
3397
|
:max_results,
|
3084
3398
|
:next_token)
|
3399
|
+
SENSITIVE = []
|
3085
3400
|
include Aws::Structure
|
3086
3401
|
end
|
3087
3402
|
|
@@ -3098,6 +3413,7 @@ module Aws::Chime
|
|
3098
3413
|
class ListRoomsResponse < Struct.new(
|
3099
3414
|
:rooms,
|
3100
3415
|
:next_token)
|
3416
|
+
SENSITIVE = []
|
3101
3417
|
include Aws::Structure
|
3102
3418
|
end
|
3103
3419
|
|
@@ -3116,6 +3432,7 @@ module Aws::Chime
|
|
3116
3432
|
#
|
3117
3433
|
class ListTagsForResourceRequest < Struct.new(
|
3118
3434
|
:resource_arn)
|
3435
|
+
SENSITIVE = [:resource_arn]
|
3119
3436
|
include Aws::Structure
|
3120
3437
|
end
|
3121
3438
|
|
@@ -3127,6 +3444,7 @@ module Aws::Chime
|
|
3127
3444
|
#
|
3128
3445
|
class ListTagsForResourceResponse < Struct.new(
|
3129
3446
|
:tags)
|
3447
|
+
SENSITIVE = []
|
3130
3448
|
include Aws::Structure
|
3131
3449
|
end
|
3132
3450
|
|
@@ -3170,6 +3488,7 @@ module Aws::Chime
|
|
3170
3488
|
:user_type,
|
3171
3489
|
:max_results,
|
3172
3490
|
:next_token)
|
3491
|
+
SENSITIVE = [:user_email]
|
3173
3492
|
include Aws::Structure
|
3174
3493
|
end
|
3175
3494
|
|
@@ -3186,6 +3505,7 @@ module Aws::Chime
|
|
3186
3505
|
class ListUsersResponse < Struct.new(
|
3187
3506
|
:users,
|
3188
3507
|
:next_token)
|
3508
|
+
SENSITIVE = []
|
3189
3509
|
include Aws::Structure
|
3190
3510
|
end
|
3191
3511
|
|
@@ -3210,6 +3530,7 @@ module Aws::Chime
|
|
3210
3530
|
class ListVoiceConnectorGroupsRequest < Struct.new(
|
3211
3531
|
:next_token,
|
3212
3532
|
:max_results)
|
3533
|
+
SENSITIVE = []
|
3213
3534
|
include Aws::Structure
|
3214
3535
|
end
|
3215
3536
|
|
@@ -3226,6 +3547,7 @@ module Aws::Chime
|
|
3226
3547
|
class ListVoiceConnectorGroupsResponse < Struct.new(
|
3227
3548
|
:voice_connector_groups,
|
3228
3549
|
:next_token)
|
3550
|
+
SENSITIVE = []
|
3229
3551
|
include Aws::Structure
|
3230
3552
|
end
|
3231
3553
|
|
@@ -3244,6 +3566,7 @@ module Aws::Chime
|
|
3244
3566
|
#
|
3245
3567
|
class ListVoiceConnectorTerminationCredentialsRequest < Struct.new(
|
3246
3568
|
:voice_connector_id)
|
3569
|
+
SENSITIVE = []
|
3247
3570
|
include Aws::Structure
|
3248
3571
|
end
|
3249
3572
|
|
@@ -3255,6 +3578,7 @@ module Aws::Chime
|
|
3255
3578
|
#
|
3256
3579
|
class ListVoiceConnectorTerminationCredentialsResponse < Struct.new(
|
3257
3580
|
:usernames)
|
3581
|
+
SENSITIVE = []
|
3258
3582
|
include Aws::Structure
|
3259
3583
|
end
|
3260
3584
|
|
@@ -3279,6 +3603,7 @@ module Aws::Chime
|
|
3279
3603
|
class ListVoiceConnectorsRequest < Struct.new(
|
3280
3604
|
:next_token,
|
3281
3605
|
:max_results)
|
3606
|
+
SENSITIVE = []
|
3282
3607
|
include Aws::Structure
|
3283
3608
|
end
|
3284
3609
|
|
@@ -3295,6 +3620,7 @@ module Aws::Chime
|
|
3295
3620
|
class ListVoiceConnectorsResponse < Struct.new(
|
3296
3621
|
:voice_connectors,
|
3297
3622
|
:next_token)
|
3623
|
+
SENSITIVE = []
|
3298
3624
|
include Aws::Structure
|
3299
3625
|
end
|
3300
3626
|
|
@@ -3318,6 +3644,7 @@ module Aws::Chime
|
|
3318
3644
|
#
|
3319
3645
|
class LoggingConfiguration < Struct.new(
|
3320
3646
|
:enable_sip_logs)
|
3647
|
+
SENSITIVE = []
|
3321
3648
|
include Aws::Structure
|
3322
3649
|
end
|
3323
3650
|
|
@@ -3342,6 +3669,7 @@ module Aws::Chime
|
|
3342
3669
|
class LogoutUserRequest < Struct.new(
|
3343
3670
|
:account_id,
|
3344
3671
|
:user_id)
|
3672
|
+
SENSITIVE = []
|
3345
3673
|
include Aws::Structure
|
3346
3674
|
end
|
3347
3675
|
|
@@ -3390,6 +3718,7 @@ module Aws::Chime
|
|
3390
3718
|
:screen_viewing_url,
|
3391
3719
|
:signaling_url,
|
3392
3720
|
:turn_control_url)
|
3721
|
+
SENSITIVE = []
|
3393
3722
|
include Aws::Structure
|
3394
3723
|
end
|
3395
3724
|
|
@@ -3422,11 +3751,14 @@ module Aws::Chime
|
|
3422
3751
|
:external_meeting_id,
|
3423
3752
|
:media_placement,
|
3424
3753
|
:media_region)
|
3754
|
+
SENSITIVE = [:external_meeting_id]
|
3425
3755
|
include Aws::Structure
|
3426
3756
|
end
|
3427
3757
|
|
3428
3758
|
# The configuration for resource targets to receive notifications when
|
3429
|
-
# Amazon Chime SDK meeting and attendee events occur.
|
3759
|
+
# Amazon Chime SDK meeting and attendee events occur. The Amazon Chime
|
3760
|
+
# SDK supports resource targets located in the US East (N. Virginia) AWS
|
3761
|
+
# Region (`us-east-1`).
|
3430
3762
|
#
|
3431
3763
|
# @note When making an API call, you may pass MeetingNotificationConfiguration
|
3432
3764
|
# data as a hash:
|
@@ -3449,6 +3781,7 @@ module Aws::Chime
|
|
3449
3781
|
class MeetingNotificationConfiguration < Struct.new(
|
3450
3782
|
:sns_topic_arn,
|
3451
3783
|
:sqs_queue_arn)
|
3784
|
+
SENSITIVE = [:sns_topic_arn, :sqs_queue_arn]
|
3452
3785
|
include Aws::Structure
|
3453
3786
|
end
|
3454
3787
|
|
@@ -3483,6 +3816,7 @@ module Aws::Chime
|
|
3483
3816
|
:email,
|
3484
3817
|
:full_name,
|
3485
3818
|
:account_id)
|
3819
|
+
SENSITIVE = [:email, :full_name]
|
3486
3820
|
include Aws::Structure
|
3487
3821
|
end
|
3488
3822
|
|
@@ -3506,6 +3840,7 @@ module Aws::Chime
|
|
3506
3840
|
:member_id,
|
3507
3841
|
:error_code,
|
3508
3842
|
:error_message)
|
3843
|
+
SENSITIVE = []
|
3509
3844
|
include Aws::Structure
|
3510
3845
|
end
|
3511
3846
|
|
@@ -3532,6 +3867,7 @@ module Aws::Chime
|
|
3532
3867
|
class MembershipItem < Struct.new(
|
3533
3868
|
:member_id,
|
3534
3869
|
:role)
|
3870
|
+
SENSITIVE = []
|
3535
3871
|
include Aws::Structure
|
3536
3872
|
end
|
3537
3873
|
|
@@ -3549,6 +3885,7 @@ module Aws::Chime
|
|
3549
3885
|
class NotFoundException < Struct.new(
|
3550
3886
|
:code,
|
3551
3887
|
:message)
|
3888
|
+
SENSITIVE = []
|
3552
3889
|
include Aws::Structure
|
3553
3890
|
end
|
3554
3891
|
|
@@ -3567,6 +3904,7 @@ module Aws::Chime
|
|
3567
3904
|
class OrderedPhoneNumber < Struct.new(
|
3568
3905
|
:e164_phone_number,
|
3569
3906
|
:status)
|
3907
|
+
SENSITIVE = [:e164_phone_number]
|
3570
3908
|
include Aws::Structure
|
3571
3909
|
end
|
3572
3910
|
|
@@ -3604,6 +3942,7 @@ module Aws::Chime
|
|
3604
3942
|
class Origination < Struct.new(
|
3605
3943
|
:routes,
|
3606
3944
|
:disabled)
|
3945
|
+
SENSITIVE = []
|
3607
3946
|
include Aws::Structure
|
3608
3947
|
end
|
3609
3948
|
|
@@ -3654,6 +3993,7 @@ module Aws::Chime
|
|
3654
3993
|
:protocol,
|
3655
3994
|
:priority,
|
3656
3995
|
:weight)
|
3996
|
+
SENSITIVE = []
|
3657
3997
|
include Aws::Structure
|
3658
3998
|
end
|
3659
3999
|
|
@@ -3673,6 +4013,7 @@ module Aws::Chime
|
|
3673
4013
|
class Participant < Struct.new(
|
3674
4014
|
:phone_number,
|
3675
4015
|
:proxy_phone_number)
|
4016
|
+
SENSITIVE = [:phone_number, :proxy_phone_number]
|
3676
4017
|
include Aws::Structure
|
3677
4018
|
end
|
3678
4019
|
|
@@ -3742,6 +4083,7 @@ module Aws::Chime
|
|
3742
4083
|
:created_timestamp,
|
3743
4084
|
:updated_timestamp,
|
3744
4085
|
:deletion_timestamp)
|
4086
|
+
SENSITIVE = [:e164_phone_number, :calling_name]
|
3745
4087
|
include Aws::Structure
|
3746
4088
|
end
|
3747
4089
|
|
@@ -3769,6 +4111,7 @@ module Aws::Chime
|
|
3769
4111
|
:value,
|
3770
4112
|
:name,
|
3771
4113
|
:associated_timestamp)
|
4114
|
+
SENSITIVE = []
|
3772
4115
|
include Aws::Structure
|
3773
4116
|
end
|
3774
4117
|
|
@@ -3813,6 +4156,7 @@ module Aws::Chime
|
|
3813
4156
|
:outbound_sms,
|
3814
4157
|
:inbound_mms,
|
3815
4158
|
:outbound_mms)
|
4159
|
+
SENSITIVE = []
|
3816
4160
|
include Aws::Structure
|
3817
4161
|
end
|
3818
4162
|
|
@@ -3838,6 +4182,7 @@ module Aws::Chime
|
|
3838
4182
|
:phone_number_id,
|
3839
4183
|
:error_code,
|
3840
4184
|
:error_message)
|
4185
|
+
SENSITIVE = []
|
3841
4186
|
include Aws::Structure
|
3842
4187
|
end
|
3843
4188
|
|
@@ -3877,6 +4222,7 @@ module Aws::Chime
|
|
3877
4222
|
:ordered_phone_numbers,
|
3878
4223
|
:created_timestamp,
|
3879
4224
|
:updated_timestamp)
|
4225
|
+
SENSITIVE = []
|
3880
4226
|
include Aws::Structure
|
3881
4227
|
end
|
3882
4228
|
|
@@ -3906,6 +4252,7 @@ module Aws::Chime
|
|
3906
4252
|
:disabled,
|
3907
4253
|
:fall_back_phone_number,
|
3908
4254
|
:phone_number_countries)
|
4255
|
+
SENSITIVE = [:fall_back_phone_number]
|
3909
4256
|
include Aws::Structure
|
3910
4257
|
end
|
3911
4258
|
|
@@ -3981,6 +4328,7 @@ module Aws::Chime
|
|
3981
4328
|
:number_selection_behavior,
|
3982
4329
|
:geo_match_level,
|
3983
4330
|
:geo_match_params)
|
4331
|
+
SENSITIVE = []
|
3984
4332
|
include Aws::Structure
|
3985
4333
|
end
|
3986
4334
|
|
@@ -4017,6 +4365,7 @@ module Aws::Chime
|
|
4017
4365
|
:bot_id,
|
4018
4366
|
:outbound_events_https_endpoint,
|
4019
4367
|
:lambda_function_arn)
|
4368
|
+
SENSITIVE = [:outbound_events_https_endpoint, :lambda_function_arn]
|
4020
4369
|
include Aws::Structure
|
4021
4370
|
end
|
4022
4371
|
|
@@ -4029,6 +4378,57 @@ module Aws::Chime
|
|
4029
4378
|
#
|
4030
4379
|
class PutEventsConfigurationResponse < Struct.new(
|
4031
4380
|
:events_configuration)
|
4381
|
+
SENSITIVE = []
|
4382
|
+
include Aws::Structure
|
4383
|
+
end
|
4384
|
+
|
4385
|
+
# @note When making an API call, you may pass PutRetentionSettingsRequest
|
4386
|
+
# data as a hash:
|
4387
|
+
#
|
4388
|
+
# {
|
4389
|
+
# account_id: "NonEmptyString", # required
|
4390
|
+
# retention_settings: { # required
|
4391
|
+
# room_retention_settings: {
|
4392
|
+
# retention_days: 1,
|
4393
|
+
# },
|
4394
|
+
# conversation_retention_settings: {
|
4395
|
+
# retention_days: 1,
|
4396
|
+
# },
|
4397
|
+
# },
|
4398
|
+
# }
|
4399
|
+
#
|
4400
|
+
# @!attribute [rw] account_id
|
4401
|
+
# The Amazon Chime account ID.
|
4402
|
+
# @return [String]
|
4403
|
+
#
|
4404
|
+
# @!attribute [rw] retention_settings
|
4405
|
+
# The retention settings.
|
4406
|
+
# @return [Types::RetentionSettings]
|
4407
|
+
#
|
4408
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/PutRetentionSettingsRequest AWS API Documentation
|
4409
|
+
#
|
4410
|
+
class PutRetentionSettingsRequest < Struct.new(
|
4411
|
+
:account_id,
|
4412
|
+
:retention_settings)
|
4413
|
+
SENSITIVE = []
|
4414
|
+
include Aws::Structure
|
4415
|
+
end
|
4416
|
+
|
4417
|
+
# @!attribute [rw] retention_settings
|
4418
|
+
# The retention settings.
|
4419
|
+
# @return [Types::RetentionSettings]
|
4420
|
+
#
|
4421
|
+
# @!attribute [rw] initiate_deletion_timestamp
|
4422
|
+
# The timestamp representing the time at which the specified items are
|
4423
|
+
# permanently deleted, in ISO 8601 format.
|
4424
|
+
# @return [Time]
|
4425
|
+
#
|
4426
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/PutRetentionSettingsResponse AWS API Documentation
|
4427
|
+
#
|
4428
|
+
class PutRetentionSettingsResponse < Struct.new(
|
4429
|
+
:retention_settings,
|
4430
|
+
:initiate_deletion_timestamp)
|
4431
|
+
SENSITIVE = []
|
4032
4432
|
include Aws::Structure
|
4033
4433
|
end
|
4034
4434
|
|
@@ -4055,6 +4455,7 @@ module Aws::Chime
|
|
4055
4455
|
class PutVoiceConnectorLoggingConfigurationRequest < Struct.new(
|
4056
4456
|
:voice_connector_id,
|
4057
4457
|
:logging_configuration)
|
4458
|
+
SENSITIVE = []
|
4058
4459
|
include Aws::Structure
|
4059
4460
|
end
|
4060
4461
|
|
@@ -4066,6 +4467,7 @@ module Aws::Chime
|
|
4066
4467
|
#
|
4067
4468
|
class PutVoiceConnectorLoggingConfigurationResponse < Struct.new(
|
4068
4469
|
:logging_configuration)
|
4470
|
+
SENSITIVE = []
|
4069
4471
|
include Aws::Structure
|
4070
4472
|
end
|
4071
4473
|
|
@@ -4101,6 +4503,7 @@ module Aws::Chime
|
|
4101
4503
|
class PutVoiceConnectorOriginationRequest < Struct.new(
|
4102
4504
|
:voice_connector_id,
|
4103
4505
|
:origination)
|
4506
|
+
SENSITIVE = []
|
4104
4507
|
include Aws::Structure
|
4105
4508
|
end
|
4106
4509
|
|
@@ -4112,6 +4515,7 @@ module Aws::Chime
|
|
4112
4515
|
#
|
4113
4516
|
class PutVoiceConnectorOriginationResponse < Struct.new(
|
4114
4517
|
:origination)
|
4518
|
+
SENSITIVE = []
|
4115
4519
|
include Aws::Structure
|
4116
4520
|
end
|
4117
4521
|
|
@@ -4155,6 +4559,7 @@ module Aws::Chime
|
|
4155
4559
|
:phone_number_pool_countries,
|
4156
4560
|
:fall_back_phone_number,
|
4157
4561
|
:disabled)
|
4562
|
+
SENSITIVE = [:fall_back_phone_number]
|
4158
4563
|
include Aws::Structure
|
4159
4564
|
end
|
4160
4565
|
|
@@ -4166,6 +4571,7 @@ module Aws::Chime
|
|
4166
4571
|
#
|
4167
4572
|
class PutVoiceConnectorProxyResponse < Struct.new(
|
4168
4573
|
:proxy)
|
4574
|
+
SENSITIVE = []
|
4169
4575
|
include Aws::Structure
|
4170
4576
|
end
|
4171
4577
|
|
@@ -4198,6 +4604,7 @@ module Aws::Chime
|
|
4198
4604
|
class PutVoiceConnectorStreamingConfigurationRequest < Struct.new(
|
4199
4605
|
:voice_connector_id,
|
4200
4606
|
:streaming_configuration)
|
4607
|
+
SENSITIVE = []
|
4201
4608
|
include Aws::Structure
|
4202
4609
|
end
|
4203
4610
|
|
@@ -4209,6 +4616,7 @@ module Aws::Chime
|
|
4209
4616
|
#
|
4210
4617
|
class PutVoiceConnectorStreamingConfigurationResponse < Struct.new(
|
4211
4618
|
:streaming_configuration)
|
4619
|
+
SENSITIVE = []
|
4212
4620
|
include Aws::Structure
|
4213
4621
|
end
|
4214
4622
|
|
@@ -4238,6 +4646,7 @@ module Aws::Chime
|
|
4238
4646
|
class PutVoiceConnectorTerminationCredentialsRequest < Struct.new(
|
4239
4647
|
:voice_connector_id,
|
4240
4648
|
:credentials)
|
4649
|
+
SENSITIVE = []
|
4241
4650
|
include Aws::Structure
|
4242
4651
|
end
|
4243
4652
|
|
@@ -4268,6 +4677,7 @@ module Aws::Chime
|
|
4268
4677
|
class PutVoiceConnectorTerminationRequest < Struct.new(
|
4269
4678
|
:voice_connector_id,
|
4270
4679
|
:termination)
|
4680
|
+
SENSITIVE = []
|
4271
4681
|
include Aws::Structure
|
4272
4682
|
end
|
4273
4683
|
|
@@ -4279,6 +4689,7 @@ module Aws::Chime
|
|
4279
4689
|
#
|
4280
4690
|
class PutVoiceConnectorTerminationResponse < Struct.new(
|
4281
4691
|
:termination)
|
4692
|
+
SENSITIVE = []
|
4282
4693
|
include Aws::Structure
|
4283
4694
|
end
|
4284
4695
|
|
@@ -4309,6 +4720,7 @@ module Aws::Chime
|
|
4309
4720
|
:account_id,
|
4310
4721
|
:conversation_id,
|
4311
4722
|
:message_id)
|
4723
|
+
SENSITIVE = []
|
4312
4724
|
include Aws::Structure
|
4313
4725
|
end
|
4314
4726
|
|
@@ -4343,6 +4755,7 @@ module Aws::Chime
|
|
4343
4755
|
:account_id,
|
4344
4756
|
:room_id,
|
4345
4757
|
:message_id)
|
4758
|
+
SENSITIVE = []
|
4346
4759
|
include Aws::Structure
|
4347
4760
|
end
|
4348
4761
|
|
@@ -4371,6 +4784,7 @@ module Aws::Chime
|
|
4371
4784
|
class RegenerateSecurityTokenRequest < Struct.new(
|
4372
4785
|
:account_id,
|
4373
4786
|
:bot_id)
|
4787
|
+
SENSITIVE = []
|
4374
4788
|
include Aws::Structure
|
4375
4789
|
end
|
4376
4790
|
|
@@ -4383,6 +4797,7 @@ module Aws::Chime
|
|
4383
4797
|
#
|
4384
4798
|
class RegenerateSecurityTokenResponse < Struct.new(
|
4385
4799
|
:bot)
|
4800
|
+
SENSITIVE = []
|
4386
4801
|
include Aws::Structure
|
4387
4802
|
end
|
4388
4803
|
|
@@ -4407,6 +4822,7 @@ module Aws::Chime
|
|
4407
4822
|
class ResetPersonalPINRequest < Struct.new(
|
4408
4823
|
:account_id,
|
4409
4824
|
:user_id)
|
4825
|
+
SENSITIVE = []
|
4410
4826
|
include Aws::Structure
|
4411
4827
|
end
|
4412
4828
|
|
@@ -4418,6 +4834,7 @@ module Aws::Chime
|
|
4418
4834
|
#
|
4419
4835
|
class ResetPersonalPINResponse < Struct.new(
|
4420
4836
|
:user)
|
4837
|
+
SENSITIVE = []
|
4421
4838
|
include Aws::Structure
|
4422
4839
|
end
|
4423
4840
|
|
@@ -4434,6 +4851,7 @@ module Aws::Chime
|
|
4434
4851
|
class ResourceLimitExceededException < Struct.new(
|
4435
4852
|
:code,
|
4436
4853
|
:message)
|
4854
|
+
SENSITIVE = []
|
4437
4855
|
include Aws::Structure
|
4438
4856
|
end
|
4439
4857
|
|
@@ -4452,6 +4870,7 @@ module Aws::Chime
|
|
4452
4870
|
#
|
4453
4871
|
class RestorePhoneNumberRequest < Struct.new(
|
4454
4872
|
:phone_number_id)
|
4873
|
+
SENSITIVE = []
|
4455
4874
|
include Aws::Structure
|
4456
4875
|
end
|
4457
4876
|
|
@@ -4463,6 +4882,40 @@ module Aws::Chime
|
|
4463
4882
|
#
|
4464
4883
|
class RestorePhoneNumberResponse < Struct.new(
|
4465
4884
|
:phone_number)
|
4885
|
+
SENSITIVE = []
|
4886
|
+
include Aws::Structure
|
4887
|
+
end
|
4888
|
+
|
4889
|
+
# The retention settings for an Amazon Chime Enterprise account that
|
4890
|
+
# determine how long to retain items such as chat room messages and chat
|
4891
|
+
# conversation messages.
|
4892
|
+
#
|
4893
|
+
# @note When making an API call, you may pass RetentionSettings
|
4894
|
+
# data as a hash:
|
4895
|
+
#
|
4896
|
+
# {
|
4897
|
+
# room_retention_settings: {
|
4898
|
+
# retention_days: 1,
|
4899
|
+
# },
|
4900
|
+
# conversation_retention_settings: {
|
4901
|
+
# retention_days: 1,
|
4902
|
+
# },
|
4903
|
+
# }
|
4904
|
+
#
|
4905
|
+
# @!attribute [rw] room_retention_settings
|
4906
|
+
# The chat room retention settings.
|
4907
|
+
# @return [Types::RoomRetentionSettings]
|
4908
|
+
#
|
4909
|
+
# @!attribute [rw] conversation_retention_settings
|
4910
|
+
# The chat conversation retention settings.
|
4911
|
+
# @return [Types::ConversationRetentionSettings]
|
4912
|
+
#
|
4913
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/RetentionSettings AWS API Documentation
|
4914
|
+
#
|
4915
|
+
class RetentionSettings < Struct.new(
|
4916
|
+
:room_retention_settings,
|
4917
|
+
:conversation_retention_settings)
|
4918
|
+
SENSITIVE = []
|
4466
4919
|
include Aws::Structure
|
4467
4920
|
end
|
4468
4921
|
|
@@ -4501,6 +4954,7 @@ module Aws::Chime
|
|
4501
4954
|
:created_by,
|
4502
4955
|
:created_timestamp,
|
4503
4956
|
:updated_timestamp)
|
4957
|
+
SENSITIVE = [:name]
|
4504
4958
|
include Aws::Structure
|
4505
4959
|
end
|
4506
4960
|
|
@@ -4535,6 +4989,29 @@ module Aws::Chime
|
|
4535
4989
|
:role,
|
4536
4990
|
:invited_by,
|
4537
4991
|
:updated_timestamp)
|
4992
|
+
SENSITIVE = []
|
4993
|
+
include Aws::Structure
|
4994
|
+
end
|
4995
|
+
|
4996
|
+
# The retention settings that determine how long to retain chat room
|
4997
|
+
# messages for an Amazon Chime Enterprise account.
|
4998
|
+
#
|
4999
|
+
# @note When making an API call, you may pass RoomRetentionSettings
|
5000
|
+
# data as a hash:
|
5001
|
+
#
|
5002
|
+
# {
|
5003
|
+
# retention_days: 1,
|
5004
|
+
# }
|
5005
|
+
#
|
5006
|
+
# @!attribute [rw] retention_days
|
5007
|
+
# The number of days for which to retain chat room messages.
|
5008
|
+
# @return [Integer]
|
5009
|
+
#
|
5010
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-2018-05-01/RoomRetentionSettings AWS API Documentation
|
5011
|
+
#
|
5012
|
+
class RoomRetentionSettings < Struct.new(
|
5013
|
+
:retention_days)
|
5014
|
+
SENSITIVE = []
|
4538
5015
|
include Aws::Structure
|
4539
5016
|
end
|
4540
5017
|
|
@@ -4589,6 +5066,7 @@ module Aws::Chime
|
|
4589
5066
|
:toll_free_prefix,
|
4590
5067
|
:max_results,
|
4591
5068
|
:next_token)
|
5069
|
+
SENSITIVE = []
|
4592
5070
|
include Aws::Structure
|
4593
5071
|
end
|
4594
5072
|
|
@@ -4600,6 +5078,7 @@ module Aws::Chime
|
|
4600
5078
|
#
|
4601
5079
|
class SearchAvailablePhoneNumbersResponse < Struct.new(
|
4602
5080
|
:e164_phone_numbers)
|
5081
|
+
SENSITIVE = []
|
4603
5082
|
include Aws::Structure
|
4604
5083
|
end
|
4605
5084
|
|
@@ -4616,6 +5095,7 @@ module Aws::Chime
|
|
4616
5095
|
class ServiceFailureException < Struct.new(
|
4617
5096
|
:code,
|
4618
5097
|
:message)
|
5098
|
+
SENSITIVE = []
|
4619
5099
|
include Aws::Structure
|
4620
5100
|
end
|
4621
5101
|
|
@@ -4632,6 +5112,7 @@ module Aws::Chime
|
|
4632
5112
|
class ServiceUnavailableException < Struct.new(
|
4633
5113
|
:code,
|
4634
5114
|
:message)
|
5115
|
+
SENSITIVE = []
|
4635
5116
|
include Aws::Structure
|
4636
5117
|
end
|
4637
5118
|
|
@@ -4653,6 +5134,7 @@ module Aws::Chime
|
|
4653
5134
|
#
|
4654
5135
|
class SigninDelegateGroup < Struct.new(
|
4655
5136
|
:group_name)
|
5137
|
+
SENSITIVE = []
|
4656
5138
|
include Aws::Structure
|
4657
5139
|
end
|
4658
5140
|
|
@@ -4692,6 +5174,7 @@ module Aws::Chime
|
|
4692
5174
|
:data_retention_in_hours,
|
4693
5175
|
:disabled,
|
4694
5176
|
:streaming_notification_targets)
|
5177
|
+
SENSITIVE = []
|
4695
5178
|
include Aws::Structure
|
4696
5179
|
end
|
4697
5180
|
|
@@ -4712,6 +5195,7 @@ module Aws::Chime
|
|
4712
5195
|
#
|
4713
5196
|
class StreamingNotificationTarget < Struct.new(
|
4714
5197
|
:notification_target)
|
5198
|
+
SENSITIVE = []
|
4715
5199
|
include Aws::Structure
|
4716
5200
|
end
|
4717
5201
|
|
@@ -4738,6 +5222,7 @@ module Aws::Chime
|
|
4738
5222
|
class Tag < Struct.new(
|
4739
5223
|
:key,
|
4740
5224
|
:value)
|
5225
|
+
SENSITIVE = [:key, :value]
|
4741
5226
|
include Aws::Structure
|
4742
5227
|
end
|
4743
5228
|
|
@@ -4773,6 +5258,7 @@ module Aws::Chime
|
|
4773
5258
|
:meeting_id,
|
4774
5259
|
:attendee_id,
|
4775
5260
|
:tags)
|
5261
|
+
SENSITIVE = []
|
4776
5262
|
include Aws::Structure
|
4777
5263
|
end
|
4778
5264
|
|
@@ -4802,6 +5288,7 @@ module Aws::Chime
|
|
4802
5288
|
class TagMeetingRequest < Struct.new(
|
4803
5289
|
:meeting_id,
|
4804
5290
|
:tags)
|
5291
|
+
SENSITIVE = []
|
4805
5292
|
include Aws::Structure
|
4806
5293
|
end
|
4807
5294
|
|
@@ -4831,6 +5318,7 @@ module Aws::Chime
|
|
4831
5318
|
class TagResourceRequest < Struct.new(
|
4832
5319
|
:resource_arn,
|
4833
5320
|
:tags)
|
5321
|
+
SENSITIVE = [:resource_arn]
|
4834
5322
|
include Aws::Structure
|
4835
5323
|
end
|
4836
5324
|
|
@@ -4864,6 +5352,7 @@ module Aws::Chime
|
|
4864
5352
|
:inbound_calling,
|
4865
5353
|
:outbound_calling,
|
4866
5354
|
:sms)
|
5355
|
+
SENSITIVE = []
|
4867
5356
|
include Aws::Structure
|
4868
5357
|
end
|
4869
5358
|
|
@@ -4912,6 +5401,7 @@ module Aws::Chime
|
|
4912
5401
|
:calling_regions,
|
4913
5402
|
:cidr_allowed_list,
|
4914
5403
|
:disabled)
|
5404
|
+
SENSITIVE = [:default_phone_number]
|
4915
5405
|
include Aws::Structure
|
4916
5406
|
end
|
4917
5407
|
|
@@ -4932,6 +5422,7 @@ module Aws::Chime
|
|
4932
5422
|
class TerminationHealth < Struct.new(
|
4933
5423
|
:timestamp,
|
4934
5424
|
:source)
|
5425
|
+
SENSITIVE = []
|
4935
5426
|
include Aws::Structure
|
4936
5427
|
end
|
4937
5428
|
|
@@ -4948,6 +5439,7 @@ module Aws::Chime
|
|
4948
5439
|
class ThrottledClientException < Struct.new(
|
4949
5440
|
:code,
|
4950
5441
|
:message)
|
5442
|
+
SENSITIVE = []
|
4951
5443
|
include Aws::Structure
|
4952
5444
|
end
|
4953
5445
|
|
@@ -4964,6 +5456,7 @@ module Aws::Chime
|
|
4964
5456
|
class UnauthorizedClientException < Struct.new(
|
4965
5457
|
:code,
|
4966
5458
|
:message)
|
5459
|
+
SENSITIVE = []
|
4967
5460
|
include Aws::Structure
|
4968
5461
|
end
|
4969
5462
|
|
@@ -4981,6 +5474,7 @@ module Aws::Chime
|
|
4981
5474
|
class UnprocessableEntityException < Struct.new(
|
4982
5475
|
:code,
|
4983
5476
|
:message)
|
5477
|
+
SENSITIVE = []
|
4984
5478
|
include Aws::Structure
|
4985
5479
|
end
|
4986
5480
|
|
@@ -5011,6 +5505,7 @@ module Aws::Chime
|
|
5011
5505
|
:meeting_id,
|
5012
5506
|
:attendee_id,
|
5013
5507
|
:tag_keys)
|
5508
|
+
SENSITIVE = []
|
5014
5509
|
include Aws::Structure
|
5015
5510
|
end
|
5016
5511
|
|
@@ -5035,6 +5530,7 @@ module Aws::Chime
|
|
5035
5530
|
class UntagMeetingRequest < Struct.new(
|
5036
5531
|
:meeting_id,
|
5037
5532
|
:tag_keys)
|
5533
|
+
SENSITIVE = []
|
5038
5534
|
include Aws::Structure
|
5039
5535
|
end
|
5040
5536
|
|
@@ -5059,6 +5555,7 @@ module Aws::Chime
|
|
5059
5555
|
class UntagResourceRequest < Struct.new(
|
5060
5556
|
:resource_arn,
|
5061
5557
|
:tag_keys)
|
5558
|
+
SENSITIVE = [:resource_arn]
|
5062
5559
|
include Aws::Structure
|
5063
5560
|
end
|
5064
5561
|
|
@@ -5083,6 +5580,7 @@ module Aws::Chime
|
|
5083
5580
|
class UpdateAccountRequest < Struct.new(
|
5084
5581
|
:account_id,
|
5085
5582
|
:name)
|
5583
|
+
SENSITIVE = []
|
5086
5584
|
include Aws::Structure
|
5087
5585
|
end
|
5088
5586
|
|
@@ -5094,6 +5592,7 @@ module Aws::Chime
|
|
5094
5592
|
#
|
5095
5593
|
class UpdateAccountResponse < Struct.new(
|
5096
5594
|
:account)
|
5595
|
+
SENSITIVE = []
|
5097
5596
|
include Aws::Structure
|
5098
5597
|
end
|
5099
5598
|
|
@@ -5121,6 +5620,7 @@ module Aws::Chime
|
|
5121
5620
|
class UpdateAccountSettingsRequest < Struct.new(
|
5122
5621
|
:account_id,
|
5123
5622
|
:account_settings)
|
5623
|
+
SENSITIVE = []
|
5124
5624
|
include Aws::Structure
|
5125
5625
|
end
|
5126
5626
|
|
@@ -5155,6 +5655,7 @@ module Aws::Chime
|
|
5155
5655
|
:account_id,
|
5156
5656
|
:bot_id,
|
5157
5657
|
:disabled)
|
5658
|
+
SENSITIVE = []
|
5158
5659
|
include Aws::Structure
|
5159
5660
|
end
|
5160
5661
|
|
@@ -5166,6 +5667,7 @@ module Aws::Chime
|
|
5166
5667
|
#
|
5167
5668
|
class UpdateBotResponse < Struct.new(
|
5168
5669
|
:bot)
|
5670
|
+
SENSITIVE = []
|
5169
5671
|
include Aws::Structure
|
5170
5672
|
end
|
5171
5673
|
|
@@ -5194,6 +5696,7 @@ module Aws::Chime
|
|
5194
5696
|
class UpdateGlobalSettingsRequest < Struct.new(
|
5195
5697
|
:business_calling,
|
5196
5698
|
:voice_connector)
|
5699
|
+
SENSITIVE = []
|
5197
5700
|
include Aws::Structure
|
5198
5701
|
end
|
5199
5702
|
|
@@ -5224,6 +5727,7 @@ module Aws::Chime
|
|
5224
5727
|
:phone_number_id,
|
5225
5728
|
:product_type,
|
5226
5729
|
:calling_name)
|
5730
|
+
SENSITIVE = [:calling_name]
|
5227
5731
|
include Aws::Structure
|
5228
5732
|
end
|
5229
5733
|
|
@@ -5257,6 +5761,7 @@ module Aws::Chime
|
|
5257
5761
|
:phone_number_id,
|
5258
5762
|
:product_type,
|
5259
5763
|
:calling_name)
|
5764
|
+
SENSITIVE = [:calling_name]
|
5260
5765
|
include Aws::Structure
|
5261
5766
|
end
|
5262
5767
|
|
@@ -5268,6 +5773,7 @@ module Aws::Chime
|
|
5268
5773
|
#
|
5269
5774
|
class UpdatePhoneNumberResponse < Struct.new(
|
5270
5775
|
:phone_number)
|
5776
|
+
SENSITIVE = []
|
5271
5777
|
include Aws::Structure
|
5272
5778
|
end
|
5273
5779
|
|
@@ -5286,6 +5792,7 @@ module Aws::Chime
|
|
5286
5792
|
#
|
5287
5793
|
class UpdatePhoneNumberSettingsRequest < Struct.new(
|
5288
5794
|
:calling_name)
|
5795
|
+
SENSITIVE = [:calling_name]
|
5289
5796
|
include Aws::Structure
|
5290
5797
|
end
|
5291
5798
|
|
@@ -5322,6 +5829,7 @@ module Aws::Chime
|
|
5322
5829
|
:proxy_session_id,
|
5323
5830
|
:capabilities,
|
5324
5831
|
:expiry_minutes)
|
5832
|
+
SENSITIVE = []
|
5325
5833
|
include Aws::Structure
|
5326
5834
|
end
|
5327
5835
|
|
@@ -5333,6 +5841,7 @@ module Aws::Chime
|
|
5333
5841
|
#
|
5334
5842
|
class UpdateProxySessionResponse < Struct.new(
|
5335
5843
|
:proxy_session)
|
5844
|
+
SENSITIVE = []
|
5336
5845
|
include Aws::Structure
|
5337
5846
|
end
|
5338
5847
|
|
@@ -5369,6 +5878,7 @@ module Aws::Chime
|
|
5369
5878
|
:room_id,
|
5370
5879
|
:member_id,
|
5371
5880
|
:role)
|
5881
|
+
SENSITIVE = []
|
5372
5882
|
include Aws::Structure
|
5373
5883
|
end
|
5374
5884
|
|
@@ -5380,6 +5890,7 @@ module Aws::Chime
|
|
5380
5890
|
#
|
5381
5891
|
class UpdateRoomMembershipResponse < Struct.new(
|
5382
5892
|
:room_membership)
|
5893
|
+
SENSITIVE = []
|
5383
5894
|
include Aws::Structure
|
5384
5895
|
end
|
5385
5896
|
|
@@ -5410,6 +5921,7 @@ module Aws::Chime
|
|
5410
5921
|
:account_id,
|
5411
5922
|
:room_id,
|
5412
5923
|
:name)
|
5924
|
+
SENSITIVE = [:name]
|
5413
5925
|
include Aws::Structure
|
5414
5926
|
end
|
5415
5927
|
|
@@ -5421,6 +5933,7 @@ module Aws::Chime
|
|
5421
5933
|
#
|
5422
5934
|
class UpdateRoomResponse < Struct.new(
|
5423
5935
|
:room)
|
5936
|
+
SENSITIVE = []
|
5424
5937
|
include Aws::Structure
|
5425
5938
|
end
|
5426
5939
|
|
@@ -5467,6 +5980,7 @@ module Aws::Chime
|
|
5467
5980
|
:license_type,
|
5468
5981
|
:user_type,
|
5469
5982
|
:alexa_for_business_metadata)
|
5983
|
+
SENSITIVE = []
|
5470
5984
|
include Aws::Structure
|
5471
5985
|
end
|
5472
5986
|
|
@@ -5509,6 +6023,7 @@ module Aws::Chime
|
|
5509
6023
|
:license_type,
|
5510
6024
|
:user_type,
|
5511
6025
|
:alexa_for_business_metadata)
|
6026
|
+
SENSITIVE = []
|
5512
6027
|
include Aws::Structure
|
5513
6028
|
end
|
5514
6029
|
|
@@ -5520,6 +6035,7 @@ module Aws::Chime
|
|
5520
6035
|
#
|
5521
6036
|
class UpdateUserResponse < Struct.new(
|
5522
6037
|
:user)
|
6038
|
+
SENSITIVE = []
|
5523
6039
|
include Aws::Structure
|
5524
6040
|
end
|
5525
6041
|
|
@@ -5556,6 +6072,7 @@ module Aws::Chime
|
|
5556
6072
|
:account_id,
|
5557
6073
|
:user_id,
|
5558
6074
|
:user_settings)
|
6075
|
+
SENSITIVE = []
|
5559
6076
|
include Aws::Structure
|
5560
6077
|
end
|
5561
6078
|
|
@@ -5591,6 +6108,7 @@ module Aws::Chime
|
|
5591
6108
|
:voice_connector_group_id,
|
5592
6109
|
:name,
|
5593
6110
|
:voice_connector_items)
|
6111
|
+
SENSITIVE = []
|
5594
6112
|
include Aws::Structure
|
5595
6113
|
end
|
5596
6114
|
|
@@ -5602,6 +6120,7 @@ module Aws::Chime
|
|
5602
6120
|
#
|
5603
6121
|
class UpdateVoiceConnectorGroupResponse < Struct.new(
|
5604
6122
|
:voice_connector_group)
|
6123
|
+
SENSITIVE = []
|
5605
6124
|
include Aws::Structure
|
5606
6125
|
end
|
5607
6126
|
|
@@ -5633,6 +6152,7 @@ module Aws::Chime
|
|
5633
6152
|
:voice_connector_id,
|
5634
6153
|
:name,
|
5635
6154
|
:require_encryption)
|
6155
|
+
SENSITIVE = []
|
5636
6156
|
include Aws::Structure
|
5637
6157
|
end
|
5638
6158
|
|
@@ -5644,6 +6164,7 @@ module Aws::Chime
|
|
5644
6164
|
#
|
5645
6165
|
class UpdateVoiceConnectorResponse < Struct.new(
|
5646
6166
|
:voice_connector)
|
6167
|
+
SENSITIVE = []
|
5647
6168
|
include Aws::Structure
|
5648
6169
|
end
|
5649
6170
|
|
@@ -5718,6 +6239,7 @@ module Aws::Chime
|
|
5718
6239
|
:invited_on,
|
5719
6240
|
:alexa_for_business_metadata,
|
5720
6241
|
:personal_pin)
|
6242
|
+
SENSITIVE = [:primary_email, :primary_provisioned_number, :display_name]
|
5721
6243
|
include Aws::Structure
|
5722
6244
|
end
|
5723
6245
|
|
@@ -5743,6 +6265,7 @@ module Aws::Chime
|
|
5743
6265
|
:user_id,
|
5744
6266
|
:error_code,
|
5745
6267
|
:error_message)
|
6268
|
+
SENSITIVE = []
|
5746
6269
|
include Aws::Structure
|
5747
6270
|
end
|
5748
6271
|
|
@@ -5768,6 +6291,7 @@ module Aws::Chime
|
|
5768
6291
|
#
|
5769
6292
|
class UserSettings < Struct.new(
|
5770
6293
|
:telephony)
|
6294
|
+
SENSITIVE = []
|
5771
6295
|
include Aws::Structure
|
5772
6296
|
end
|
5773
6297
|
|
@@ -5816,6 +6340,7 @@ module Aws::Chime
|
|
5816
6340
|
:require_encryption,
|
5817
6341
|
:created_timestamp,
|
5818
6342
|
:updated_timestamp)
|
6343
|
+
SENSITIVE = []
|
5819
6344
|
include Aws::Structure
|
5820
6345
|
end
|
5821
6346
|
|
@@ -5855,6 +6380,7 @@ module Aws::Chime
|
|
5855
6380
|
:voice_connector_items,
|
5856
6381
|
:created_timestamp,
|
5857
6382
|
:updated_timestamp)
|
6383
|
+
SENSITIVE = []
|
5858
6384
|
include Aws::Structure
|
5859
6385
|
end
|
5860
6386
|
|
@@ -5886,6 +6412,7 @@ module Aws::Chime
|
|
5886
6412
|
class VoiceConnectorItem < Struct.new(
|
5887
6413
|
:voice_connector_id,
|
5888
6414
|
:priority)
|
6415
|
+
SENSITIVE = []
|
5889
6416
|
include Aws::Structure
|
5890
6417
|
end
|
5891
6418
|
|
@@ -5907,6 +6434,7 @@ module Aws::Chime
|
|
5907
6434
|
#
|
5908
6435
|
class VoiceConnectorSettings < Struct.new(
|
5909
6436
|
:cdr_bucket)
|
6437
|
+
SENSITIVE = []
|
5910
6438
|
include Aws::Structure
|
5911
6439
|
end
|
5912
6440
|
|