aws-sdk-chimesdkidentity 1.11.0 → 1.13.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/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkidentity/client.rb +288 -15
- data/lib/aws-sdk-chimesdkidentity/client_api.rb +204 -2
- data/lib/aws-sdk-chimesdkidentity/endpoint_provider.rb +27 -24
- data/lib/aws-sdk-chimesdkidentity/endpoints.rb +84 -0
- data/lib/aws-sdk-chimesdkidentity/errors.rb +21 -0
- data/lib/aws-sdk-chimesdkidentity/plugins/endpoints.rb +12 -0
- data/lib/aws-sdk-chimesdkidentity/types.rb +400 -22
- data/lib/aws-sdk-chimesdkidentity.rb +1 -1
- metadata +4 -4
@@ -60,12 +60,16 @@ module Aws::ChimeSDKIdentity
|
|
60
60
|
Aws::ChimeSDKIdentity::Endpoints::CreateAppInstance.build(context)
|
61
61
|
when :create_app_instance_admin
|
62
62
|
Aws::ChimeSDKIdentity::Endpoints::CreateAppInstanceAdmin.build(context)
|
63
|
+
when :create_app_instance_bot
|
64
|
+
Aws::ChimeSDKIdentity::Endpoints::CreateAppInstanceBot.build(context)
|
63
65
|
when :create_app_instance_user
|
64
66
|
Aws::ChimeSDKIdentity::Endpoints::CreateAppInstanceUser.build(context)
|
65
67
|
when :delete_app_instance
|
66
68
|
Aws::ChimeSDKIdentity::Endpoints::DeleteAppInstance.build(context)
|
67
69
|
when :delete_app_instance_admin
|
68
70
|
Aws::ChimeSDKIdentity::Endpoints::DeleteAppInstanceAdmin.build(context)
|
71
|
+
when :delete_app_instance_bot
|
72
|
+
Aws::ChimeSDKIdentity::Endpoints::DeleteAppInstanceBot.build(context)
|
69
73
|
when :delete_app_instance_user
|
70
74
|
Aws::ChimeSDKIdentity::Endpoints::DeleteAppInstanceUser.build(context)
|
71
75
|
when :deregister_app_instance_user_endpoint
|
@@ -74,6 +78,8 @@ module Aws::ChimeSDKIdentity
|
|
74
78
|
Aws::ChimeSDKIdentity::Endpoints::DescribeAppInstance.build(context)
|
75
79
|
when :describe_app_instance_admin
|
76
80
|
Aws::ChimeSDKIdentity::Endpoints::DescribeAppInstanceAdmin.build(context)
|
81
|
+
when :describe_app_instance_bot
|
82
|
+
Aws::ChimeSDKIdentity::Endpoints::DescribeAppInstanceBot.build(context)
|
77
83
|
when :describe_app_instance_user
|
78
84
|
Aws::ChimeSDKIdentity::Endpoints::DescribeAppInstanceUser.build(context)
|
79
85
|
when :describe_app_instance_user_endpoint
|
@@ -82,6 +88,8 @@ module Aws::ChimeSDKIdentity
|
|
82
88
|
Aws::ChimeSDKIdentity::Endpoints::GetAppInstanceRetentionSettings.build(context)
|
83
89
|
when :list_app_instance_admins
|
84
90
|
Aws::ChimeSDKIdentity::Endpoints::ListAppInstanceAdmins.build(context)
|
91
|
+
when :list_app_instance_bots
|
92
|
+
Aws::ChimeSDKIdentity::Endpoints::ListAppInstanceBots.build(context)
|
85
93
|
when :list_app_instance_user_endpoints
|
86
94
|
Aws::ChimeSDKIdentity::Endpoints::ListAppInstanceUserEndpoints.build(context)
|
87
95
|
when :list_app_instance_users
|
@@ -92,6 +100,8 @@ module Aws::ChimeSDKIdentity
|
|
92
100
|
Aws::ChimeSDKIdentity::Endpoints::ListTagsForResource.build(context)
|
93
101
|
when :put_app_instance_retention_settings
|
94
102
|
Aws::ChimeSDKIdentity::Endpoints::PutAppInstanceRetentionSettings.build(context)
|
103
|
+
when :put_app_instance_user_expiration_settings
|
104
|
+
Aws::ChimeSDKIdentity::Endpoints::PutAppInstanceUserExpirationSettings.build(context)
|
95
105
|
when :register_app_instance_user_endpoint
|
96
106
|
Aws::ChimeSDKIdentity::Endpoints::RegisterAppInstanceUserEndpoint.build(context)
|
97
107
|
when :tag_resource
|
@@ -100,6 +110,8 @@ module Aws::ChimeSDKIdentity
|
|
100
110
|
Aws::ChimeSDKIdentity::Endpoints::UntagResource.build(context)
|
101
111
|
when :update_app_instance
|
102
112
|
Aws::ChimeSDKIdentity::Endpoints::UpdateAppInstance.build(context)
|
113
|
+
when :update_app_instance_bot
|
114
|
+
Aws::ChimeSDKIdentity::Endpoints::UpdateAppInstanceBot.build(context)
|
103
115
|
when :update_app_instance_user
|
104
116
|
Aws::ChimeSDKIdentity::Endpoints::UpdateAppInstanceUser.build(context)
|
105
117
|
when :update_app_instance_user_endpoint
|
@@ -46,7 +46,7 @@ module Aws::ChimeSDKIdentity
|
|
46
46
|
include Aws::Structure
|
47
47
|
end
|
48
48
|
|
49
|
-
# The
|
49
|
+
# The name and ARN of the admin for the `AppInstance`.
|
50
50
|
#
|
51
51
|
# @!attribute [rw] admin
|
52
52
|
# The `AppInstanceAdmin` data.
|
@@ -84,6 +84,69 @@ module Aws::ChimeSDKIdentity
|
|
84
84
|
include Aws::Structure
|
85
85
|
end
|
86
86
|
|
87
|
+
# An Amazon Lex V2 chat bot created under an `AppInstance`.
|
88
|
+
#
|
89
|
+
# @!attribute [rw] app_instance_bot_arn
|
90
|
+
# The ARN of the AppInstanceBot.
|
91
|
+
# @return [String]
|
92
|
+
#
|
93
|
+
# @!attribute [rw] name
|
94
|
+
# The name of the AppInstanceBot.
|
95
|
+
# @return [String]
|
96
|
+
#
|
97
|
+
# @!attribute [rw] configuration
|
98
|
+
# The data processing instructions for an AppInstanceBot.
|
99
|
+
# @return [Types::Configuration]
|
100
|
+
#
|
101
|
+
# @!attribute [rw] created_timestamp
|
102
|
+
# The time at which the `AppInstanceBot` was created.
|
103
|
+
# @return [Time]
|
104
|
+
#
|
105
|
+
# @!attribute [rw] last_updated_timestamp
|
106
|
+
# The time at which the `AppInstanceBot` was last updated.
|
107
|
+
# @return [Time]
|
108
|
+
#
|
109
|
+
# @!attribute [rw] metadata
|
110
|
+
# The metadata for an AppInstanceBot.
|
111
|
+
# @return [String]
|
112
|
+
#
|
113
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/AppInstanceBot AWS API Documentation
|
114
|
+
#
|
115
|
+
class AppInstanceBot < Struct.new(
|
116
|
+
:app_instance_bot_arn,
|
117
|
+
:name,
|
118
|
+
:configuration,
|
119
|
+
:created_timestamp,
|
120
|
+
:last_updated_timestamp,
|
121
|
+
:metadata)
|
122
|
+
SENSITIVE = [:name, :metadata]
|
123
|
+
include Aws::Structure
|
124
|
+
end
|
125
|
+
|
126
|
+
# High-level information about an AppInstanceBot.
|
127
|
+
#
|
128
|
+
# @!attribute [rw] app_instance_bot_arn
|
129
|
+
# The ARN of the AppInstanceBot.
|
130
|
+
# @return [String]
|
131
|
+
#
|
132
|
+
# @!attribute [rw] name
|
133
|
+
# The name of the AppInstanceBox.
|
134
|
+
# @return [String]
|
135
|
+
#
|
136
|
+
# @!attribute [rw] metadata
|
137
|
+
# The metadata of the AppInstanceBot.
|
138
|
+
# @return [String]
|
139
|
+
#
|
140
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/AppInstanceBotSummary AWS API Documentation
|
141
|
+
#
|
142
|
+
class AppInstanceBotSummary < Struct.new(
|
143
|
+
:app_instance_bot_arn,
|
144
|
+
:name,
|
145
|
+
:metadata)
|
146
|
+
SENSITIVE = [:name, :metadata]
|
147
|
+
include Aws::Structure
|
148
|
+
end
|
149
|
+
|
87
150
|
# The details of the data-retention settings for an `AppInstance`.
|
88
151
|
#
|
89
152
|
# @!attribute [rw] channel_retention_settings
|
@@ -144,6 +207,11 @@ module Aws::ChimeSDKIdentity
|
|
144
207
|
# The time at which the `AppInstanceUser` was last updated.
|
145
208
|
# @return [Time]
|
146
209
|
#
|
210
|
+
# @!attribute [rw] expiration_settings
|
211
|
+
# The interval after which an `AppInstanceUser` is automatically
|
212
|
+
# deleted.
|
213
|
+
# @return [Types::ExpirationSettings]
|
214
|
+
#
|
147
215
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/AppInstanceUser AWS API Documentation
|
148
216
|
#
|
149
217
|
class AppInstanceUser < Struct.new(
|
@@ -151,7 +219,8 @@ module Aws::ChimeSDKIdentity
|
|
151
219
|
:name,
|
152
220
|
:metadata,
|
153
221
|
:created_timestamp,
|
154
|
-
:last_updated_timestamp
|
222
|
+
:last_updated_timestamp,
|
223
|
+
:expiration_settings)
|
155
224
|
SENSITIVE = [:name, :metadata]
|
156
225
|
include Aws::Structure
|
157
226
|
end
|
@@ -203,11 +272,11 @@ module Aws::ChimeSDKIdentity
|
|
203
272
|
# A read-only field that represents the state of an
|
204
273
|
# `AppInstanceUserEndpoint`. Supported values:
|
205
274
|
#
|
206
|
-
# * `ACTIVE
|
275
|
+
# * `ACTIVE`: The `AppInstanceUserEndpoint` is active and able to
|
207
276
|
# receive messages. When `ACTIVE`, the `EndpointStatusReason`
|
208
277
|
# remains empty.
|
209
278
|
#
|
210
|
-
# * `INACTIVE
|
279
|
+
# * `INACTIVE`: The `AppInstanceUserEndpoint` is inactive and can't
|
211
280
|
# receive message. When `INACTIVE`, the corresponding reason will be
|
212
281
|
# conveyed through `EndpointStatusReason`.
|
213
282
|
#
|
@@ -232,7 +301,7 @@ module Aws::ChimeSDKIdentity
|
|
232
301
|
:last_updated_timestamp,
|
233
302
|
:allow_messages,
|
234
303
|
:endpoint_state)
|
235
|
-
SENSITIVE = [:app_instance_user_arn, :endpoint_id, :name
|
304
|
+
SENSITIVE = [:app_instance_user_arn, :endpoint_id, :name]
|
236
305
|
include Aws::Structure
|
237
306
|
end
|
238
307
|
|
@@ -334,6 +403,20 @@ module Aws::ChimeSDKIdentity
|
|
334
403
|
include Aws::Structure
|
335
404
|
end
|
336
405
|
|
406
|
+
# A structure that contains configuration data.
|
407
|
+
#
|
408
|
+
# @!attribute [rw] lex
|
409
|
+
# The configuration for an Amazon Lex V2 bot.
|
410
|
+
# @return [Types::LexConfiguration]
|
411
|
+
#
|
412
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/Configuration AWS API Documentation
|
413
|
+
#
|
414
|
+
class Configuration < Struct.new(
|
415
|
+
:lex)
|
416
|
+
SENSITIVE = []
|
417
|
+
include Aws::Structure
|
418
|
+
end
|
419
|
+
|
337
420
|
# The request could not be processed because of conflict in the current
|
338
421
|
# state of the resource.
|
339
422
|
#
|
@@ -370,7 +453,9 @@ module Aws::ChimeSDKIdentity
|
|
370
453
|
end
|
371
454
|
|
372
455
|
# @!attribute [rw] app_instance_admin
|
373
|
-
# The
|
456
|
+
# The ARN and name of the administrator, the ARN of the `AppInstance`,
|
457
|
+
# and the created and last-updated timestamps. All timestamps use
|
458
|
+
# epoch milliseconds.
|
374
459
|
# @return [Types::Identity]
|
375
460
|
#
|
376
461
|
# @!attribute [rw] app_instance_arn
|
@@ -386,6 +471,59 @@ module Aws::ChimeSDKIdentity
|
|
386
471
|
include Aws::Structure
|
387
472
|
end
|
388
473
|
|
474
|
+
# @!attribute [rw] app_instance_arn
|
475
|
+
# The ARN of the `AppInstance` request.
|
476
|
+
# @return [String]
|
477
|
+
#
|
478
|
+
# @!attribute [rw] name
|
479
|
+
# The user's name.
|
480
|
+
# @return [String]
|
481
|
+
#
|
482
|
+
# @!attribute [rw] metadata
|
483
|
+
# The request metadata. Limited to a 1KB string in UTF-8.
|
484
|
+
# @return [String]
|
485
|
+
#
|
486
|
+
# @!attribute [rw] client_request_token
|
487
|
+
# The unique ID for the client making the request. Use different
|
488
|
+
# tokens for different `AppInstanceBots`.
|
489
|
+
#
|
490
|
+
# **A suitable default value is auto-generated.** You should normally
|
491
|
+
# not need to pass this option.
|
492
|
+
# @return [String]
|
493
|
+
#
|
494
|
+
# @!attribute [rw] tags
|
495
|
+
# The tags assigned to the `AppInstanceBot`.
|
496
|
+
# @return [Array<Types::Tag>]
|
497
|
+
#
|
498
|
+
# @!attribute [rw] configuration
|
499
|
+
# Configuration information about the Amazon Lex V2 V2 bot.
|
500
|
+
# @return [Types::Configuration]
|
501
|
+
#
|
502
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/CreateAppInstanceBotRequest AWS API Documentation
|
503
|
+
#
|
504
|
+
class CreateAppInstanceBotRequest < Struct.new(
|
505
|
+
:app_instance_arn,
|
506
|
+
:name,
|
507
|
+
:metadata,
|
508
|
+
:client_request_token,
|
509
|
+
:tags,
|
510
|
+
:configuration)
|
511
|
+
SENSITIVE = [:name, :metadata]
|
512
|
+
include Aws::Structure
|
513
|
+
end
|
514
|
+
|
515
|
+
# @!attribute [rw] app_instance_bot_arn
|
516
|
+
# The ARN of the `AppinstanceBot`.
|
517
|
+
# @return [String]
|
518
|
+
#
|
519
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/CreateAppInstanceBotResponse AWS API Documentation
|
520
|
+
#
|
521
|
+
class CreateAppInstanceBotResponse < Struct.new(
|
522
|
+
:app_instance_bot_arn)
|
523
|
+
SENSITIVE = []
|
524
|
+
include Aws::Structure
|
525
|
+
end
|
526
|
+
|
389
527
|
# @!attribute [rw] name
|
390
528
|
# The name of the `AppInstance`.
|
391
529
|
# @return [String]
|
@@ -395,14 +533,15 @@ module Aws::ChimeSDKIdentity
|
|
395
533
|
# @return [String]
|
396
534
|
#
|
397
535
|
# @!attribute [rw] client_request_token
|
398
|
-
# The
|
536
|
+
# The unique ID of the request. Use different tokens to create
|
537
|
+
# different `AppInstances`.
|
399
538
|
#
|
400
539
|
# **A suitable default value is auto-generated.** You should normally
|
401
540
|
# not need to pass this option.
|
402
541
|
# @return [String]
|
403
542
|
#
|
404
543
|
# @!attribute [rw] tags
|
405
|
-
# Tags assigned to the `
|
544
|
+
# Tags assigned to the `AppInstance`.
|
406
545
|
# @return [Array<Types::Tag>]
|
407
546
|
#
|
408
547
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/CreateAppInstanceRequest AWS API Documentation
|
@@ -412,7 +551,7 @@ module Aws::ChimeSDKIdentity
|
|
412
551
|
:metadata,
|
413
552
|
:client_request_token,
|
414
553
|
:tags)
|
415
|
-
SENSITIVE = [:name, :metadata
|
554
|
+
SENSITIVE = [:name, :metadata]
|
416
555
|
include Aws::Structure
|
417
556
|
end
|
418
557
|
|
@@ -445,7 +584,8 @@ module Aws::ChimeSDKIdentity
|
|
445
584
|
# @return [String]
|
446
585
|
#
|
447
586
|
# @!attribute [rw] client_request_token
|
448
|
-
# The
|
587
|
+
# The unique ID of the request. Use different tokens to request
|
588
|
+
# additional `AppInstances`.
|
449
589
|
#
|
450
590
|
# **A suitable default value is auto-generated.** You should normally
|
451
591
|
# not need to pass this option.
|
@@ -455,6 +595,11 @@ module Aws::ChimeSDKIdentity
|
|
455
595
|
# Tags assigned to the `AppInstanceUser`.
|
456
596
|
# @return [Array<Types::Tag>]
|
457
597
|
#
|
598
|
+
# @!attribute [rw] expiration_settings
|
599
|
+
# Settings that control the interval after which the `AppInstanceUser`
|
600
|
+
# is automatically deleted.
|
601
|
+
# @return [Types::ExpirationSettings]
|
602
|
+
#
|
458
603
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/CreateAppInstanceUserRequest AWS API Documentation
|
459
604
|
#
|
460
605
|
class CreateAppInstanceUserRequest < Struct.new(
|
@@ -463,8 +608,9 @@ module Aws::ChimeSDKIdentity
|
|
463
608
|
:name,
|
464
609
|
:metadata,
|
465
610
|
:client_request_token,
|
466
|
-
:tags
|
467
|
-
|
611
|
+
:tags,
|
612
|
+
:expiration_settings)
|
613
|
+
SENSITIVE = [:app_instance_user_id, :name, :metadata]
|
468
614
|
include Aws::Structure
|
469
615
|
end
|
470
616
|
|
@@ -497,6 +643,18 @@ module Aws::ChimeSDKIdentity
|
|
497
643
|
include Aws::Structure
|
498
644
|
end
|
499
645
|
|
646
|
+
# @!attribute [rw] app_instance_bot_arn
|
647
|
+
# The ARN of the `AppInstanceBot` being deleted.
|
648
|
+
# @return [String]
|
649
|
+
#
|
650
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/DeleteAppInstanceBotRequest AWS API Documentation
|
651
|
+
#
|
652
|
+
class DeleteAppInstanceBotRequest < Struct.new(
|
653
|
+
:app_instance_bot_arn)
|
654
|
+
SENSITIVE = []
|
655
|
+
include Aws::Structure
|
656
|
+
end
|
657
|
+
|
500
658
|
# @!attribute [rw] app_instance_arn
|
501
659
|
# The ARN of the `AppInstance`.
|
502
660
|
# @return [String]
|
@@ -569,6 +727,30 @@ module Aws::ChimeSDKIdentity
|
|
569
727
|
include Aws::Structure
|
570
728
|
end
|
571
729
|
|
730
|
+
# @!attribute [rw] app_instance_bot_arn
|
731
|
+
# The ARN of the `AppInstanceBot`.
|
732
|
+
# @return [String]
|
733
|
+
#
|
734
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/DescribeAppInstanceBotRequest AWS API Documentation
|
735
|
+
#
|
736
|
+
class DescribeAppInstanceBotRequest < Struct.new(
|
737
|
+
:app_instance_bot_arn)
|
738
|
+
SENSITIVE = []
|
739
|
+
include Aws::Structure
|
740
|
+
end
|
741
|
+
|
742
|
+
# @!attribute [rw] app_instance_bot
|
743
|
+
# The detials of the `AppInstanceBot`.
|
744
|
+
# @return [Types::AppInstanceBot]
|
745
|
+
#
|
746
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/DescribeAppInstanceBotResponse AWS API Documentation
|
747
|
+
#
|
748
|
+
class DescribeAppInstanceBotResponse < Struct.new(
|
749
|
+
:app_instance_bot)
|
750
|
+
SENSITIVE = []
|
751
|
+
include Aws::Structure
|
752
|
+
end
|
753
|
+
|
572
754
|
# @!attribute [rw] app_instance_arn
|
573
755
|
# The ARN of the `AppInstance`.
|
574
756
|
# @return [String]
|
@@ -612,7 +794,7 @@ module Aws::ChimeSDKIdentity
|
|
612
794
|
end
|
613
795
|
|
614
796
|
# @!attribute [rw] app_instance_user_endpoint
|
615
|
-
# The full details of an `AppInstanceUserEndpoint
|
797
|
+
# The full details of an `AppInstanceUserEndpoint`: the
|
616
798
|
# `AppInstanceUserArn`, ID, name, type, resource ARN, attributes,
|
617
799
|
# allow messages, state, and created and last updated timestamps. All
|
618
800
|
# timestamps use epoch milliseconds.
|
@@ -673,11 +855,11 @@ module Aws::ChimeSDKIdentity
|
|
673
855
|
# A read-only field that represents the state of an
|
674
856
|
# `AppInstanceUserEndpoint`. Supported values:
|
675
857
|
#
|
676
|
-
# * `ACTIVE
|
858
|
+
# * `ACTIVE`: The `AppInstanceUserEndpoint` is active and able to
|
677
859
|
# receive messages. When `ACTIVE`, the `EndpointStatusReason` remains
|
678
860
|
# empty.
|
679
861
|
#
|
680
|
-
# * `INACTIVE
|
862
|
+
# * `INACTIVE`: The `AppInstanceUserEndpoint` is inactive and can't
|
681
863
|
# receive message. When INACTIVE, the corresponding reason will be
|
682
864
|
# conveyed through EndpointStatusReason.
|
683
865
|
#
|
@@ -705,6 +887,28 @@ module Aws::ChimeSDKIdentity
|
|
705
887
|
include Aws::Structure
|
706
888
|
end
|
707
889
|
|
890
|
+
# Determines the interval after which an `AppInstanceUser` is
|
891
|
+
# automatically deleted.
|
892
|
+
#
|
893
|
+
# @!attribute [rw] expiration_days
|
894
|
+
# The period in days after which an `AppInstanceUser` will be
|
895
|
+
# automatically deleted.
|
896
|
+
# @return [Integer]
|
897
|
+
#
|
898
|
+
# @!attribute [rw] expiration_criterion
|
899
|
+
# Specifies the conditions under which an `AppInstanceUser` will
|
900
|
+
# expire.
|
901
|
+
# @return [String]
|
902
|
+
#
|
903
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/ExpirationSettings AWS API Documentation
|
904
|
+
#
|
905
|
+
class ExpirationSettings < Struct.new(
|
906
|
+
:expiration_days,
|
907
|
+
:expiration_criterion)
|
908
|
+
SENSITIVE = []
|
909
|
+
include Aws::Structure
|
910
|
+
end
|
911
|
+
|
708
912
|
# The client is permanently forbidden from making the request.
|
709
913
|
#
|
710
914
|
# @!attribute [rw] code
|
@@ -752,7 +956,7 @@ module Aws::ChimeSDKIdentity
|
|
752
956
|
include Aws::Structure
|
753
957
|
end
|
754
958
|
|
755
|
-
# The details of a user.
|
959
|
+
# The details of a user or bot.
|
756
960
|
#
|
757
961
|
# @!attribute [rw] arn
|
758
962
|
# The ARN in an Identity.
|
@@ -771,6 +975,45 @@ module Aws::ChimeSDKIdentity
|
|
771
975
|
include Aws::Structure
|
772
976
|
end
|
773
977
|
|
978
|
+
# The configuration for an Amazon Lex V2 bot.
|
979
|
+
#
|
980
|
+
# @!attribute [rw] responds_to
|
981
|
+
# Determines whether the Amazon Lex V2 bot responds to all standard
|
982
|
+
# messages. Control messages are not supported.
|
983
|
+
# @return [String]
|
984
|
+
#
|
985
|
+
# @!attribute [rw] lex_bot_alias_arn
|
986
|
+
# The ARN of the Amazon Lex V2 bot's alias. The ARN uses this format:
|
987
|
+
# `arn:aws:lex:REGION:ACCOUNT:bot-alias/MYBOTID/MYBOTALIAS`
|
988
|
+
# @return [String]
|
989
|
+
#
|
990
|
+
# @!attribute [rw] locale_id
|
991
|
+
# Identifies the Amazon Lex V2 bot's language and locale. The string
|
992
|
+
# must match one of the supported locales in Amazon Lex V2. All of the
|
993
|
+
# intents, slot types, and slots used in the bot must have the same
|
994
|
+
# locale. For more information, see [Supported languages][1] in the
|
995
|
+
# *Amazon Lex V2 Developer Guide*.
|
996
|
+
#
|
997
|
+
#
|
998
|
+
#
|
999
|
+
# [1]: https://docs.aws.amazon.com/lexv2/latest/dg/how-languages.html
|
1000
|
+
# @return [String]
|
1001
|
+
#
|
1002
|
+
# @!attribute [rw] welcome_intent
|
1003
|
+
# The name of the welcome intent configured in the Amazon Lex V2 bot.
|
1004
|
+
# @return [String]
|
1005
|
+
#
|
1006
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/LexConfiguration AWS API Documentation
|
1007
|
+
#
|
1008
|
+
class LexConfiguration < Struct.new(
|
1009
|
+
:responds_to,
|
1010
|
+
:lex_bot_alias_arn,
|
1011
|
+
:locale_id,
|
1012
|
+
:welcome_intent)
|
1013
|
+
SENSITIVE = []
|
1014
|
+
include Aws::Structure
|
1015
|
+
end
|
1016
|
+
|
774
1017
|
# @!attribute [rw] app_instance_arn
|
775
1018
|
# The ARN of the `AppInstance`.
|
776
1019
|
# @return [String]
|
@@ -817,6 +1060,52 @@ module Aws::ChimeSDKIdentity
|
|
817
1060
|
include Aws::Structure
|
818
1061
|
end
|
819
1062
|
|
1063
|
+
# @!attribute [rw] app_instance_arn
|
1064
|
+
# The ARN of the `AppInstance`.
|
1065
|
+
# @return [String]
|
1066
|
+
#
|
1067
|
+
# @!attribute [rw] max_results
|
1068
|
+
# The maximum number of requests to return.
|
1069
|
+
# @return [Integer]
|
1070
|
+
#
|
1071
|
+
# @!attribute [rw] next_token
|
1072
|
+
# The token passed by previous API calls until all requested bots are
|
1073
|
+
# returned.
|
1074
|
+
# @return [String]
|
1075
|
+
#
|
1076
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/ListAppInstanceBotsRequest AWS API Documentation
|
1077
|
+
#
|
1078
|
+
class ListAppInstanceBotsRequest < Struct.new(
|
1079
|
+
:app_instance_arn,
|
1080
|
+
:max_results,
|
1081
|
+
:next_token)
|
1082
|
+
SENSITIVE = [:next_token]
|
1083
|
+
include Aws::Structure
|
1084
|
+
end
|
1085
|
+
|
1086
|
+
# @!attribute [rw] app_instance_arn
|
1087
|
+
# The ARN of the AppInstance.
|
1088
|
+
# @return [String]
|
1089
|
+
#
|
1090
|
+
# @!attribute [rw] app_instance_bots
|
1091
|
+
# The information for each requested `AppInstanceBot`.
|
1092
|
+
# @return [Array<Types::AppInstanceBotSummary>]
|
1093
|
+
#
|
1094
|
+
# @!attribute [rw] next_token
|
1095
|
+
# The token passed by previous API calls until all requested bots are
|
1096
|
+
# returned.
|
1097
|
+
# @return [String]
|
1098
|
+
#
|
1099
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/ListAppInstanceBotsResponse AWS API Documentation
|
1100
|
+
#
|
1101
|
+
class ListAppInstanceBotsResponse < Struct.new(
|
1102
|
+
:app_instance_arn,
|
1103
|
+
:app_instance_bots,
|
1104
|
+
:next_token)
|
1105
|
+
SENSITIVE = [:next_token]
|
1106
|
+
include Aws::Structure
|
1107
|
+
end
|
1108
|
+
|
820
1109
|
# @!attribute [rw] app_instance_user_arn
|
821
1110
|
# The ARN of the `AppInstanceUser`.
|
822
1111
|
# @return [String]
|
@@ -964,6 +1253,24 @@ module Aws::ChimeSDKIdentity
|
|
964
1253
|
include Aws::Structure
|
965
1254
|
end
|
966
1255
|
|
1256
|
+
# One or more of the resources in the request does not exist in the
|
1257
|
+
# system.
|
1258
|
+
#
|
1259
|
+
# @!attribute [rw] code
|
1260
|
+
# @return [String]
|
1261
|
+
#
|
1262
|
+
# @!attribute [rw] message
|
1263
|
+
# @return [String]
|
1264
|
+
#
|
1265
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/NotFoundException AWS API Documentation
|
1266
|
+
#
|
1267
|
+
class NotFoundException < Struct.new(
|
1268
|
+
:code,
|
1269
|
+
:message)
|
1270
|
+
SENSITIVE = []
|
1271
|
+
include Aws::Structure
|
1272
|
+
end
|
1273
|
+
|
967
1274
|
# @!attribute [rw] app_instance_arn
|
968
1275
|
# The ARN of the `AppInstance`.
|
969
1276
|
# @return [String]
|
@@ -998,6 +1305,42 @@ module Aws::ChimeSDKIdentity
|
|
998
1305
|
include Aws::Structure
|
999
1306
|
end
|
1000
1307
|
|
1308
|
+
# @!attribute [rw] app_instance_user_arn
|
1309
|
+
# The ARN of the `AppInstanceUser`.
|
1310
|
+
# @return [String]
|
1311
|
+
#
|
1312
|
+
# @!attribute [rw] expiration_settings
|
1313
|
+
# Settings that control the interval after which an `AppInstanceUser`
|
1314
|
+
# is automatically deleted.
|
1315
|
+
# @return [Types::ExpirationSettings]
|
1316
|
+
#
|
1317
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/PutAppInstanceUserExpirationSettingsRequest AWS API Documentation
|
1318
|
+
#
|
1319
|
+
class PutAppInstanceUserExpirationSettingsRequest < Struct.new(
|
1320
|
+
:app_instance_user_arn,
|
1321
|
+
:expiration_settings)
|
1322
|
+
SENSITIVE = []
|
1323
|
+
include Aws::Structure
|
1324
|
+
end
|
1325
|
+
|
1326
|
+
# @!attribute [rw] app_instance_user_arn
|
1327
|
+
# The ARN of the `AppInstanceUser`.
|
1328
|
+
# @return [String]
|
1329
|
+
#
|
1330
|
+
# @!attribute [rw] expiration_settings
|
1331
|
+
# Settings that control the interval after which an `AppInstanceUser`
|
1332
|
+
# is automatically deleted.
|
1333
|
+
# @return [Types::ExpirationSettings]
|
1334
|
+
#
|
1335
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/PutAppInstanceUserExpirationSettingsResponse AWS API Documentation
|
1336
|
+
#
|
1337
|
+
class PutAppInstanceUserExpirationSettingsResponse < Struct.new(
|
1338
|
+
:app_instance_user_arn,
|
1339
|
+
:expiration_settings)
|
1340
|
+
SENSITIVE = []
|
1341
|
+
include Aws::Structure
|
1342
|
+
end
|
1343
|
+
|
1001
1344
|
# @!attribute [rw] app_instance_user_arn
|
1002
1345
|
# The ARN of the `AppInstanceUser`.
|
1003
1346
|
# @return [String]
|
@@ -1009,12 +1352,12 @@ module Aws::ChimeSDKIdentity
|
|
1009
1352
|
# @!attribute [rw] type
|
1010
1353
|
# The type of the `AppInstanceUserEndpoint`. Supported types:
|
1011
1354
|
#
|
1012
|
-
# * `APNS
|
1355
|
+
# * `APNS`: The mobile notification service for an Apple device.
|
1013
1356
|
#
|
1014
|
-
# * `APNS_SANDBOX
|
1015
|
-
#
|
1357
|
+
# * `APNS_SANDBOX`: The sandbox environment of the mobile notification
|
1358
|
+
# service for an Apple device.
|
1016
1359
|
#
|
1017
|
-
# * `GCM
|
1360
|
+
# * `GCM`: The mobile notification service for an Android device.
|
1018
1361
|
#
|
1019
1362
|
# Populate the `ResourceArn` value of each type as `PinpointAppArn`.
|
1020
1363
|
# @return [String]
|
@@ -1028,7 +1371,8 @@ module Aws::ChimeSDKIdentity
|
|
1028
1371
|
# @return [Types::EndpointAttributes]
|
1029
1372
|
#
|
1030
1373
|
# @!attribute [rw] client_request_token
|
1031
|
-
# The
|
1374
|
+
# The unique ID assigned to the request. Use different tokens to
|
1375
|
+
# register other endpoints.
|
1032
1376
|
#
|
1033
1377
|
# **A suitable default value is auto-generated.** You should normally
|
1034
1378
|
# not need to pass this option.
|
@@ -1050,7 +1394,7 @@ module Aws::ChimeSDKIdentity
|
|
1050
1394
|
:endpoint_attributes,
|
1051
1395
|
:client_request_token,
|
1052
1396
|
:allow_messages)
|
1053
|
-
SENSITIVE = [:app_instance_user_arn, :name
|
1397
|
+
SENSITIVE = [:app_instance_user_arn, :name]
|
1054
1398
|
include Aws::Structure
|
1055
1399
|
end
|
1056
1400
|
|
@@ -1209,6 +1553,40 @@ module Aws::ChimeSDKIdentity
|
|
1209
1553
|
include Aws::Structure
|
1210
1554
|
end
|
1211
1555
|
|
1556
|
+
# @!attribute [rw] app_instance_bot_arn
|
1557
|
+
# The ARN of the `AppInstanceBot`.
|
1558
|
+
# @return [String]
|
1559
|
+
#
|
1560
|
+
# @!attribute [rw] name
|
1561
|
+
# The name of the `AppInstanceBot`.
|
1562
|
+
# @return [String]
|
1563
|
+
#
|
1564
|
+
# @!attribute [rw] metadata
|
1565
|
+
# The metadata of the `AppInstanceBot`.
|
1566
|
+
# @return [String]
|
1567
|
+
#
|
1568
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/UpdateAppInstanceBotRequest AWS API Documentation
|
1569
|
+
#
|
1570
|
+
class UpdateAppInstanceBotRequest < Struct.new(
|
1571
|
+
:app_instance_bot_arn,
|
1572
|
+
:name,
|
1573
|
+
:metadata)
|
1574
|
+
SENSITIVE = [:name, :metadata]
|
1575
|
+
include Aws::Structure
|
1576
|
+
end
|
1577
|
+
|
1578
|
+
# @!attribute [rw] app_instance_bot_arn
|
1579
|
+
# The ARN of the `AppInstanceBot`.
|
1580
|
+
# @return [String]
|
1581
|
+
#
|
1582
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-identity-2021-04-20/UpdateAppInstanceBotResponse AWS API Documentation
|
1583
|
+
#
|
1584
|
+
class UpdateAppInstanceBotResponse < Struct.new(
|
1585
|
+
:app_instance_bot_arn)
|
1586
|
+
SENSITIVE = []
|
1587
|
+
include Aws::Structure
|
1588
|
+
end
|
1589
|
+
|
1212
1590
|
# @!attribute [rw] app_instance_arn
|
1213
1591
|
# The ARN of the `AppInstance`.
|
1214
1592
|
# @return [String]
|