aws-sdk-connect 1.56.0 → 1.57.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.
@@ -23,6 +23,25 @@ module Aws::Connect
23
23
  include Aws::Structure
24
24
  end
25
25
 
26
+ # Information about the agent who accepted the contact.
27
+ #
28
+ # @!attribute [rw] id
29
+ # The identifier of the agent who accepted the contact.
30
+ # @return [String]
31
+ #
32
+ # @!attribute [rw] connected_to_agent_timestamp
33
+ # The timestamp when the contact was connected to the agent.
34
+ # @return [Time]
35
+ #
36
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AgentInfo AWS API Documentation
37
+ #
38
+ class AgentInfo < Struct.new(
39
+ :id,
40
+ :connected_to_agent_timestamp)
41
+ SENSITIVE = []
42
+ include Aws::Structure
43
+ end
44
+
26
45
  # Contains information about an agent status.
27
46
  #
28
47
  # @!attribute [rw] agent_status_arn
@@ -54,8 +73,7 @@ module Aws::Connect
54
73
  # @return [String]
55
74
  #
56
75
  # @!attribute [rw] tags
57
- # The tags used to organize, track, or control access for this
58
- # resource.
76
+ # One or more tags.
59
77
  # @return [Hash<String,String>]
60
78
  #
61
79
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AgentStatus AWS API Documentation
@@ -432,6 +450,31 @@ module Aws::Connect
432
450
  include Aws::Structure
433
451
  end
434
452
 
453
+ # Information about the attachment reference if the `referenceType` is
454
+ # `ATTACHMENT`. Otherwise, null.
455
+ #
456
+ # @!attribute [rw] name
457
+ # Identifier of the attachment reference.
458
+ # @return [String]
459
+ #
460
+ # @!attribute [rw] value
461
+ # Contains the location path of the attachment reference.
462
+ # @return [String]
463
+ #
464
+ # @!attribute [rw] status
465
+ # Status of an attachment reference type.
466
+ # @return [String]
467
+ #
468
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AttachmentReference AWS API Documentation
469
+ #
470
+ class AttachmentReference < Struct.new(
471
+ :name,
472
+ :value,
473
+ :status)
474
+ SENSITIVE = []
475
+ include Aws::Structure
476
+ end
477
+
435
478
  # A toggle for an individual feature at the instance level.
436
479
  #
437
480
  # @!attribute [rw] attribute_type
@@ -502,6 +545,95 @@ module Aws::Connect
502
545
  include Aws::Structure
503
546
  end
504
547
 
548
+ # Contains information about a contact.
549
+ #
550
+ # @!attribute [rw] arn
551
+ # The Amazon Resource Name (ARN) for the contact.
552
+ # @return [String]
553
+ #
554
+ # @!attribute [rw] id
555
+ # The identifier for the contact.
556
+ # @return [String]
557
+ #
558
+ # @!attribute [rw] initial_contact_id
559
+ # If this contact is related to other contacts, this is the ID of the
560
+ # initial contact.
561
+ # @return [String]
562
+ #
563
+ # @!attribute [rw] previous_contact_id
564
+ # If this contact is not the first contact, this is the ID of the
565
+ # previous contact.
566
+ # @return [String]
567
+ #
568
+ # @!attribute [rw] initiation_method
569
+ # Indicates how the contact was initiated.
570
+ # @return [String]
571
+ #
572
+ # @!attribute [rw] name
573
+ # The name of the contact.
574
+ # @return [String]
575
+ #
576
+ # @!attribute [rw] description
577
+ # The description of the contact.
578
+ # @return [String]
579
+ #
580
+ # @!attribute [rw] channel
581
+ # How the contact reached your contact center.
582
+ # @return [String]
583
+ #
584
+ # @!attribute [rw] queue_info
585
+ # If this contact was queued, this contains information about the
586
+ # queue.
587
+ # @return [Types::QueueInfo]
588
+ #
589
+ # @!attribute [rw] agent_info
590
+ # Information about the agent who accepted the contact.
591
+ # @return [Types::AgentInfo]
592
+ #
593
+ # @!attribute [rw] initiation_timestamp
594
+ # The date and time this contact was initiated, in UTC time. For
595
+ # `INBOUND`, this is when the contact arrived. For `OUTBOUND`, this is
596
+ # when the agent began dialing. For `CALLBACK`, this is when the
597
+ # callback contact was created. For `TRANSFER` and `QUEUE_TRANSFER`,
598
+ # this is when the transfer was initiated. For `API`, this is when the
599
+ # request arrived.
600
+ # @return [Time]
601
+ #
602
+ # @!attribute [rw] disconnect_timestamp
603
+ # The timestamp when the customer endpoint disconnected from Amazon
604
+ # Connect.
605
+ # @return [Time]
606
+ #
607
+ # @!attribute [rw] last_update_timestamp
608
+ # The timestamp when contact was last updated.
609
+ # @return [Time]
610
+ #
611
+ # @!attribute [rw] scheduled_timestamp
612
+ # The timestamp, in Unix epoch time format, at which to start running
613
+ # the inbound flow.
614
+ # @return [Time]
615
+ #
616
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Contact AWS API Documentation
617
+ #
618
+ class Contact < Struct.new(
619
+ :arn,
620
+ :id,
621
+ :initial_contact_id,
622
+ :previous_contact_id,
623
+ :initiation_method,
624
+ :name,
625
+ :description,
626
+ :channel,
627
+ :queue_info,
628
+ :agent_info,
629
+ :initiation_timestamp,
630
+ :disconnect_timestamp,
631
+ :last_update_timestamp,
632
+ :scheduled_timestamp)
633
+ SENSITIVE = []
634
+ include Aws::Structure
635
+ end
636
+
505
637
  # Contains information about a contact flow.
506
638
  #
507
639
  # @!attribute [rw] arn
@@ -651,8 +783,7 @@ module Aws::Connect
651
783
  # @return [Integer]
652
784
  #
653
785
  # @!attribute [rw] tags
654
- # The tags used to organize, track, or control access for this
655
- # resource.
786
+ # One or more tags.
656
787
  # @return [Hash<String,String>]
657
788
  #
658
789
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateAgentStatusRequest AWS API Documentation
@@ -808,8 +939,7 @@ module Aws::Connect
808
939
  # @return [Array<Types::HoursOfOperationConfig>]
809
940
  #
810
941
  # @!attribute [rw] tags
811
- # The tags used to organize, track, or control access for this
812
- # resource.
942
+ # One or more tags.
813
943
  # @return [Hash<String,String>]
814
944
  #
815
945
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateHoursOfOperationRequest AWS API Documentation
@@ -952,8 +1082,7 @@ module Aws::Connect
952
1082
  # @return [String]
953
1083
  #
954
1084
  # @!attribute [rw] tags
955
- # The tags used to organize, track, or control access for this
956
- # resource.
1085
+ # One or more tags.
957
1086
  # @return [Hash<String,String>]
958
1087
  #
959
1088
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateIntegrationAssociationRequest AWS API Documentation
@@ -1038,8 +1167,7 @@ module Aws::Connect
1038
1167
  # @return [Array<String>]
1039
1168
  #
1040
1169
  # @!attribute [rw] tags
1041
- # The tags used to organize, track, or control access for this
1042
- # resource.
1170
+ # One or more tags.
1043
1171
  # @return [Hash<String,String>]
1044
1172
  #
1045
1173
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateQueueRequest AWS API Documentation
@@ -1118,8 +1246,7 @@ module Aws::Connect
1118
1246
  # @return [Types::QuickConnectConfig]
1119
1247
  #
1120
1248
  # @!attribute [rw] tags
1121
- # The tags used to organize, track, or control access for this
1122
- # resource.
1249
+ # One or more tags.
1123
1250
  # @return [Hash<String,String>]
1124
1251
  #
1125
1252
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateQuickConnectRequest AWS API Documentation
@@ -1275,8 +1402,7 @@ module Aws::Connect
1275
1402
  # @return [String]
1276
1403
  #
1277
1404
  # @!attribute [rw] tags
1278
- # The tags used to organize, track, or control access for this
1279
- # resource.
1405
+ # One or more tags.
1280
1406
  # @return [Hash<String,String>]
1281
1407
  #
1282
1408
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateSecurityProfileRequest AWS API Documentation
@@ -1336,8 +1462,7 @@ module Aws::Connect
1336
1462
  # @return [String]
1337
1463
  #
1338
1464
  # @!attribute [rw] tags
1339
- # The tags used to organize, track, or control access for this
1340
- # resource.
1465
+ # One or more tags.
1341
1466
  # @return [Hash<String,String>]
1342
1467
  #
1343
1468
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateUseCaseRequest AWS API Documentation
@@ -1923,6 +2048,44 @@ module Aws::Connect
1923
2048
  include Aws::Structure
1924
2049
  end
1925
2050
 
2051
+ # @note When making an API call, you may pass DescribeContactRequest
2052
+ # data as a hash:
2053
+ #
2054
+ # {
2055
+ # instance_id: "InstanceId", # required
2056
+ # contact_id: "ContactId", # required
2057
+ # }
2058
+ #
2059
+ # @!attribute [rw] instance_id
2060
+ # The identifier of the Amazon Connect instance. You can find the
2061
+ # instanceId in the ARN of the instance.
2062
+ # @return [String]
2063
+ #
2064
+ # @!attribute [rw] contact_id
2065
+ # The identifier of the initial contact.
2066
+ # @return [String]
2067
+ #
2068
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContactRequest AWS API Documentation
2069
+ #
2070
+ class DescribeContactRequest < Struct.new(
2071
+ :instance_id,
2072
+ :contact_id)
2073
+ SENSITIVE = []
2074
+ include Aws::Structure
2075
+ end
2076
+
2077
+ # @!attribute [rw] contact
2078
+ # Information about the contact.
2079
+ # @return [Types::Contact]
2080
+ #
2081
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContactResponse AWS API Documentation
2082
+ #
2083
+ class DescribeContactResponse < Struct.new(
2084
+ :contact)
2085
+ SENSITIVE = []
2086
+ include Aws::Structure
2087
+ end
2088
+
1926
2089
  # @note When making an API call, you may pass DescribeHoursOfOperationRequest
1927
2090
  # data as a hash:
1928
2091
  #
@@ -3611,8 +3774,7 @@ module Aws::Connect
3611
3774
  # @return [Array<Types::HoursOfOperationConfig>]
3612
3775
  #
3613
3776
  # @!attribute [rw] tags
3614
- # The tags used to organize, track, or control access for this
3615
- # resource.
3777
+ # One or more tags.
3616
3778
  # @return [Hash<String,String>]
3617
3779
  #
3618
3780
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HoursOfOperation AWS API Documentation
@@ -4416,6 +4578,69 @@ module Aws::Connect
4416
4578
  include Aws::Structure
4417
4579
  end
4418
4580
 
4581
+ # @note When making an API call, you may pass ListContactReferencesRequest
4582
+ # data as a hash:
4583
+ #
4584
+ # {
4585
+ # instance_id: "InstanceId", # required
4586
+ # contact_id: "ContactId", # required
4587
+ # reference_types: ["URL"], # required, accepts URL, ATTACHMENT
4588
+ # next_token: "NextToken",
4589
+ # }
4590
+ #
4591
+ # @!attribute [rw] instance_id
4592
+ # The identifier of the Amazon Connect instance. You can find the
4593
+ # instanceId in the ARN of the instance.
4594
+ # @return [String]
4595
+ #
4596
+ # @!attribute [rw] contact_id
4597
+ # The identifier of the initial contact.
4598
+ # @return [String]
4599
+ #
4600
+ # @!attribute [rw] reference_types
4601
+ # The type of reference.
4602
+ # @return [Array<String>]
4603
+ #
4604
+ # @!attribute [rw] next_token
4605
+ # The token for the next set of results. Use the value returned in the
4606
+ # previous response in the next request to retrieve the next set of
4607
+ # results.
4608
+ #
4609
+ # This is not expected to be set since the value returned in the
4610
+ # previous response is always null.
4611
+ # @return [String]
4612
+ #
4613
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListContactReferencesRequest AWS API Documentation
4614
+ #
4615
+ class ListContactReferencesRequest < Struct.new(
4616
+ :instance_id,
4617
+ :contact_id,
4618
+ :reference_types,
4619
+ :next_token)
4620
+ SENSITIVE = []
4621
+ include Aws::Structure
4622
+ end
4623
+
4624
+ # @!attribute [rw] reference_summary_list
4625
+ # Information about the contact flows.
4626
+ # @return [Array<Types::ReferenceSummary>]
4627
+ #
4628
+ # @!attribute [rw] next_token
4629
+ # If there are additional results, this is the token for the next set
4630
+ # of results.
4631
+ #
4632
+ # This is always returned as null in the response.
4633
+ # @return [String]
4634
+ #
4635
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListContactReferencesResponse AWS API Documentation
4636
+ #
4637
+ class ListContactReferencesResponse < Struct.new(
4638
+ :reference_summary_list,
4639
+ :next_token)
4640
+ SENSITIVE = []
4641
+ include Aws::Structure
4642
+ end
4643
+
4419
4644
  # @note When making an API call, you may pass ListHoursOfOperationsRequest
4420
4645
  # data as a hash:
4421
4646
  #
@@ -4639,7 +4864,6 @@ module Aws::Connect
4639
4864
  # @return [String]
4640
4865
  #
4641
4866
  # @!attribute [rw] integration_type
4642
- # The type of integration.
4643
4867
  # @return [String]
4644
4868
  #
4645
4869
  # @!attribute [rw] next_token
@@ -4716,7 +4940,7 @@ module Aws::Connect
4716
4940
  end
4717
4941
 
4718
4942
  # @!attribute [rw] lambda_functions
4719
- # The Lambda function ARNs associated with the specified instance.
4943
+ # The Lambdafunction ARNs associated with the specified instance.
4720
4944
  # @return [Array<String>]
4721
4945
  #
4722
4946
  # @!attribute [rw] next_token
@@ -5781,8 +6005,7 @@ module Aws::Connect
5781
6005
  # @return [String]
5782
6006
  #
5783
6007
  # @!attribute [rw] tags
5784
- # The tags used to organize, track, or control access for this
5785
- # resource.
6008
+ # One or more tags.
5786
6009
  # @return [Hash<String,String>]
5787
6010
  #
5788
6011
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Queue AWS API Documentation
@@ -5801,6 +6024,25 @@ module Aws::Connect
5801
6024
  include Aws::Structure
5802
6025
  end
5803
6026
 
6027
+ # If this contact was queued, this contains information about the queue.
6028
+ #
6029
+ # @!attribute [rw] id
6030
+ # The identifier of the agent who accepted the contact.
6031
+ # @return [String]
6032
+ #
6033
+ # @!attribute [rw] enqueue_timestamp
6034
+ # The timestamp when the contact was added to the queue.
6035
+ # @return [Time]
6036
+ #
6037
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/QueueInfo AWS API Documentation
6038
+ #
6039
+ class QueueInfo < Struct.new(
6040
+ :id,
6041
+ :enqueue_timestamp)
6042
+ SENSITIVE = []
6043
+ include Aws::Structure
6044
+ end
6045
+
5804
6046
  # Contains information about a queue for a quick connect. The contact
5805
6047
  # flow must be of type Transfer to Queue.
5806
6048
  #
@@ -5901,8 +6143,7 @@ module Aws::Connect
5901
6143
  # @return [Types::QuickConnectConfig]
5902
6144
  #
5903
6145
  # @!attribute [rw] tags
5904
- # The tags used to organize, track, or control access for this
5905
- # resource.
6146
+ # One or more tags.
5906
6147
  # @return [Hash<String,String>]
5907
6148
  #
5908
6149
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/QuickConnect AWS API Documentation
@@ -6011,16 +6252,18 @@ module Aws::Connect
6011
6252
  #
6012
6253
  # {
6013
6254
  # value: "ReferenceValue", # required
6014
- # type: "URL", # required, accepts URL
6255
+ # type: "URL", # required, accepts URL, ATTACHMENT
6015
6256
  # }
6016
6257
  #
6017
6258
  # @!attribute [rw] value
6018
- # A formatted URL that displays to an agent in the Contact Control
6019
- # Panel (CCP)
6259
+ # A valid value for the reference. For example, for a URL reference, a
6260
+ # formatted URL that is displayed to an agent in the Contact Control
6261
+ # Panel (CCP).
6020
6262
  # @return [String]
6021
6263
  #
6022
6264
  # @!attribute [rw] type
6023
- # A valid URL.
6265
+ # The type of the reference. Only `URL` type can be added or updated
6266
+ # on a contact.
6024
6267
  # @return [String]
6025
6268
  #
6026
6269
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Reference AWS API Documentation
@@ -6032,6 +6275,37 @@ module Aws::Connect
6032
6275
  include Aws::Structure
6033
6276
  end
6034
6277
 
6278
+ # Contains summary information about a reference. `ReferenceSummary`
6279
+ # contains only one non null field between the URL and attachment based
6280
+ # on the reference type.
6281
+ #
6282
+ # @note ReferenceSummary is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ReferenceSummary corresponding to the set member.
6283
+ #
6284
+ # @!attribute [rw] url
6285
+ # Information about Url reference if the `referenceType` is `URL`.
6286
+ # Otherwise, null.
6287
+ # @return [Types::UrlReference]
6288
+ #
6289
+ # @!attribute [rw] attachment
6290
+ # Information about the attachment reference if the `referenceType` is
6291
+ # `ATTACHMENT`. Otherwise, null.
6292
+ # @return [Types::AttachmentReference]
6293
+ #
6294
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ReferenceSummary AWS API Documentation
6295
+ #
6296
+ class ReferenceSummary < Struct.new(
6297
+ :url,
6298
+ :attachment,
6299
+ :unknown)
6300
+ SENSITIVE = []
6301
+ include Aws::Structure
6302
+ include Aws::Structure::Union
6303
+
6304
+ class Url < ReferenceSummary; end
6305
+ class Attachment < ReferenceSummary; end
6306
+ class Unknown < ReferenceSummary; end
6307
+ end
6308
+
6035
6309
  # A resource already has that name.
6036
6310
  #
6037
6311
  # @!attribute [rw] message
@@ -6407,8 +6681,7 @@ module Aws::Connect
6407
6681
  # @return [String]
6408
6682
  #
6409
6683
  # @!attribute [rw] tags
6410
- # The tags used to organize, track, or control access for this
6411
- # resource.
6684
+ # One or more tags.
6412
6685
  # @return [Hash<String,String>]
6413
6686
  #
6414
6687
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SecurityProfile AWS API Documentation
@@ -6801,11 +7074,12 @@ module Aws::Connect
6801
7074
  # references: {
6802
7075
  # "ReferenceKey" => {
6803
7076
  # value: "ReferenceValue", # required
6804
- # type: "URL", # required, accepts URL
7077
+ # type: "URL", # required, accepts URL, ATTACHMENT
6805
7078
  # },
6806
7079
  # },
6807
7080
  # description: "Description",
6808
7081
  # client_token: "ClientToken",
7082
+ # scheduled_time: Time.now,
6809
7083
  # }
6810
7084
  #
6811
7085
  # @!attribute [rw] instance_id
@@ -6861,6 +7135,12 @@ module Aws::Connect
6861
7135
  # not need to pass this option.
6862
7136
  # @return [String]
6863
7137
  #
7138
+ # @!attribute [rw] scheduled_time
7139
+ # The timestamp, in Unix Epoch seconds format, at which to start
7140
+ # running the inbound contact flow. The scheduled time cannot be in
7141
+ # the past. It must be within up to 6 days in future.
7142
+ # @return [Time]
7143
+ #
6864
7144
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartTaskContactRequest AWS API Documentation
6865
7145
  #
6866
7146
  class StartTaskContactRequest < Struct.new(
@@ -6871,7 +7151,8 @@ module Aws::Connect
6871
7151
  :name,
6872
7152
  :references,
6873
7153
  :description,
6874
- :client_token)
7154
+ :client_token,
7155
+ :scheduled_time)
6875
7156
  SENSITIVE = []
6876
7157
  include Aws::Structure
6877
7158
  end
@@ -7298,6 +7579,99 @@ module Aws::Connect
7298
7579
  include Aws::Structure
7299
7580
  end
7300
7581
 
7582
+ # @note When making an API call, you may pass UpdateContactRequest
7583
+ # data as a hash:
7584
+ #
7585
+ # {
7586
+ # instance_id: "InstanceId", # required
7587
+ # contact_id: "ContactId", # required
7588
+ # name: "Name",
7589
+ # description: "Description",
7590
+ # references: {
7591
+ # "ReferenceKey" => {
7592
+ # value: "ReferenceValue", # required
7593
+ # type: "URL", # required, accepts URL, ATTACHMENT
7594
+ # },
7595
+ # },
7596
+ # }
7597
+ #
7598
+ # @!attribute [rw] instance_id
7599
+ # The identifier of the Amazon Connect instance. You can find the
7600
+ # instanceId in the ARN of the instance.
7601
+ # @return [String]
7602
+ #
7603
+ # @!attribute [rw] contact_id
7604
+ # The identifier of the contact. This is the identifier of the contact
7605
+ # associated with the first interaction with your contact center.
7606
+ # @return [String]
7607
+ #
7608
+ # @!attribute [rw] name
7609
+ # The name of the contact.
7610
+ # @return [String]
7611
+ #
7612
+ # @!attribute [rw] description
7613
+ # The description of the contact.
7614
+ # @return [String]
7615
+ #
7616
+ # @!attribute [rw] references
7617
+ # A formatted URL that is shown to an agent in the Contact Control
7618
+ # Panel (CCP).
7619
+ # @return [Hash<String,Types::Reference>]
7620
+ #
7621
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactRequest AWS API Documentation
7622
+ #
7623
+ class UpdateContactRequest < Struct.new(
7624
+ :instance_id,
7625
+ :contact_id,
7626
+ :name,
7627
+ :description,
7628
+ :references)
7629
+ SENSITIVE = []
7630
+ include Aws::Structure
7631
+ end
7632
+
7633
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactResponse AWS API Documentation
7634
+ #
7635
+ class UpdateContactResponse < Aws::EmptyStructure; end
7636
+
7637
+ # @note When making an API call, you may pass UpdateContactScheduleRequest
7638
+ # data as a hash:
7639
+ #
7640
+ # {
7641
+ # instance_id: "InstanceId", # required
7642
+ # contact_id: "ContactId", # required
7643
+ # scheduled_time: Time.now, # required
7644
+ # }
7645
+ #
7646
+ # @!attribute [rw] instance_id
7647
+ # The identifier of the Amazon Connect instance. You can find the
7648
+ # instanceId in the ARN of the instance.
7649
+ # @return [String]
7650
+ #
7651
+ # @!attribute [rw] contact_id
7652
+ # The identifier of the contact.
7653
+ # @return [String]
7654
+ #
7655
+ # @!attribute [rw] scheduled_time
7656
+ # The timestamp, in Unix Epoch seconds format, at which to start
7657
+ # running the inbound contact flow. The scheduled time cannot be in
7658
+ # the past. It must be within up to 6 days in future.
7659
+ # @return [Time]
7660
+ #
7661
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactScheduleRequest AWS API Documentation
7662
+ #
7663
+ class UpdateContactScheduleRequest < Struct.new(
7664
+ :instance_id,
7665
+ :contact_id,
7666
+ :scheduled_time)
7667
+ SENSITIVE = []
7668
+ include Aws::Structure
7669
+ end
7670
+
7671
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactScheduleResponse AWS API Documentation
7672
+ #
7673
+ class UpdateContactScheduleResponse < Aws::EmptyStructure; end
7674
+
7301
7675
  # @note When making an API call, you may pass UpdateHoursOfOperationRequest
7302
7676
  # data as a hash:
7303
7677
  #
@@ -7378,8 +7752,7 @@ module Aws::Connect
7378
7752
  # The type of attribute.
7379
7753
  #
7380
7754
  # <note markdown="1"> Only allowlisted customers can consume USE\_CUSTOM\_TTS\_VOICES. To
7381
- # access this feature, contact Amazon Web Services Support for
7382
- # allowlisting.
7755
+ # access this feature, contact AWS Support for allowlisting.
7383
7756
  #
7384
7757
  # </note>
7385
7758
  # @return [String]
@@ -8151,6 +8524,25 @@ module Aws::Connect
8151
8524
  include Aws::Structure
8152
8525
  end
8153
8526
 
8527
+ # The URL reference.
8528
+ #
8529
+ # @!attribute [rw] name
8530
+ # Identifier of the URL reference.
8531
+ # @return [String]
8532
+ #
8533
+ # @!attribute [rw] value
8534
+ # A valid URL.
8535
+ # @return [String]
8536
+ #
8537
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UrlReference AWS API Documentation
8538
+ #
8539
+ class UrlReference < Struct.new(
8540
+ :name,
8541
+ :value)
8542
+ SENSITIVE = []
8543
+ include Aws::Structure
8544
+ end
8545
+
8154
8546
  # Contains the use case.
8155
8547
  #
8156
8548
  # @!attribute [rw] use_case_id
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-connect/customizations'
48
48
  # @!group service
49
49
  module Aws::Connect
50
50
 
51
- GEM_VERSION = '1.56.0'
51
+ GEM_VERSION = '1.57.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.56.0
4
+ version: 1.57.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-11-04 00:00:00.000000000 Z
11
+ date: 2021-11-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core