aws-sdk-chimesdkidentity 1.0.0 → 1.4.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.
@@ -165,6 +165,129 @@ module Aws::ChimeSDKIdentity
165
165
  include Aws::Structure
166
166
  end
167
167
 
168
+ # An endpoint under an Amazon Chime `AppInstanceUser` that receives
169
+ # messages for a user. For push notifications, the endpoint is a mobile
170
+ # device used to receive mobile push notifications for a user.
171
+ #
172
+ # @!attribute [rw] app_instance_user_arn
173
+ # The ARN of the `AppInstanceUser`.
174
+ # @return [String]
175
+ #
176
+ # @!attribute [rw] endpoint_id
177
+ # The unique identifier of the `AppInstanceUserEndpoint`.
178
+ # @return [String]
179
+ #
180
+ # @!attribute [rw] name
181
+ # The name of the `AppInstanceUserEndpoint`.
182
+ # @return [String]
183
+ #
184
+ # @!attribute [rw] type
185
+ # The type of the `AppInstanceUserEndpoint`.
186
+ # @return [String]
187
+ #
188
+ # @!attribute [rw] resource_arn
189
+ # The ARN of the resource to which the endpoint belongs.
190
+ # @return [String]
191
+ #
192
+ # @!attribute [rw] endpoint_attributes
193
+ # The attributes of an `Endpoint`.
194
+ # @return [Types::EndpointAttributes]
195
+ #
196
+ # @!attribute [rw] created_timestamp
197
+ # The time at which an `AppInstanceUserEndpoint` was created.
198
+ # @return [Time]
199
+ #
200
+ # @!attribute [rw] last_updated_timestamp
201
+ # The time at which an `AppInstanceUserEndpoint` was last updated.
202
+ # @return [Time]
203
+ #
204
+ # @!attribute [rw] allow_messages
205
+ # Boolean that controls whether the `AppInstanceUserEndpoint` is opted
206
+ # in to receive messages. `ALL` indicates the endpoint will receive
207
+ # all messages. `NONE` indicates the endpoint will receive no
208
+ # messages.
209
+ # @return [String]
210
+ #
211
+ # @!attribute [rw] endpoint_state
212
+ # A read-only field that represents the state of an
213
+ # `AppInstanceUserEndpoint`. Supported values:
214
+ #
215
+ # * `ACTIVE`\: The `AppInstanceUserEndpoint` is active and able to
216
+ # receive messages. When `ACTIVE`, the `EndpointStatusReason`
217
+ # remains empty.
218
+ #
219
+ # * `INACTIVE`\: The `AppInstanceUserEndpoint` is inactive and can't
220
+ # receive message. When `INACTIVE`, the corresponding reason will be
221
+ # conveyed through `EndpointStatusReason`.
222
+ #
223
+ # * `INVALID_DEVICE_TOKEN` indicates that an `AppInstanceUserEndpoint`
224
+ # is `INACTIVE` due to invalid device token
225
+ #
226
+ # * `INVALID_PINPOINT_ARN` indicates that an `AppInstanceUserEndpoint`
227
+ # is `INACTIVE` due to an invalid pinpoint ARN that was input
228
+ # through the `ResourceArn` field.
229
+ # @return [Types::EndpointState]
230
+ #
231
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/AppInstanceUserEndpoint AWS API Documentation
232
+ #
233
+ class AppInstanceUserEndpoint < Struct.new(
234
+ :app_instance_user_arn,
235
+ :endpoint_id,
236
+ :name,
237
+ :type,
238
+ :resource_arn,
239
+ :endpoint_attributes,
240
+ :created_timestamp,
241
+ :last_updated_timestamp,
242
+ :allow_messages,
243
+ :endpoint_state)
244
+ SENSITIVE = [:app_instance_user_arn, :endpoint_id, :name, :resource_arn]
245
+ include Aws::Structure
246
+ end
247
+
248
+ # Summary of the details of an `AppInstanceUserEndpoint`.
249
+ #
250
+ # @!attribute [rw] app_instance_user_arn
251
+ # The ARN of the `AppInstanceUser`.
252
+ # @return [String]
253
+ #
254
+ # @!attribute [rw] endpoint_id
255
+ # The unique identifier of the `AppInstanceUserEndpoint`.
256
+ # @return [String]
257
+ #
258
+ # @!attribute [rw] name
259
+ # The name of the `AppInstanceUserEndpoint`.
260
+ # @return [String]
261
+ #
262
+ # @!attribute [rw] type
263
+ # The type of the `AppInstanceUserEndpoint`.
264
+ # @return [String]
265
+ #
266
+ # @!attribute [rw] allow_messages
267
+ # BBoolean that controls whether the `AppInstanceUserEndpoint` is
268
+ # opted in to receive messages. `ALL` indicates the endpoint will
269
+ # receive all messages. `NONE` indicates the endpoint will receive no
270
+ # messages.
271
+ # @return [String]
272
+ #
273
+ # @!attribute [rw] endpoint_state
274
+ # A read-only field that represent the state of an
275
+ # `AppInstanceUserEndpoint`.
276
+ # @return [Types::EndpointState]
277
+ #
278
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/AppInstanceUserEndpointSummary AWS API Documentation
279
+ #
280
+ class AppInstanceUserEndpointSummary < Struct.new(
281
+ :app_instance_user_arn,
282
+ :endpoint_id,
283
+ :name,
284
+ :type,
285
+ :allow_messages,
286
+ :endpoint_state)
287
+ SENSITIVE = [:app_instance_user_arn, :endpoint_id, :name]
288
+ include Aws::Structure
289
+ end
290
+
168
291
  # Summary of the details of an `AppInstanceUser`.
169
292
  #
170
293
  # @!attribute [rw] app_instance_user_arn
@@ -476,6 +599,31 @@ module Aws::ChimeSDKIdentity
476
599
  include Aws::Structure
477
600
  end
478
601
 
602
+ # @note When making an API call, you may pass DeregisterAppInstanceUserEndpointRequest
603
+ # data as a hash:
604
+ #
605
+ # {
606
+ # app_instance_user_arn: "SensitiveChimeArn", # required
607
+ # endpoint_id: "SensitiveString64", # required
608
+ # }
609
+ #
610
+ # @!attribute [rw] app_instance_user_arn
611
+ # The ARN of the `AppInstanceUser`.
612
+ # @return [String]
613
+ #
614
+ # @!attribute [rw] endpoint_id
615
+ # The unique identifier of the `AppInstanceUserEndpoint`.
616
+ # @return [String]
617
+ #
618
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/DeregisterAppInstanceUserEndpointRequest AWS API Documentation
619
+ #
620
+ class DeregisterAppInstanceUserEndpointRequest < Struct.new(
621
+ :app_instance_user_arn,
622
+ :endpoint_id)
623
+ SENSITIVE = [:app_instance_user_arn, :endpoint_id]
624
+ include Aws::Structure
625
+ end
626
+
479
627
  # @note When making an API call, you may pass DescribeAppInstanceAdminRequest
480
628
  # data as a hash:
481
629
  #
@@ -547,6 +695,46 @@ module Aws::ChimeSDKIdentity
547
695
  include Aws::Structure
548
696
  end
549
697
 
698
+ # @note When making an API call, you may pass DescribeAppInstanceUserEndpointRequest
699
+ # data as a hash:
700
+ #
701
+ # {
702
+ # app_instance_user_arn: "SensitiveString1600", # required
703
+ # endpoint_id: "SensitiveString64", # required
704
+ # }
705
+ #
706
+ # @!attribute [rw] app_instance_user_arn
707
+ # The ARN of the `AppInstanceUser`.
708
+ # @return [String]
709
+ #
710
+ # @!attribute [rw] endpoint_id
711
+ # The unique identifier of the `AppInstanceUserEndpoint`.
712
+ # @return [String]
713
+ #
714
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/DescribeAppInstanceUserEndpointRequest AWS API Documentation
715
+ #
716
+ class DescribeAppInstanceUserEndpointRequest < Struct.new(
717
+ :app_instance_user_arn,
718
+ :endpoint_id)
719
+ SENSITIVE = [:app_instance_user_arn, :endpoint_id]
720
+ include Aws::Structure
721
+ end
722
+
723
+ # @!attribute [rw] app_instance_user_endpoint
724
+ # The full details of an `AppInstanceUserEndpoint`\: the
725
+ # `AppInstanceUserArn`, ID, name, type, resource ARN, attributes,
726
+ # allow messages, state, and created and last updated timestamps. All
727
+ # timestamps use epoch milliseconds.
728
+ # @return [Types::AppInstanceUserEndpoint]
729
+ #
730
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/DescribeAppInstanceUserEndpointResponse AWS API Documentation
731
+ #
732
+ class DescribeAppInstanceUserEndpointResponse < Struct.new(
733
+ :app_instance_user_endpoint)
734
+ SENSITIVE = []
735
+ include Aws::Structure
736
+ end
737
+
550
738
  # @note When making an API call, you may pass DescribeAppInstanceUserRequest
551
739
  # data as a hash:
552
740
  #
@@ -578,6 +766,69 @@ module Aws::ChimeSDKIdentity
578
766
  include Aws::Structure
579
767
  end
580
768
 
769
+ # The attributes of an `Endpoint`.
770
+ #
771
+ # @note When making an API call, you may pass EndpointAttributes
772
+ # data as a hash:
773
+ #
774
+ # {
775
+ # device_token: "NonEmptySensitiveString1600", # required
776
+ # voip_device_token: "NonEmptySensitiveString1600",
777
+ # }
778
+ #
779
+ # @!attribute [rw] device_token
780
+ # The device token for the GCM, APNS, and APNS\_SANDBOX endpoint
781
+ # types.
782
+ # @return [String]
783
+ #
784
+ # @!attribute [rw] voip_device_token
785
+ # The VOIP device token for the APNS and APNS\_SANDBOX endpoint types.
786
+ # @return [String]
787
+ #
788
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/EndpointAttributes AWS API Documentation
789
+ #
790
+ class EndpointAttributes < Struct.new(
791
+ :device_token,
792
+ :voip_device_token)
793
+ SENSITIVE = [:device_token, :voip_device_token]
794
+ include Aws::Structure
795
+ end
796
+
797
+ # A read-only field that represents the state of an
798
+ # `AppInstanceUserEndpoint`. Supported values:
799
+ #
800
+ # * `ACTIVE`\: The `AppInstanceUserEndpoint` is active and able to
801
+ # receive messages. When `ACTIVE`, the `EndpointStatusReason` remains
802
+ # empty.
803
+ #
804
+ # * `INACTIVE`\: The `AppInstanceUserEndpoint` is inactive and can't
805
+ # receive message. When INACTIVE, the corresponding reason will be
806
+ # conveyed through EndpointStatusReason.
807
+ #
808
+ # * `INVALID_DEVICE_TOKEN` indicates that an `AppInstanceUserEndpoint`
809
+ # is `INACTIVE` due to invalid device token
810
+ #
811
+ # * `INVALID_PINPOINT_ARN` indicates that an `AppInstanceUserEndpoint`
812
+ # is `INACTIVE` due to an invalid pinpoint ARN that was input through
813
+ # the `ResourceArn` field.
814
+ #
815
+ # @!attribute [rw] status
816
+ # Enum that indicates the Status of an `AppInstanceUserEndpoint`.
817
+ # @return [String]
818
+ #
819
+ # @!attribute [rw] status_reason
820
+ # The reason for the `EndpointStatus`.
821
+ # @return [String]
822
+ #
823
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/EndpointState AWS API Documentation
824
+ #
825
+ class EndpointState < Struct.new(
826
+ :status,
827
+ :status_reason)
828
+ SENSITIVE = []
829
+ include Aws::Structure
830
+ end
831
+
581
832
  # The client is permanently forbidden from making the request.
582
833
  #
583
834
  # @!attribute [rw] code
@@ -706,6 +957,56 @@ module Aws::ChimeSDKIdentity
706
957
  include Aws::Structure
707
958
  end
708
959
 
960
+ # @note When making an API call, you may pass ListAppInstanceUserEndpointsRequest
961
+ # data as a hash:
962
+ #
963
+ # {
964
+ # app_instance_user_arn: "SensitiveChimeArn", # required
965
+ # max_results: 1,
966
+ # next_token: "NextToken",
967
+ # }
968
+ #
969
+ # @!attribute [rw] app_instance_user_arn
970
+ # The ARN of the `AppInstanceUser`.
971
+ # @return [String]
972
+ #
973
+ # @!attribute [rw] max_results
974
+ # The maximum number of endpoints that you want to return.
975
+ # @return [Integer]
976
+ #
977
+ # @!attribute [rw] next_token
978
+ # The token passed by previous API calls until all requested endpoints
979
+ # are returned.
980
+ # @return [String]
981
+ #
982
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/ListAppInstanceUserEndpointsRequest AWS API Documentation
983
+ #
984
+ class ListAppInstanceUserEndpointsRequest < Struct.new(
985
+ :app_instance_user_arn,
986
+ :max_results,
987
+ :next_token)
988
+ SENSITIVE = [:app_instance_user_arn, :next_token]
989
+ include Aws::Structure
990
+ end
991
+
992
+ # @!attribute [rw] app_instance_user_endpoints
993
+ # The information for each requested `AppInstanceUserEndpoint`.
994
+ # @return [Array<Types::AppInstanceUserEndpointSummary>]
995
+ #
996
+ # @!attribute [rw] next_token
997
+ # The token passed by previous API calls until all requested endpoints
998
+ # are returned.
999
+ # @return [String]
1000
+ #
1001
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/ListAppInstanceUserEndpointsResponse AWS API Documentation
1002
+ #
1003
+ class ListAppInstanceUserEndpointsResponse < Struct.new(
1004
+ :app_instance_user_endpoints,
1005
+ :next_token)
1006
+ SENSITIVE = [:next_token]
1007
+ include Aws::Structure
1008
+ end
1009
+
709
1010
  # @note When making an API call, you may pass ListAppInstanceUsersRequest
710
1011
  # data as a hash:
711
1012
  #
@@ -805,6 +1106,37 @@ module Aws::ChimeSDKIdentity
805
1106
  include Aws::Structure
806
1107
  end
807
1108
 
1109
+ # @note When making an API call, you may pass ListTagsForResourceRequest
1110
+ # data as a hash:
1111
+ #
1112
+ # {
1113
+ # resource_arn: "ChimeArn", # required
1114
+ # }
1115
+ #
1116
+ # @!attribute [rw] resource_arn
1117
+ # The ARN of the resource.
1118
+ # @return [String]
1119
+ #
1120
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/ListTagsForResourceRequest AWS API Documentation
1121
+ #
1122
+ class ListTagsForResourceRequest < Struct.new(
1123
+ :resource_arn)
1124
+ SENSITIVE = []
1125
+ include Aws::Structure
1126
+ end
1127
+
1128
+ # @!attribute [rw] tags
1129
+ # The tag key-value pairs.
1130
+ # @return [Array<Types::Tag>]
1131
+ #
1132
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/ListTagsForResourceResponse AWS API Documentation
1133
+ #
1134
+ class ListTagsForResourceResponse < Struct.new(
1135
+ :tags)
1136
+ SENSITIVE = []
1137
+ include Aws::Structure
1138
+ end
1139
+
808
1140
  # @note When making an API call, you may pass PutAppInstanceRetentionSettingsRequest
809
1141
  # data as a hash:
810
1142
  #
@@ -851,6 +1183,95 @@ module Aws::ChimeSDKIdentity
851
1183
  include Aws::Structure
852
1184
  end
853
1185
 
1186
+ # @note When making an API call, you may pass RegisterAppInstanceUserEndpointRequest
1187
+ # data as a hash:
1188
+ #
1189
+ # {
1190
+ # app_instance_user_arn: "SensitiveChimeArn", # required
1191
+ # name: "SensitiveString1600",
1192
+ # type: "APNS", # required, accepts APNS, APNS_SANDBOX, GCM
1193
+ # resource_arn: "SensitiveChimeArn", # required
1194
+ # endpoint_attributes: { # required
1195
+ # device_token: "NonEmptySensitiveString1600", # required
1196
+ # voip_device_token: "NonEmptySensitiveString1600",
1197
+ # },
1198
+ # client_request_token: "ClientRequestToken", # required
1199
+ # allow_messages: "ALL", # accepts ALL, NONE
1200
+ # }
1201
+ #
1202
+ # @!attribute [rw] app_instance_user_arn
1203
+ # The ARN of the `AppInstanceUser`.
1204
+ # @return [String]
1205
+ #
1206
+ # @!attribute [rw] name
1207
+ # The name of the `AppInstanceUserEndpoint`.
1208
+ # @return [String]
1209
+ #
1210
+ # @!attribute [rw] type
1211
+ # The type of the `AppInstanceUserEndpoint`. Supported types:
1212
+ #
1213
+ # * `APNS`\: The mobile notification service for an Apple device.
1214
+ #
1215
+ # * `APNS_SANDBOX`\: The sandbox environment of the mobile
1216
+ # notification service for an Apple device.
1217
+ #
1218
+ # * `GCM`\: The mobile notification service for an Android device.
1219
+ #
1220
+ # Populate the `ResourceArn` value of each type as `PinpointAppArn`.
1221
+ # @return [String]
1222
+ #
1223
+ # @!attribute [rw] resource_arn
1224
+ # The ARN of the resource to which the endpoint belongs.
1225
+ # @return [String]
1226
+ #
1227
+ # @!attribute [rw] endpoint_attributes
1228
+ # The attributes of an `Endpoint`.
1229
+ # @return [Types::EndpointAttributes]
1230
+ #
1231
+ # @!attribute [rw] client_request_token
1232
+ # The idempotency token for each client request.
1233
+ #
1234
+ # **A suitable default value is auto-generated.** You should normally
1235
+ # not need to pass this option.
1236
+ # @return [String]
1237
+ #
1238
+ # @!attribute [rw] allow_messages
1239
+ # Boolean that controls whether the AppInstanceUserEndpoint is opted
1240
+ # in to receive messages. `ALL` indicates the endpoint receives all
1241
+ # messages. `NONE` indicates the endpoint receives no messages.
1242
+ # @return [String]
1243
+ #
1244
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/RegisterAppInstanceUserEndpointRequest AWS API Documentation
1245
+ #
1246
+ class RegisterAppInstanceUserEndpointRequest < Struct.new(
1247
+ :app_instance_user_arn,
1248
+ :name,
1249
+ :type,
1250
+ :resource_arn,
1251
+ :endpoint_attributes,
1252
+ :client_request_token,
1253
+ :allow_messages)
1254
+ SENSITIVE = [:app_instance_user_arn, :name, :resource_arn, :client_request_token]
1255
+ include Aws::Structure
1256
+ end
1257
+
1258
+ # @!attribute [rw] app_instance_user_arn
1259
+ # The ARN of the `AppInstanceUser`.
1260
+ # @return [String]
1261
+ #
1262
+ # @!attribute [rw] endpoint_id
1263
+ # The unique identifier of the `AppInstanceUserEndpoint`.
1264
+ # @return [String]
1265
+ #
1266
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/RegisterAppInstanceUserEndpointResponse AWS API Documentation
1267
+ #
1268
+ class RegisterAppInstanceUserEndpointResponse < Struct.new(
1269
+ :app_instance_user_arn,
1270
+ :endpoint_id)
1271
+ SENSITIVE = [:app_instance_user_arn, :endpoint_id]
1272
+ include Aws::Structure
1273
+ end
1274
+
854
1275
  # The request exceeds the resource limit.
855
1276
  #
856
1277
  # @!attribute [rw] code
@@ -902,7 +1323,7 @@ module Aws::ChimeSDKIdentity
902
1323
  include Aws::Structure
903
1324
  end
904
1325
 
905
- # Describes a tag applied to a resource.
1326
+ # A tag object containing a key-value pair.
906
1327
  #
907
1328
  # @note When making an API call, you may pass Tag
908
1329
  # data as a hash:
@@ -913,11 +1334,11 @@ module Aws::ChimeSDKIdentity
913
1334
  # }
914
1335
  #
915
1336
  # @!attribute [rw] key
916
- # The key of the tag.
1337
+ # The key in a tag.
917
1338
  # @return [String]
918
1339
  #
919
1340
  # @!attribute [rw] value
920
- # The value of the tag.
1341
+ # The value in a tag.
921
1342
  # @return [String]
922
1343
  #
923
1344
  # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/Tag AWS API Documentation
@@ -929,6 +1350,36 @@ module Aws::ChimeSDKIdentity
929
1350
  include Aws::Structure
930
1351
  end
931
1352
 
1353
+ # @note When making an API call, you may pass TagResourceRequest
1354
+ # data as a hash:
1355
+ #
1356
+ # {
1357
+ # resource_arn: "ChimeArn", # required
1358
+ # tags: [ # required
1359
+ # {
1360
+ # key: "TagKey", # required
1361
+ # value: "TagValue", # required
1362
+ # },
1363
+ # ],
1364
+ # }
1365
+ #
1366
+ # @!attribute [rw] resource_arn
1367
+ # The resource ARN.
1368
+ # @return [String]
1369
+ #
1370
+ # @!attribute [rw] tags
1371
+ # The tag key-value pairs.
1372
+ # @return [Array<Types::Tag>]
1373
+ #
1374
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/TagResourceRequest AWS API Documentation
1375
+ #
1376
+ class TagResourceRequest < Struct.new(
1377
+ :resource_arn,
1378
+ :tags)
1379
+ SENSITIVE = []
1380
+ include Aws::Structure
1381
+ end
1382
+
932
1383
  # The client exceeded its request rate limit.
933
1384
  #
934
1385
  # @!attribute [rw] code
@@ -963,6 +1414,31 @@ module Aws::ChimeSDKIdentity
963
1414
  include Aws::Structure
964
1415
  end
965
1416
 
1417
+ # @note When making an API call, you may pass UntagResourceRequest
1418
+ # data as a hash:
1419
+ #
1420
+ # {
1421
+ # resource_arn: "ChimeArn", # required
1422
+ # tag_keys: ["TagKey"], # required
1423
+ # }
1424
+ #
1425
+ # @!attribute [rw] resource_arn
1426
+ # The resource ARN.
1427
+ # @return [String]
1428
+ #
1429
+ # @!attribute [rw] tag_keys
1430
+ # The tag keys.
1431
+ # @return [Array<String>]
1432
+ #
1433
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/UntagResourceRequest AWS API Documentation
1434
+ #
1435
+ class UntagResourceRequest < Struct.new(
1436
+ :resource_arn,
1437
+ :tag_keys)
1438
+ SENSITIVE = []
1439
+ include Aws::Structure
1440
+ end
1441
+
966
1442
  # @note When making an API call, you may pass UpdateAppInstanceRequest
967
1443
  # data as a hash:
968
1444
  #
@@ -1006,6 +1482,63 @@ module Aws::ChimeSDKIdentity
1006
1482
  include Aws::Structure
1007
1483
  end
1008
1484
 
1485
+ # @note When making an API call, you may pass UpdateAppInstanceUserEndpointRequest
1486
+ # data as a hash:
1487
+ #
1488
+ # {
1489
+ # app_instance_user_arn: "SensitiveChimeArn", # required
1490
+ # endpoint_id: "SensitiveString64", # required
1491
+ # name: "SensitiveString1600",
1492
+ # allow_messages: "ALL", # accepts ALL, NONE
1493
+ # }
1494
+ #
1495
+ # @!attribute [rw] app_instance_user_arn
1496
+ # The ARN of the `AppInstanceUser`.
1497
+ # @return [String]
1498
+ #
1499
+ # @!attribute [rw] endpoint_id
1500
+ # The unique identifier of the `AppInstanceUserEndpoint`.
1501
+ # @return [String]
1502
+ #
1503
+ # @!attribute [rw] name
1504
+ # The name of the `AppInstanceUserEndpoint`.
1505
+ # @return [String]
1506
+ #
1507
+ # @!attribute [rw] allow_messages
1508
+ # Boolean that controls whether the `AppInstanceUserEndpoint` is opted
1509
+ # in to receive messages. `ALL` indicates the endpoint will receive
1510
+ # all messages. `NONE` indicates the endpoint will receive no
1511
+ # messages.
1512
+ # @return [String]
1513
+ #
1514
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/UpdateAppInstanceUserEndpointRequest AWS API Documentation
1515
+ #
1516
+ class UpdateAppInstanceUserEndpointRequest < Struct.new(
1517
+ :app_instance_user_arn,
1518
+ :endpoint_id,
1519
+ :name,
1520
+ :allow_messages)
1521
+ SENSITIVE = [:app_instance_user_arn, :endpoint_id, :name]
1522
+ include Aws::Structure
1523
+ end
1524
+
1525
+ # @!attribute [rw] app_instance_user_arn
1526
+ # The ARN of the `AppInstanceUser`.
1527
+ # @return [String]
1528
+ #
1529
+ # @!attribute [rw] endpoint_id
1530
+ # The unique identifier of the `AppInstanceUserEndpoint`.
1531
+ # @return [String]
1532
+ #
1533
+ # @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/UpdateAppInstanceUserEndpointResponse AWS API Documentation
1534
+ #
1535
+ class UpdateAppInstanceUserEndpointResponse < Struct.new(
1536
+ :app_instance_user_arn,
1537
+ :endpoint_id)
1538
+ SENSITIVE = [:app_instance_user_arn, :endpoint_id]
1539
+ include Aws::Structure
1540
+ end
1541
+
1009
1542
  # @note When making an API call, you may pass UpdateAppInstanceUserRequest
1010
1543
  # data as a hash:
1011
1544
  #
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-chimesdkidentity/customizations'
48
48
  # @!group service
49
49
  module Aws::ChimeSDKIdentity
50
50
 
51
- GEM_VERSION = '1.0.0'
51
+ GEM_VERSION = '1.4.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-chimesdkidentity
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.4.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-08-06 00:00:00.000000000 Z
11
+ date: 2021-10-26 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.119.0
22
+ version: 3.121.2
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.119.0
32
+ version: 3.121.2
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
76
76
  requirements:
77
77
  - - ">="
78
78
  - !ruby/object:Gem::Version
79
- version: '0'
79
+ version: '2.3'
80
80
  required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - ">="