aws-sdk-connect 1.131.0 → 1.132.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.
@@ -210,6 +210,15 @@ module Aws::Connect
210
210
  # "key2":"value2"\\} \\}.
211
211
  # @return [Hash<String,String>]
212
212
  #
213
+ # @!attribute [rw] last_modified_time
214
+ # The timestamp when this resource was last modified.
215
+ # @return [Time]
216
+ #
217
+ # @!attribute [rw] last_modified_region
218
+ # The Amazon Web Services Region where this resource was last
219
+ # modified.
220
+ # @return [String]
221
+ #
213
222
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AgentStatus AWS API Documentation
214
223
  #
215
224
  class AgentStatus < Struct.new(
@@ -220,7 +229,9 @@ module Aws::Connect
220
229
  :type,
221
230
  :display_order,
222
231
  :state,
223
- :tags)
232
+ :tags,
233
+ :last_modified_time,
234
+ :last_modified_region)
224
235
  SENSITIVE = []
225
236
  include Aws::Structure
226
237
  end
@@ -267,13 +278,24 @@ module Aws::Connect
267
278
  # The type of the agent status.
268
279
  # @return [String]
269
280
  #
281
+ # @!attribute [rw] last_modified_time
282
+ # The timestamp when this resource was last modified.
283
+ # @return [Time]
284
+ #
285
+ # @!attribute [rw] last_modified_region
286
+ # The Amazon Web Services Region where this resource was last
287
+ # modified.
288
+ # @return [String]
289
+ #
270
290
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AgentStatusSummary AWS API Documentation
271
291
  #
272
292
  class AgentStatusSummary < Struct.new(
273
293
  :id,
274
294
  :arn,
275
295
  :name,
276
- :type)
296
+ :type,
297
+ :last_modified_time,
298
+ :last_modified_region)
277
299
  SENSITIVE = []
278
300
  include Aws::Structure
279
301
  end
@@ -727,6 +749,45 @@ module Aws::Connect
727
749
  include Aws::Structure
728
750
  end
729
751
 
752
+ # @!attribute [rw] instance_id
753
+ # The identifier of the Amazon Connect instance. You can [find the
754
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
755
+ #
756
+ #
757
+ #
758
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
759
+ # @return [String]
760
+ #
761
+ # @!attribute [rw] resource_ids
762
+ # A list of resource identifiers to retrieve flow associations.
763
+ # @return [Array<String>]
764
+ #
765
+ # @!attribute [rw] resource_type
766
+ # The type of resource association.
767
+ # @return [String]
768
+ #
769
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/BatchGetFlowAssociationRequest AWS API Documentation
770
+ #
771
+ class BatchGetFlowAssociationRequest < Struct.new(
772
+ :instance_id,
773
+ :resource_ids,
774
+ :resource_type)
775
+ SENSITIVE = []
776
+ include Aws::Structure
777
+ end
778
+
779
+ # @!attribute [rw] flow_association_summary_list
780
+ # Information about flow associations.
781
+ # @return [Array<Types::FlowAssociationSummary>]
782
+ #
783
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/BatchGetFlowAssociationResponse AWS API Documentation
784
+ #
785
+ class BatchGetFlowAssociationResponse < Struct.new(
786
+ :flow_association_summary_list)
787
+ SENSITIVE = []
788
+ include Aws::Structure
789
+ end
790
+
730
791
  # A chat message.
731
792
  #
732
793
  # @!attribute [rw] content_type
@@ -1902,7 +1963,13 @@ module Aws::Connect
1902
1963
  # @return [String]
1903
1964
  #
1904
1965
  # @!attribute [rw] s3_uri
1905
- # The URI for the S3 bucket where the prompt is stored.
1966
+ # The URI for the S3 bucket where the prompt is stored. You can
1967
+ # provide S3 pre-signed URLs returned by the [GetPromptFile][1] API
1968
+ # instead of providing S3 URIs.
1969
+ #
1970
+ #
1971
+ #
1972
+ # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_GetPromptFile.html
1906
1973
  # @return [String]
1907
1974
  #
1908
1975
  # @!attribute [rw] tags
@@ -5727,6 +5794,30 @@ module Aws::Connect
5727
5794
  include Aws::Structure
5728
5795
  end
5729
5796
 
5797
+ # Information about flow associations.
5798
+ #
5799
+ # @!attribute [rw] resource_id
5800
+ # The identifier of the resource.
5801
+ # @return [String]
5802
+ #
5803
+ # @!attribute [rw] flow_id
5804
+ # The identifier of the flow.
5805
+ # @return [String]
5806
+ #
5807
+ # @!attribute [rw] resource_type
5808
+ # The type of resource association.
5809
+ # @return [String]
5810
+ #
5811
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/FlowAssociationSummary AWS API Documentation
5812
+ #
5813
+ class FlowAssociationSummary < Struct.new(
5814
+ :resource_id,
5815
+ :flow_id,
5816
+ :resource_type)
5817
+ SENSITIVE = []
5818
+ include Aws::Structure
5819
+ end
5820
+
5730
5821
  # @!attribute [rw] instance_id
5731
5822
  # The identifier of the Amazon Connect instance.
5732
5823
  # @return [String]
@@ -6978,10 +7069,21 @@ module Aws::Connect
6978
7069
  # user so they can access the prompt in S3.
6979
7070
  # @return [String]
6980
7071
  #
7072
+ # @!attribute [rw] last_modified_time
7073
+ # The timestamp when this resource was last modified.
7074
+ # @return [Time]
7075
+ #
7076
+ # @!attribute [rw] last_modified_region
7077
+ # The Amazon Web Services Region where this resource was last
7078
+ # modified.
7079
+ # @return [String]
7080
+ #
6981
7081
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetPromptFileResponse AWS API Documentation
6982
7082
  #
6983
7083
  class GetPromptFileResponse < Struct.new(
6984
- :prompt_presigned_url)
7084
+ :prompt_presigned_url,
7085
+ :last_modified_time,
7086
+ :last_modified_region)
6985
7087
  SENSITIVE = []
6986
7088
  include Aws::Structure
6987
7089
  end
@@ -7175,6 +7277,15 @@ module Aws::Connect
7175
7277
  # "key2":"value2"\\} \\}.
7176
7278
  # @return [Hash<String,String>]
7177
7279
  #
7280
+ # @!attribute [rw] last_modified_time
7281
+ # The timestamp when this resource was last modified.
7282
+ # @return [Time]
7283
+ #
7284
+ # @!attribute [rw] last_modified_region
7285
+ # The Amazon Web Services Region where this resource was last
7286
+ # modified.
7287
+ # @return [String]
7288
+ #
7178
7289
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HierarchyGroup AWS API Documentation
7179
7290
  #
7180
7291
  class HierarchyGroup < Struct.new(
@@ -7183,7 +7294,9 @@ module Aws::Connect
7183
7294
  :name,
7184
7295
  :level_id,
7185
7296
  :hierarchy_path,
7186
- :tags)
7297
+ :tags,
7298
+ :last_modified_time,
7299
+ :last_modified_region)
7187
7300
  SENSITIVE = []
7188
7301
  include Aws::Structure
7189
7302
  end
@@ -7222,12 +7335,23 @@ module Aws::Connect
7222
7335
  # The name of the hierarchy group.
7223
7336
  # @return [String]
7224
7337
  #
7338
+ # @!attribute [rw] last_modified_time
7339
+ # The timestamp when this resource was last modified.
7340
+ # @return [Time]
7341
+ #
7342
+ # @!attribute [rw] last_modified_region
7343
+ # The Amazon Web Services Region where this resource was last
7344
+ # modified.
7345
+ # @return [String]
7346
+ #
7225
7347
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HierarchyGroupSummary AWS API Documentation
7226
7348
  #
7227
7349
  class HierarchyGroupSummary < Struct.new(
7228
7350
  :id,
7229
7351
  :arn,
7230
- :name)
7352
+ :name,
7353
+ :last_modified_time,
7354
+ :last_modified_region)
7231
7355
  SENSITIVE = []
7232
7356
  include Aws::Structure
7233
7357
  end
@@ -7265,12 +7389,23 @@ module Aws::Connect
7265
7389
  # The name of the hierarchy level.
7266
7390
  # @return [String]
7267
7391
  #
7392
+ # @!attribute [rw] last_modified_time
7393
+ # The timestamp when this resource was last modified.
7394
+ # @return [Time]
7395
+ #
7396
+ # @!attribute [rw] last_modified_region
7397
+ # The Amazon Web Services Region where this resource was last
7398
+ # modified.
7399
+ # @return [String]
7400
+ #
7268
7401
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HierarchyLevel AWS API Documentation
7269
7402
  #
7270
7403
  class HierarchyLevel < Struct.new(
7271
7404
  :id,
7272
7405
  :arn,
7273
- :name)
7406
+ :name,
7407
+ :last_modified_time,
7408
+ :last_modified_region)
7274
7409
  SENSITIVE = []
7275
7410
  include Aws::Structure
7276
7411
  end
@@ -7531,6 +7666,15 @@ module Aws::Connect
7531
7666
  # "key2":"value2"\\} \\}.
7532
7667
  # @return [Hash<String,String>]
7533
7668
  #
7669
+ # @!attribute [rw] last_modified_time
7670
+ # The timestamp when this resource was last modified.
7671
+ # @return [Time]
7672
+ #
7673
+ # @!attribute [rw] last_modified_region
7674
+ # The Amazon Web Services Region where this resource was last
7675
+ # modified.
7676
+ # @return [String]
7677
+ #
7534
7678
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HoursOfOperation AWS API Documentation
7535
7679
  #
7536
7680
  class HoursOfOperation < Struct.new(
@@ -7540,7 +7684,9 @@ module Aws::Connect
7540
7684
  :description,
7541
7685
  :time_zone,
7542
7686
  :config,
7543
- :tags)
7687
+ :tags,
7688
+ :last_modified_time,
7689
+ :last_modified_region)
7544
7690
  SENSITIVE = []
7545
7691
  include Aws::Structure
7546
7692
  end
@@ -7638,12 +7784,23 @@ module Aws::Connect
7638
7784
  # The name of the hours of operation.
7639
7785
  # @return [String]
7640
7786
  #
7787
+ # @!attribute [rw] last_modified_time
7788
+ # The timestamp when this resource was last modified.
7789
+ # @return [Time]
7790
+ #
7791
+ # @!attribute [rw] last_modified_region
7792
+ # The Amazon Web Services Region where this resource was last
7793
+ # modified.
7794
+ # @return [String]
7795
+ #
7641
7796
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HoursOfOperationSummary AWS API Documentation
7642
7797
  #
7643
7798
  class HoursOfOperationSummary < Struct.new(
7644
7799
  :id,
7645
7800
  :arn,
7646
- :name)
7801
+ :name,
7802
+ :last_modified_time,
7803
+ :last_modified_region)
7647
7804
  SENSITIVE = []
7648
7805
  include Aws::Structure
7649
7806
  end
@@ -9319,11 +9476,22 @@ module Aws::Connect
9319
9476
  # Information about the quick connects.
9320
9477
  # @return [Array<Types::QuickConnectSummary>]
9321
9478
  #
9479
+ # @!attribute [rw] last_modified_time
9480
+ # The timestamp when this resource was last modified.
9481
+ # @return [Time]
9482
+ #
9483
+ # @!attribute [rw] last_modified_region
9484
+ # The Amazon Web Services Region where this resource was last
9485
+ # modified.
9486
+ # @return [String]
9487
+ #
9322
9488
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListQueueQuickConnectsResponse AWS API Documentation
9323
9489
  #
9324
9490
  class ListQueueQuickConnectsResponse < Struct.new(
9325
9491
  :next_token,
9326
- :quick_connect_summary_list)
9492
+ :quick_connect_summary_list,
9493
+ :last_modified_time,
9494
+ :last_modified_region)
9327
9495
  SENSITIVE = []
9328
9496
  include Aws::Structure
9329
9497
  end
@@ -9481,11 +9649,22 @@ module Aws::Connect
9481
9649
  # Information about the routing profiles.
9482
9650
  # @return [Array<Types::RoutingProfileQueueConfigSummary>]
9483
9651
  #
9652
+ # @!attribute [rw] last_modified_time
9653
+ # The timestamp when this resource was last modified.
9654
+ # @return [Time]
9655
+ #
9656
+ # @!attribute [rw] last_modified_region
9657
+ # The Amazon Web Services Region where this resource was last
9658
+ # modified.
9659
+ # @return [String]
9660
+ #
9484
9661
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListRoutingProfileQueuesResponse AWS API Documentation
9485
9662
  #
9486
9663
  class ListRoutingProfileQueuesResponse < Struct.new(
9487
9664
  :next_token,
9488
- :routing_profile_queue_config_summary_list)
9665
+ :routing_profile_queue_config_summary_list,
9666
+ :last_modified_time,
9667
+ :last_modified_region)
9489
9668
  SENSITIVE = []
9490
9669
  include Aws::Structure
9491
9670
  end
@@ -9688,11 +9867,22 @@ module Aws::Connect
9688
9867
  # of results.
9689
9868
  # @return [String]
9690
9869
  #
9870
+ # @!attribute [rw] last_modified_time
9871
+ # The timestamp when this resource was last modified.
9872
+ # @return [Time]
9873
+ #
9874
+ # @!attribute [rw] last_modified_region
9875
+ # The Amazon Web Services Region where this resource was last
9876
+ # modified.
9877
+ # @return [String]
9878
+ #
9691
9879
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListSecurityProfileApplicationsResponse AWS API Documentation
9692
9880
  #
9693
9881
  class ListSecurityProfileApplicationsResponse < Struct.new(
9694
9882
  :applications,
9695
- :next_token)
9883
+ :next_token,
9884
+ :last_modified_time,
9885
+ :last_modified_region)
9696
9886
  SENSITIVE = []
9697
9887
  include Aws::Structure
9698
9888
  end
@@ -9745,11 +9935,22 @@ module Aws::Connect
9745
9935
  # of results.
9746
9936
  # @return [String]
9747
9937
  #
9938
+ # @!attribute [rw] last_modified_time
9939
+ # The timestamp when this resource was last modified.
9940
+ # @return [Time]
9941
+ #
9942
+ # @!attribute [rw] last_modified_region
9943
+ # The Amazon Web Services Region where this resource was last
9944
+ # modified.
9945
+ # @return [String]
9946
+ #
9748
9947
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListSecurityProfilePermissionsResponse AWS API Documentation
9749
9948
  #
9750
9949
  class ListSecurityProfilePermissionsResponse < Struct.new(
9751
9950
  :permissions,
9752
- :next_token)
9951
+ :next_token,
9952
+ :last_modified_time,
9953
+ :last_modified_region)
9753
9954
  SENSITIVE = []
9754
9955
  include Aws::Structure
9755
9956
  end
@@ -10917,6 +11118,15 @@ module Aws::Connect
10917
11118
  # "key2":"value2"\\} \\}.
10918
11119
  # @return [Hash<String,String>]
10919
11120
  #
11121
+ # @!attribute [rw] last_modified_time
11122
+ # The timestamp when this resource was last modified.
11123
+ # @return [Time]
11124
+ #
11125
+ # @!attribute [rw] last_modified_region
11126
+ # The Amazon Web Services Region where this resource was last
11127
+ # modified.
11128
+ # @return [String]
11129
+ #
10920
11130
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Prompt AWS API Documentation
10921
11131
  #
10922
11132
  class Prompt < Struct.new(
@@ -10924,7 +11134,9 @@ module Aws::Connect
10924
11134
  :prompt_id,
10925
11135
  :name,
10926
11136
  :description,
10927
- :tags)
11137
+ :tags,
11138
+ :last_modified_time,
11139
+ :last_modified_region)
10928
11140
  SENSITIVE = []
10929
11141
  include Aws::Structure
10930
11142
  end
@@ -10997,12 +11209,23 @@ module Aws::Connect
10997
11209
  # The name of the prompt.
10998
11210
  # @return [String]
10999
11211
  #
11212
+ # @!attribute [rw] last_modified_time
11213
+ # The timestamp when this resource was last modified.
11214
+ # @return [Time]
11215
+ #
11216
+ # @!attribute [rw] last_modified_region
11217
+ # The Amazon Web Services Region where this resource was last
11218
+ # modified.
11219
+ # @return [String]
11220
+ #
11000
11221
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/PromptSummary AWS API Documentation
11001
11222
  #
11002
11223
  class PromptSummary < Struct.new(
11003
11224
  :id,
11004
11225
  :arn,
11005
- :name)
11226
+ :name,
11227
+ :last_modified_time,
11228
+ :last_modified_region)
11006
11229
  SENSITIVE = []
11007
11230
  include Aws::Structure
11008
11231
  end
@@ -11120,6 +11343,15 @@ module Aws::Connect
11120
11343
  # "key2":"value2"\\} \\}.
11121
11344
  # @return [Hash<String,String>]
11122
11345
  #
11346
+ # @!attribute [rw] last_modified_time
11347
+ # The timestamp when this resource was last modified.
11348
+ # @return [Time]
11349
+ #
11350
+ # @!attribute [rw] last_modified_region
11351
+ # The Amazon Web Services Region where this resource was last
11352
+ # modified.
11353
+ # @return [String]
11354
+ #
11123
11355
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Queue AWS API Documentation
11124
11356
  #
11125
11357
  class Queue < Struct.new(
@@ -11131,7 +11363,9 @@ module Aws::Connect
11131
11363
  :hours_of_operation_id,
11132
11364
  :max_contacts,
11133
11365
  :status,
11134
- :tags)
11366
+ :tags,
11367
+ :last_modified_time,
11368
+ :last_modified_region)
11135
11369
  SENSITIVE = []
11136
11370
  include Aws::Structure
11137
11371
  end
@@ -11279,13 +11513,24 @@ module Aws::Connect
11279
11513
  # The type of queue.
11280
11514
  # @return [String]
11281
11515
  #
11516
+ # @!attribute [rw] last_modified_time
11517
+ # The timestamp when this resource was last modified.
11518
+ # @return [Time]
11519
+ #
11520
+ # @!attribute [rw] last_modified_region
11521
+ # The Amazon Web Services Region where this resource was last
11522
+ # modified.
11523
+ # @return [String]
11524
+ #
11282
11525
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/QueueSummary AWS API Documentation
11283
11526
  #
11284
11527
  class QueueSummary < Struct.new(
11285
11528
  :id,
11286
11529
  :arn,
11287
11530
  :name,
11288
- :queue_type)
11531
+ :queue_type,
11532
+ :last_modified_time,
11533
+ :last_modified_region)
11289
11534
  SENSITIVE = []
11290
11535
  include Aws::Structure
11291
11536
  end
@@ -11318,6 +11563,15 @@ module Aws::Connect
11318
11563
  # "key2":"value2"\\} \\}.
11319
11564
  # @return [Hash<String,String>]
11320
11565
  #
11566
+ # @!attribute [rw] last_modified_time
11567
+ # The timestamp when this resource was last modified.
11568
+ # @return [Time]
11569
+ #
11570
+ # @!attribute [rw] last_modified_region
11571
+ # The Amazon Web Services Region where this resource was last
11572
+ # modified.
11573
+ # @return [String]
11574
+ #
11321
11575
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/QuickConnect AWS API Documentation
11322
11576
  #
11323
11577
  class QuickConnect < Struct.new(
@@ -11326,7 +11580,9 @@ module Aws::Connect
11326
11580
  :name,
11327
11581
  :description,
11328
11582
  :quick_connect_config,
11329
- :tags)
11583
+ :tags,
11584
+ :last_modified_time,
11585
+ :last_modified_region)
11330
11586
  SENSITIVE = []
11331
11587
  include Aws::Structure
11332
11588
  end
@@ -11441,13 +11697,24 @@ module Aws::Connect
11441
11697
  # (QUEUE).
11442
11698
  # @return [String]
11443
11699
  #
11700
+ # @!attribute [rw] last_modified_time
11701
+ # The timestamp when this resource was last modified.
11702
+ # @return [Time]
11703
+ #
11704
+ # @!attribute [rw] last_modified_region
11705
+ # The Amazon Web Services Region where this resource was last
11706
+ # modified.
11707
+ # @return [String]
11708
+ #
11444
11709
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/QuickConnectSummary AWS API Documentation
11445
11710
  #
11446
11711
  class QuickConnectSummary < Struct.new(
11447
11712
  :id,
11448
11713
  :arn,
11449
11714
  :name,
11450
- :quick_connect_type)
11715
+ :quick_connect_type,
11716
+ :last_modified_time,
11717
+ :last_modified_region)
11451
11718
  SENSITIVE = []
11452
11719
  include Aws::Structure
11453
11720
  end
@@ -11819,6 +12086,19 @@ module Aws::Connect
11819
12086
  # *longest idle time*.
11820
12087
  # @return [String]
11821
12088
  #
12089
+ # @!attribute [rw] last_modified_time
12090
+ # The timestamp when this resource was last modified.
12091
+ # @return [Time]
12092
+ #
12093
+ # @!attribute [rw] last_modified_region
12094
+ # The Amazon Web Services Region where this resource was last
12095
+ # modified.
12096
+ # @return [String]
12097
+ #
12098
+ # @!attribute [rw] is_default
12099
+ # Whether this a default routing profile.
12100
+ # @return [Boolean]
12101
+ #
11822
12102
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RoutingProfile AWS API Documentation
11823
12103
  #
11824
12104
  class RoutingProfile < Struct.new(
@@ -11832,7 +12112,10 @@ module Aws::Connect
11832
12112
  :tags,
11833
12113
  :number_of_associated_queues,
11834
12114
  :number_of_associated_users,
11835
- :agent_availability_timer)
12115
+ :agent_availability_timer,
12116
+ :last_modified_time,
12117
+ :last_modified_region,
12118
+ :is_default)
11836
12119
  SENSITIVE = []
11837
12120
  include Aws::Structure
11838
12121
  end
@@ -12038,12 +12321,23 @@ module Aws::Connect
12038
12321
  # The name of the routing profile.
12039
12322
  # @return [String]
12040
12323
  #
12324
+ # @!attribute [rw] last_modified_time
12325
+ # The timestamp when this resource was last modified.
12326
+ # @return [Time]
12327
+ #
12328
+ # @!attribute [rw] last_modified_region
12329
+ # The Amazon Web Services Region where this resource was last
12330
+ # modified.
12331
+ # @return [String]
12332
+ #
12041
12333
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RoutingProfileSummary AWS API Documentation
12042
12334
  #
12043
12335
  class RoutingProfileSummary < Struct.new(
12044
12336
  :id,
12045
12337
  :arn,
12046
- :name)
12338
+ :name,
12339
+ :last_modified_time,
12340
+ :last_modified_region)
12047
12341
  SENSITIVE = []
12048
12342
  include Aws::Structure
12049
12343
  end
@@ -12996,6 +13290,15 @@ module Aws::Connect
12996
13290
  # restrictions to in Amazon Connect.
12997
13291
  # @return [Array<String>]
12998
13292
  #
13293
+ # @!attribute [rw] last_modified_time
13294
+ # The timestamp when this resource was last modified.
13295
+ # @return [Time]
13296
+ #
13297
+ # @!attribute [rw] last_modified_region
13298
+ # The Amazon Web Services Region where this resource was last
13299
+ # modified.
13300
+ # @return [String]
13301
+ #
12999
13302
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SecurityProfile AWS API Documentation
13000
13303
  #
13001
13304
  class SecurityProfile < Struct.new(
@@ -13006,7 +13309,9 @@ module Aws::Connect
13006
13309
  :description,
13007
13310
  :tags,
13008
13311
  :allowed_access_control_tags,
13009
- :tag_restricted_resources)
13312
+ :tag_restricted_resources,
13313
+ :last_modified_time,
13314
+ :last_modified_region)
13010
13315
  SENSITIVE = []
13011
13316
  include Aws::Structure
13012
13317
  end
@@ -13099,12 +13404,23 @@ module Aws::Connect
13099
13404
  # The name of the security profile.
13100
13405
  # @return [String]
13101
13406
  #
13407
+ # @!attribute [rw] last_modified_time
13408
+ # The timestamp when this resource was last modified.
13409
+ # @return [Time]
13410
+ #
13411
+ # @!attribute [rw] last_modified_region
13412
+ # The Amazon Web Services Region where this resource was last
13413
+ # modified.
13414
+ # @return [String]
13415
+ #
13102
13416
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SecurityProfileSummary AWS API Documentation
13103
13417
  #
13104
13418
  class SecurityProfileSummary < Struct.new(
13105
13419
  :id,
13106
13420
  :arn,
13107
- :name)
13421
+ :name,
13422
+ :last_modified_time,
13423
+ :last_modified_region)
13108
13424
  SENSITIVE = []
13109
13425
  include Aws::Structure
13110
13426
  end
@@ -14454,13 +14770,18 @@ module Aws::Connect
14454
14770
  # default traffic distribution group is deleted as part of the process
14455
14771
  # for deleting a replica.
14456
14772
  #
14457
- # <note markdown="1"> The `SignInConfig` distribution is available only on the default
14458
- # `TrafficDistributionGroup`. If you call `UpdateTrafficDistribution`
14459
- # with a modified `SignInConfig` and a non-default
14460
- # `TrafficDistributionGroup`, an `InvalidRequestException` is
14461
- # returned.
14773
+ # <note markdown="1"> The `SignInConfig` distribution is available only on a default
14774
+ # `TrafficDistributionGroup` (see the `IsDefault` parameter in the
14775
+ # [TrafficDistributionGroup][1] data type). If you call
14776
+ # `UpdateTrafficDistribution` with a modified `SignInConfig` and a
14777
+ # non-default `TrafficDistributionGroup`, an `InvalidRequestException`
14778
+ # is returned.
14462
14779
  #
14463
14780
  # </note>
14781
+ #
14782
+ #
14783
+ #
14784
+ # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_TrafficDistributionGroup.html
14464
14785
  # @return [Boolean]
14465
14786
  #
14466
14787
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TrafficDistributionGroup AWS API Documentation
@@ -15412,7 +15733,13 @@ module Aws::Connect
15412
15733
  # @return [String]
15413
15734
  #
15414
15735
  # @!attribute [rw] s3_uri
15415
- # The URI for the S3 bucket where the prompt is stored.
15736
+ # The URI for the S3 bucket where the prompt is stored. You can
15737
+ # provide S3 pre-signed URLs returned by the [GetPromptFile][1] API
15738
+ # instead of providing S3 URIs.
15739
+ #
15740
+ #
15741
+ #
15742
+ # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_GetPromptFile.html
15416
15743
  # @return [String]
15417
15744
  #
15418
15745
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdatePromptRequest AWS API Documentation
@@ -16420,6 +16747,15 @@ module Aws::Connect
16420
16747
  # The tags.
16421
16748
  # @return [Hash<String,String>]
16422
16749
  #
16750
+ # @!attribute [rw] last_modified_time
16751
+ # The timestamp when this resource was last modified.
16752
+ # @return [Time]
16753
+ #
16754
+ # @!attribute [rw] last_modified_region
16755
+ # The Amazon Web Services Region where this resource was last
16756
+ # modified.
16757
+ # @return [String]
16758
+ #
16423
16759
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/User AWS API Documentation
16424
16760
  #
16425
16761
  class User < Struct.new(
@@ -16432,7 +16768,9 @@ module Aws::Connect
16432
16768
  :security_profile_ids,
16433
16769
  :routing_profile_id,
16434
16770
  :hierarchy_group_id,
16435
- :tags)
16771
+ :tags,
16772
+ :last_modified_time,
16773
+ :last_modified_region)
16436
16774
  SENSITIVE = []
16437
16775
  include Aws::Structure
16438
16776
  end
@@ -16832,12 +17170,23 @@ module Aws::Connect
16832
17170
  # The Amazon Connect user name of the user account.
16833
17171
  # @return [String]
16834
17172
  #
17173
+ # @!attribute [rw] last_modified_time
17174
+ # The timestamp when this resource was last modified.
17175
+ # @return [Time]
17176
+ #
17177
+ # @!attribute [rw] last_modified_region
17178
+ # The Amazon Web Services Region where this resource was last
17179
+ # modified.
17180
+ # @return [String]
17181
+ #
16835
17182
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UserSummary AWS API Documentation
16836
17183
  #
16837
17184
  class UserSummary < Struct.new(
16838
17185
  :id,
16839
17186
  :arn,
16840
- :username)
17187
+ :username,
17188
+ :last_modified_time,
17189
+ :last_modified_region)
16841
17190
  SENSITIVE = []
16842
17191
  include Aws::Structure
16843
17192
  end