aws-sdk-connect 1.55.0 → 1.59.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.
@@ -10,6 +10,38 @@
10
10
  module Aws::Connect
11
11
  module Types
12
12
 
13
+ # You do not have sufficient permissions to perform this action.
14
+ #
15
+ # @!attribute [rw] message
16
+ # @return [String]
17
+ #
18
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AccessDeniedException AWS API Documentation
19
+ #
20
+ class AccessDeniedException < Struct.new(
21
+ :message)
22
+ SENSITIVE = []
23
+ include Aws::Structure
24
+ end
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
+
13
45
  # Contains information about an agent status.
14
46
  #
15
47
  # @!attribute [rw] agent_status_arn
@@ -41,7 +73,8 @@ module Aws::Connect
41
73
  # @return [String]
42
74
  #
43
75
  # @!attribute [rw] tags
44
- # One or more tags.
76
+ # The tags used to organize, track, or control access for this
77
+ # resource.
45
78
  # @return [Hash<String,String>]
46
79
  #
47
80
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AgentStatus AWS API Documentation
@@ -418,6 +451,31 @@ module Aws::Connect
418
451
  include Aws::Structure
419
452
  end
420
453
 
454
+ # Information about the attachment reference if the `referenceType` is
455
+ # `ATTACHMENT`. Otherwise, null.
456
+ #
457
+ # @!attribute [rw] name
458
+ # Identifier of the attachment reference.
459
+ # @return [String]
460
+ #
461
+ # @!attribute [rw] value
462
+ # Contains the location path of the attachment reference.
463
+ # @return [String]
464
+ #
465
+ # @!attribute [rw] status
466
+ # Status of an attachment reference type.
467
+ # @return [String]
468
+ #
469
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AttachmentReference AWS API Documentation
470
+ #
471
+ class AttachmentReference < Struct.new(
472
+ :name,
473
+ :value,
474
+ :status)
475
+ SENSITIVE = []
476
+ include Aws::Structure
477
+ end
478
+
421
479
  # A toggle for an individual feature at the instance level.
422
480
  #
423
481
  # @!attribute [rw] attribute_type
@@ -488,6 +546,95 @@ module Aws::Connect
488
546
  include Aws::Structure
489
547
  end
490
548
 
549
+ # Contains information about a contact.
550
+ #
551
+ # @!attribute [rw] arn
552
+ # The Amazon Resource Name (ARN) for the contact.
553
+ # @return [String]
554
+ #
555
+ # @!attribute [rw] id
556
+ # The identifier for the contact.
557
+ # @return [String]
558
+ #
559
+ # @!attribute [rw] initial_contact_id
560
+ # If this contact is related to other contacts, this is the ID of the
561
+ # initial contact.
562
+ # @return [String]
563
+ #
564
+ # @!attribute [rw] previous_contact_id
565
+ # If this contact is not the first contact, this is the ID of the
566
+ # previous contact.
567
+ # @return [String]
568
+ #
569
+ # @!attribute [rw] initiation_method
570
+ # Indicates how the contact was initiated.
571
+ # @return [String]
572
+ #
573
+ # @!attribute [rw] name
574
+ # The name of the contact.
575
+ # @return [String]
576
+ #
577
+ # @!attribute [rw] description
578
+ # The description of the contact.
579
+ # @return [String]
580
+ #
581
+ # @!attribute [rw] channel
582
+ # How the contact reached your contact center.
583
+ # @return [String]
584
+ #
585
+ # @!attribute [rw] queue_info
586
+ # If this contact was queued, this contains information about the
587
+ # queue.
588
+ # @return [Types::QueueInfo]
589
+ #
590
+ # @!attribute [rw] agent_info
591
+ # Information about the agent who accepted the contact.
592
+ # @return [Types::AgentInfo]
593
+ #
594
+ # @!attribute [rw] initiation_timestamp
595
+ # The date and time this contact was initiated, in UTC time. For
596
+ # `INBOUND`, this is when the contact arrived. For `OUTBOUND`, this is
597
+ # when the agent began dialing. For `CALLBACK`, this is when the
598
+ # callback contact was created. For `TRANSFER` and `QUEUE_TRANSFER`,
599
+ # this is when the transfer was initiated. For `API`, this is when the
600
+ # request arrived.
601
+ # @return [Time]
602
+ #
603
+ # @!attribute [rw] disconnect_timestamp
604
+ # The timestamp when the customer endpoint disconnected from Amazon
605
+ # Connect.
606
+ # @return [Time]
607
+ #
608
+ # @!attribute [rw] last_update_timestamp
609
+ # The timestamp when contact was last updated.
610
+ # @return [Time]
611
+ #
612
+ # @!attribute [rw] scheduled_timestamp
613
+ # The timestamp, in Unix epoch time format, at which to start running
614
+ # the inbound flow.
615
+ # @return [Time]
616
+ #
617
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Contact AWS API Documentation
618
+ #
619
+ class Contact < Struct.new(
620
+ :arn,
621
+ :id,
622
+ :initial_contact_id,
623
+ :previous_contact_id,
624
+ :initiation_method,
625
+ :name,
626
+ :description,
627
+ :channel,
628
+ :queue_info,
629
+ :agent_info,
630
+ :initiation_timestamp,
631
+ :disconnect_timestamp,
632
+ :last_update_timestamp,
633
+ :scheduled_timestamp)
634
+ SENSITIVE = []
635
+ include Aws::Structure
636
+ end
637
+
491
638
  # Contains information about a contact flow.
492
639
  #
493
640
  # @!attribute [rw] arn
@@ -512,6 +659,10 @@ module Aws::Connect
512
659
  # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/create-contact-flow.html#contact-flow-types
513
660
  # @return [String]
514
661
  #
662
+ # @!attribute [rw] state
663
+ # The type of contact flow.
664
+ # @return [String]
665
+ #
515
666
  # @!attribute [rw] description
516
667
  # The description of the contact flow.
517
668
  # @return [String]
@@ -531,6 +682,7 @@ module Aws::Connect
531
682
  :id,
532
683
  :name,
533
684
  :type,
685
+ :state,
534
686
  :description,
535
687
  :content,
536
688
  :tags)
@@ -538,6 +690,85 @@ module Aws::Connect
538
690
  include Aws::Structure
539
691
  end
540
692
 
693
+ # Contains information about a contact flow module.
694
+ #
695
+ # @!attribute [rw] arn
696
+ # The Amazon Resource Name (ARN).
697
+ # @return [String]
698
+ #
699
+ # @!attribute [rw] id
700
+ # The identifier of the contact flow module.
701
+ # @return [String]
702
+ #
703
+ # @!attribute [rw] name
704
+ # The name of the contact flow module.
705
+ # @return [String]
706
+ #
707
+ # @!attribute [rw] content
708
+ # The content of the contact flow module.
709
+ # @return [String]
710
+ #
711
+ # @!attribute [rw] description
712
+ # The description of the contact flow module.
713
+ # @return [String]
714
+ #
715
+ # @!attribute [rw] state
716
+ # The type of contact flow module.
717
+ # @return [String]
718
+ #
719
+ # @!attribute [rw] status
720
+ # The status of the contact flow module.
721
+ # @return [String]
722
+ #
723
+ # @!attribute [rw] tags
724
+ # The tags used to organize, track, or control access for this
725
+ # resource.
726
+ # @return [Hash<String,String>]
727
+ #
728
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactFlowModule AWS API Documentation
729
+ #
730
+ class ContactFlowModule < Struct.new(
731
+ :arn,
732
+ :id,
733
+ :name,
734
+ :content,
735
+ :description,
736
+ :state,
737
+ :status,
738
+ :tags)
739
+ SENSITIVE = []
740
+ include Aws::Structure
741
+ end
742
+
743
+ # Contains summary information about a contact flow.
744
+ #
745
+ # @!attribute [rw] id
746
+ # The identifier of the contact flow module.
747
+ # @return [String]
748
+ #
749
+ # @!attribute [rw] arn
750
+ # The Amazon Resource Name (ARN) of the contact flow module.
751
+ # @return [String]
752
+ #
753
+ # @!attribute [rw] name
754
+ # The name of the contact flow module.
755
+ # @return [String]
756
+ #
757
+ # @!attribute [rw] state
758
+ # The type of contact flow module.
759
+ # @return [String]
760
+ #
761
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactFlowModuleSummary AWS API Documentation
762
+ #
763
+ class ContactFlowModuleSummary < Struct.new(
764
+ :id,
765
+ :arn,
766
+ :name,
767
+ :state)
768
+ SENSITIVE = []
769
+ include Aws::Structure
770
+ end
771
+
541
772
  # The contact flow has not been published.
542
773
  #
543
774
  # @!attribute [rw] message
@@ -576,13 +807,18 @@ module Aws::Connect
576
807
  # The type of contact flow.
577
808
  # @return [String]
578
809
  #
810
+ # @!attribute [rw] contact_flow_state
811
+ # The type of contact flow.
812
+ # @return [String]
813
+ #
579
814
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactFlowSummary AWS API Documentation
580
815
  #
581
816
  class ContactFlowSummary < Struct.new(
582
817
  :id,
583
818
  :arn,
584
819
  :name,
585
- :contact_flow_type)
820
+ :contact_flow_type,
821
+ :contact_flow_state)
586
822
  SENSITIVE = []
587
823
  include Aws::Structure
588
824
  end
@@ -637,7 +873,8 @@ module Aws::Connect
637
873
  # @return [Integer]
638
874
  #
639
875
  # @!attribute [rw] tags
640
- # One or more tags.
876
+ # The tags used to organize, track, or control access for this
877
+ # resource.
641
878
  # @return [Hash<String,String>]
642
879
  #
643
880
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateAgentStatusRequest AWS API Documentation
@@ -670,6 +907,80 @@ module Aws::Connect
670
907
  include Aws::Structure
671
908
  end
672
909
 
910
+ # @note When making an API call, you may pass CreateContactFlowModuleRequest
911
+ # data as a hash:
912
+ #
913
+ # {
914
+ # instance_id: "InstanceId", # required
915
+ # name: "ContactFlowModuleName", # required
916
+ # description: "ContactFlowModuleDescription",
917
+ # content: "ContactFlowModuleContent", # required
918
+ # tags: {
919
+ # "TagKey" => "TagValue",
920
+ # },
921
+ # client_token: "ClientToken",
922
+ # }
923
+ #
924
+ # @!attribute [rw] instance_id
925
+ # The identifier of the Amazon Connect instance. You can find the
926
+ # instanceId in the ARN of the instance.
927
+ # @return [String]
928
+ #
929
+ # @!attribute [rw] name
930
+ # The name of the contact flow module.
931
+ # @return [String]
932
+ #
933
+ # @!attribute [rw] description
934
+ # The description of the contact flow module.
935
+ # @return [String]
936
+ #
937
+ # @!attribute [rw] content
938
+ # The content of the contact flow module.
939
+ # @return [String]
940
+ #
941
+ # @!attribute [rw] tags
942
+ # The tags used to organize, track, or control access for this
943
+ # resource.
944
+ # @return [Hash<String,String>]
945
+ #
946
+ # @!attribute [rw] client_token
947
+ # A unique, case-sensitive identifier that you provide to ensure the
948
+ # idempotency of the request.
949
+ #
950
+ # **A suitable default value is auto-generated.** You should normally
951
+ # not need to pass this option.
952
+ # @return [String]
953
+ #
954
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateContactFlowModuleRequest AWS API Documentation
955
+ #
956
+ class CreateContactFlowModuleRequest < Struct.new(
957
+ :instance_id,
958
+ :name,
959
+ :description,
960
+ :content,
961
+ :tags,
962
+ :client_token)
963
+ SENSITIVE = []
964
+ include Aws::Structure
965
+ end
966
+
967
+ # @!attribute [rw] id
968
+ # The identifier of the contact flow module.
969
+ # @return [String]
970
+ #
971
+ # @!attribute [rw] arn
972
+ # The Amazon Resource Name (ARN) of the contact flow module.
973
+ # @return [String]
974
+ #
975
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateContactFlowModuleResponse AWS API Documentation
976
+ #
977
+ class CreateContactFlowModuleResponse < Struct.new(
978
+ :id,
979
+ :arn)
980
+ SENSITIVE = []
981
+ include Aws::Structure
982
+ end
983
+
673
984
  # @note When making an API call, you may pass CreateContactFlowRequest
674
985
  # data as a hash:
675
986
  #
@@ -793,7 +1104,8 @@ module Aws::Connect
793
1104
  # @return [Array<Types::HoursOfOperationConfig>]
794
1105
  #
795
1106
  # @!attribute [rw] tags
796
- # One or more tags.
1107
+ # The tags used to organize, track, or control access for this
1108
+ # resource.
797
1109
  # @return [Hash<String,String>]
798
1110
  #
799
1111
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateHoursOfOperationRequest AWS API Documentation
@@ -936,7 +1248,8 @@ module Aws::Connect
936
1248
  # @return [String]
937
1249
  #
938
1250
  # @!attribute [rw] tags
939
- # One or more tags.
1251
+ # The tags used to organize, track, or control access for this
1252
+ # resource.
940
1253
  # @return [Hash<String,String>]
941
1254
  #
942
1255
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateIntegrationAssociationRequest AWS API Documentation
@@ -1021,7 +1334,8 @@ module Aws::Connect
1021
1334
  # @return [Array<String>]
1022
1335
  #
1023
1336
  # @!attribute [rw] tags
1024
- # One or more tags.
1337
+ # The tags used to organize, track, or control access for this
1338
+ # resource.
1025
1339
  # @return [Hash<String,String>]
1026
1340
  #
1027
1341
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateQueueRequest AWS API Documentation
@@ -1100,7 +1414,8 @@ module Aws::Connect
1100
1414
  # @return [Types::QuickConnectConfig]
1101
1415
  #
1102
1416
  # @!attribute [rw] tags
1103
- # One or more tags.
1417
+ # The tags used to organize, track, or control access for this
1418
+ # resource.
1104
1419
  # @return [Hash<String,String>]
1105
1420
  #
1106
1421
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateQuickConnectRequest AWS API Documentation
@@ -1225,6 +1540,70 @@ module Aws::Connect
1225
1540
  include Aws::Structure
1226
1541
  end
1227
1542
 
1543
+ # @note When making an API call, you may pass CreateSecurityProfileRequest
1544
+ # data as a hash:
1545
+ #
1546
+ # {
1547
+ # security_profile_name: "SecurityProfileName", # required
1548
+ # description: "SecurityProfileDescription",
1549
+ # permissions: ["SecurityProfilePermission"],
1550
+ # instance_id: "InstanceId", # required
1551
+ # tags: {
1552
+ # "TagKey" => "TagValue",
1553
+ # },
1554
+ # }
1555
+ #
1556
+ # @!attribute [rw] security_profile_name
1557
+ # The name of the security profile.
1558
+ # @return [String]
1559
+ #
1560
+ # @!attribute [rw] description
1561
+ # The description of the security profile.
1562
+ # @return [String]
1563
+ #
1564
+ # @!attribute [rw] permissions
1565
+ # Permissions assigned to the security profile.
1566
+ # @return [Array<String>]
1567
+ #
1568
+ # @!attribute [rw] instance_id
1569
+ # The identifier of the Amazon Connect instance. You can find the
1570
+ # instanceId in the ARN of the instance.
1571
+ # @return [String]
1572
+ #
1573
+ # @!attribute [rw] tags
1574
+ # The tags used to organize, track, or control access for this
1575
+ # resource.
1576
+ # @return [Hash<String,String>]
1577
+ #
1578
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateSecurityProfileRequest AWS API Documentation
1579
+ #
1580
+ class CreateSecurityProfileRequest < Struct.new(
1581
+ :security_profile_name,
1582
+ :description,
1583
+ :permissions,
1584
+ :instance_id,
1585
+ :tags)
1586
+ SENSITIVE = []
1587
+ include Aws::Structure
1588
+ end
1589
+
1590
+ # @!attribute [rw] security_profile_id
1591
+ # The identifier for the security profle.
1592
+ # @return [String]
1593
+ #
1594
+ # @!attribute [rw] security_profile_arn
1595
+ # The Amazon Resource Name (ARN) for the security profile.
1596
+ # @return [String]
1597
+ #
1598
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateSecurityProfileResponse AWS API Documentation
1599
+ #
1600
+ class CreateSecurityProfileResponse < Struct.new(
1601
+ :security_profile_id,
1602
+ :security_profile_arn)
1603
+ SENSITIVE = []
1604
+ include Aws::Structure
1605
+ end
1606
+
1228
1607
  # @note When making an API call, you may pass CreateUseCaseRequest
1229
1608
  # data as a hash:
1230
1609
  #
@@ -1253,7 +1632,8 @@ module Aws::Connect
1253
1632
  # @return [String]
1254
1633
  #
1255
1634
  # @!attribute [rw] tags
1256
- # One or more tags.
1635
+ # The tags used to organize, track, or control access for this
1636
+ # resource.
1257
1637
  # @return [Hash<String,String>]
1258
1638
  #
1259
1639
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateUseCaseRequest AWS API Documentation
@@ -1556,6 +1936,62 @@ module Aws::Connect
1556
1936
  include Aws::Structure
1557
1937
  end
1558
1938
 
1939
+ # @note When making an API call, you may pass DeleteContactFlowModuleRequest
1940
+ # data as a hash:
1941
+ #
1942
+ # {
1943
+ # instance_id: "InstanceId", # required
1944
+ # contact_flow_module_id: "ContactFlowModuleId", # required
1945
+ # }
1946
+ #
1947
+ # @!attribute [rw] instance_id
1948
+ # The identifier of the Amazon Connect instance. You can find the
1949
+ # instanceId in the ARN of the instance.
1950
+ # @return [String]
1951
+ #
1952
+ # @!attribute [rw] contact_flow_module_id
1953
+ # The identifier of the contact flow module.
1954
+ # @return [String]
1955
+ #
1956
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteContactFlowModuleRequest AWS API Documentation
1957
+ #
1958
+ class DeleteContactFlowModuleRequest < Struct.new(
1959
+ :instance_id,
1960
+ :contact_flow_module_id)
1961
+ SENSITIVE = []
1962
+ include Aws::Structure
1963
+ end
1964
+
1965
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteContactFlowModuleResponse AWS API Documentation
1966
+ #
1967
+ class DeleteContactFlowModuleResponse < Aws::EmptyStructure; end
1968
+
1969
+ # @note When making an API call, you may pass DeleteContactFlowRequest
1970
+ # data as a hash:
1971
+ #
1972
+ # {
1973
+ # instance_id: "InstanceId", # required
1974
+ # contact_flow_id: "ContactFlowId", # required
1975
+ # }
1976
+ #
1977
+ # @!attribute [rw] instance_id
1978
+ # The identifier of the Amazon Connect instance. You can find the
1979
+ # instanceId in the ARN of the instance.
1980
+ # @return [String]
1981
+ #
1982
+ # @!attribute [rw] contact_flow_id
1983
+ # The identifier of the contact flow.
1984
+ # @return [String]
1985
+ #
1986
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteContactFlowRequest AWS API Documentation
1987
+ #
1988
+ class DeleteContactFlowRequest < Struct.new(
1989
+ :instance_id,
1990
+ :contact_flow_id)
1991
+ SENSITIVE = []
1992
+ include Aws::Structure
1993
+ end
1994
+
1559
1995
  # @note When making an API call, you may pass DeleteHoursOfOperationRequest
1560
1996
  # data as a hash:
1561
1997
  #
@@ -1621,19 +2057,45 @@ module Aws::Connect
1621
2057
  #
1622
2058
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteIntegrationAssociationRequest AWS API Documentation
1623
2059
  #
1624
- class DeleteIntegrationAssociationRequest < Struct.new(
2060
+ class DeleteIntegrationAssociationRequest < Struct.new(
2061
+ :instance_id,
2062
+ :integration_association_id)
2063
+ SENSITIVE = []
2064
+ include Aws::Structure
2065
+ end
2066
+
2067
+ # @note When making an API call, you may pass DeleteQuickConnectRequest
2068
+ # data as a hash:
2069
+ #
2070
+ # {
2071
+ # instance_id: "InstanceId", # required
2072
+ # quick_connect_id: "QuickConnectId", # required
2073
+ # }
2074
+ #
2075
+ # @!attribute [rw] instance_id
2076
+ # The identifier of the Amazon Connect instance. You can find the
2077
+ # instanceId in the ARN of the instance.
2078
+ # @return [String]
2079
+ #
2080
+ # @!attribute [rw] quick_connect_id
2081
+ # The identifier for the quick connect.
2082
+ # @return [String]
2083
+ #
2084
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteQuickConnectRequest AWS API Documentation
2085
+ #
2086
+ class DeleteQuickConnectRequest < Struct.new(
1625
2087
  :instance_id,
1626
- :integration_association_id)
2088
+ :quick_connect_id)
1627
2089
  SENSITIVE = []
1628
2090
  include Aws::Structure
1629
2091
  end
1630
2092
 
1631
- # @note When making an API call, you may pass DeleteQuickConnectRequest
2093
+ # @note When making an API call, you may pass DeleteSecurityProfileRequest
1632
2094
  # data as a hash:
1633
2095
  #
1634
2096
  # {
1635
2097
  # instance_id: "InstanceId", # required
1636
- # quick_connect_id: "QuickConnectId", # required
2098
+ # security_profile_id: "SecurityProfileId", # required
1637
2099
  # }
1638
2100
  #
1639
2101
  # @!attribute [rw] instance_id
@@ -1641,15 +2103,15 @@ module Aws::Connect
1641
2103
  # instanceId in the ARN of the instance.
1642
2104
  # @return [String]
1643
2105
  #
1644
- # @!attribute [rw] quick_connect_id
1645
- # The identifier for the quick connect.
2106
+ # @!attribute [rw] security_profile_id
2107
+ # The identifier for the security profle.
1646
2108
  # @return [String]
1647
2109
  #
1648
- # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteQuickConnectRequest AWS API Documentation
2110
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteSecurityProfileRequest AWS API Documentation
1649
2111
  #
1650
- class DeleteQuickConnectRequest < Struct.new(
2112
+ class DeleteSecurityProfileRequest < Struct.new(
1651
2113
  :instance_id,
1652
- :quick_connect_id)
2114
+ :security_profile_id)
1653
2115
  SENSITIVE = []
1654
2116
  include Aws::Structure
1655
2117
  end
@@ -1776,6 +2238,44 @@ module Aws::Connect
1776
2238
  include Aws::Structure
1777
2239
  end
1778
2240
 
2241
+ # @note When making an API call, you may pass DescribeContactFlowModuleRequest
2242
+ # data as a hash:
2243
+ #
2244
+ # {
2245
+ # instance_id: "InstanceId", # required
2246
+ # contact_flow_module_id: "ContactFlowModuleId", # required
2247
+ # }
2248
+ #
2249
+ # @!attribute [rw] instance_id
2250
+ # The identifier of the Amazon Connect instance. You can find the
2251
+ # instanceId in the ARN of the instance.
2252
+ # @return [String]
2253
+ #
2254
+ # @!attribute [rw] contact_flow_module_id
2255
+ # The identifier of the contact flow module.
2256
+ # @return [String]
2257
+ #
2258
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContactFlowModuleRequest AWS API Documentation
2259
+ #
2260
+ class DescribeContactFlowModuleRequest < Struct.new(
2261
+ :instance_id,
2262
+ :contact_flow_module_id)
2263
+ SENSITIVE = []
2264
+ include Aws::Structure
2265
+ end
2266
+
2267
+ # @!attribute [rw] contact_flow_module
2268
+ # Information about the contact flow module.
2269
+ # @return [Types::ContactFlowModule]
2270
+ #
2271
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContactFlowModuleResponse AWS API Documentation
2272
+ #
2273
+ class DescribeContactFlowModuleResponse < Struct.new(
2274
+ :contact_flow_module)
2275
+ SENSITIVE = []
2276
+ include Aws::Structure
2277
+ end
2278
+
1779
2279
  # @note When making an API call, you may pass DescribeContactFlowRequest
1780
2280
  # data as a hash:
1781
2281
  #
@@ -1813,6 +2313,44 @@ module Aws::Connect
1813
2313
  include Aws::Structure
1814
2314
  end
1815
2315
 
2316
+ # @note When making an API call, you may pass DescribeContactRequest
2317
+ # data as a hash:
2318
+ #
2319
+ # {
2320
+ # instance_id: "InstanceId", # required
2321
+ # contact_id: "ContactId", # required
2322
+ # }
2323
+ #
2324
+ # @!attribute [rw] instance_id
2325
+ # The identifier of the Amazon Connect instance. You can find the
2326
+ # instanceId in the ARN of the instance.
2327
+ # @return [String]
2328
+ #
2329
+ # @!attribute [rw] contact_id
2330
+ # The identifier of the contact.
2331
+ # @return [String]
2332
+ #
2333
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContactRequest AWS API Documentation
2334
+ #
2335
+ class DescribeContactRequest < Struct.new(
2336
+ :instance_id,
2337
+ :contact_id)
2338
+ SENSITIVE = []
2339
+ include Aws::Structure
2340
+ end
2341
+
2342
+ # @!attribute [rw] contact
2343
+ # Information about the contact.
2344
+ # @return [Types::Contact]
2345
+ #
2346
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContactResponse AWS API Documentation
2347
+ #
2348
+ class DescribeContactResponse < Struct.new(
2349
+ :contact)
2350
+ SENSITIVE = []
2351
+ include Aws::Structure
2352
+ end
2353
+
1816
2354
  # @note When making an API call, you may pass DescribeHoursOfOperationRequest
1817
2355
  # data as a hash:
1818
2356
  #
@@ -2080,6 +2618,44 @@ module Aws::Connect
2080
2618
  include Aws::Structure
2081
2619
  end
2082
2620
 
2621
+ # @note When making an API call, you may pass DescribeSecurityProfileRequest
2622
+ # data as a hash:
2623
+ #
2624
+ # {
2625
+ # security_profile_id: "SecurityProfileId", # required
2626
+ # instance_id: "InstanceId", # required
2627
+ # }
2628
+ #
2629
+ # @!attribute [rw] security_profile_id
2630
+ # The identifier for the security profle.
2631
+ # @return [String]
2632
+ #
2633
+ # @!attribute [rw] instance_id
2634
+ # The identifier of the Amazon Connect instance. You can find the
2635
+ # instanceId in the ARN of the instance.
2636
+ # @return [String]
2637
+ #
2638
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeSecurityProfileRequest AWS API Documentation
2639
+ #
2640
+ class DescribeSecurityProfileRequest < Struct.new(
2641
+ :security_profile_id,
2642
+ :instance_id)
2643
+ SENSITIVE = []
2644
+ include Aws::Structure
2645
+ end
2646
+
2647
+ # @!attribute [rw] security_profile
2648
+ # The security profile.
2649
+ # @return [Types::SecurityProfile]
2650
+ #
2651
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeSecurityProfileResponse AWS API Documentation
2652
+ #
2653
+ class DescribeSecurityProfileResponse < Struct.new(
2654
+ :security_profile)
2655
+ SENSITIVE = []
2656
+ include Aws::Structure
2657
+ end
2658
+
2083
2659
  # @note When making an API call, you may pass DescribeUserHierarchyGroupRequest
2084
2660
  # data as a hash:
2085
2661
  #
@@ -3463,7 +4039,8 @@ module Aws::Connect
3463
4039
  # @return [Array<Types::HoursOfOperationConfig>]
3464
4040
  #
3465
4041
  # @!attribute [rw] tags
3466
- # One or more tags.
4042
+ # The tags used to organize, track, or control access for this
4043
+ # resource.
3467
4044
  # @return [Hash<String,String>]
3468
4045
  #
3469
4046
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HoursOfOperation AWS API Documentation
@@ -3571,6 +4148,19 @@ module Aws::Connect
3571
4148
  include Aws::Structure
3572
4149
  end
3573
4150
 
4151
+ # An entity with the same name already exists.
4152
+ #
4153
+ # @!attribute [rw] message
4154
+ # @return [String]
4155
+ #
4156
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/IdempotencyException AWS API Documentation
4157
+ #
4158
+ class IdempotencyException < Struct.new(
4159
+ :message)
4160
+ SENSITIVE = []
4161
+ include Aws::Structure
4162
+ end
4163
+
3574
4164
  # The Amazon Connect instance.
3575
4165
  #
3576
4166
  # @!attribute [rw] id
@@ -3848,6 +4438,19 @@ module Aws::Connect
3848
4438
  include Aws::Structure
3849
4439
  end
3850
4440
 
4441
+ # The problems with the module. Please fix before trying again.
4442
+ #
4443
+ # @!attribute [rw] problems
4444
+ # @return [Array<Types::ProblemDetail>]
4445
+ #
4446
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/InvalidContactFlowModuleException AWS API Documentation
4447
+ #
4448
+ class InvalidContactFlowModuleException < Struct.new(
4449
+ :problems)
4450
+ SENSITIVE = []
4451
+ include Aws::Structure
4452
+ end
4453
+
3851
4454
  # One or more of the specified parameters are not valid.
3852
4455
  #
3853
4456
  # @!attribute [rw] message
@@ -4209,6 +4812,64 @@ module Aws::Connect
4209
4812
  include Aws::Structure
4210
4813
  end
4211
4814
 
4815
+ # @note When making an API call, you may pass ListContactFlowModulesRequest
4816
+ # data as a hash:
4817
+ #
4818
+ # {
4819
+ # instance_id: "InstanceId", # required
4820
+ # next_token: "NextToken",
4821
+ # max_results: 1,
4822
+ # contact_flow_module_state: "ACTIVE", # accepts ACTIVE, ARCHIVED
4823
+ # }
4824
+ #
4825
+ # @!attribute [rw] instance_id
4826
+ # The identifier of the Amazon Connect instance. You can find the
4827
+ # instanceId in the ARN of the instance.
4828
+ # @return [String]
4829
+ #
4830
+ # @!attribute [rw] next_token
4831
+ # The token for the next set of results. Use the value returned in the
4832
+ # previous response in the next request to retrieve the next set of
4833
+ # results.
4834
+ # @return [String]
4835
+ #
4836
+ # @!attribute [rw] max_results
4837
+ # The maximum number of results to return per page.
4838
+ # @return [Integer]
4839
+ #
4840
+ # @!attribute [rw] contact_flow_module_state
4841
+ # The state of the contact flow module.
4842
+ # @return [String]
4843
+ #
4844
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListContactFlowModulesRequest AWS API Documentation
4845
+ #
4846
+ class ListContactFlowModulesRequest < Struct.new(
4847
+ :instance_id,
4848
+ :next_token,
4849
+ :max_results,
4850
+ :contact_flow_module_state)
4851
+ SENSITIVE = []
4852
+ include Aws::Structure
4853
+ end
4854
+
4855
+ # @!attribute [rw] contact_flow_modules_summary_list
4856
+ # Information about the contact flow module.
4857
+ # @return [Array<Types::ContactFlowModuleSummary>]
4858
+ #
4859
+ # @!attribute [rw] next_token
4860
+ # If there are additional results, this is the token for the next set
4861
+ # of results.
4862
+ # @return [String]
4863
+ #
4864
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListContactFlowModulesResponse AWS API Documentation
4865
+ #
4866
+ class ListContactFlowModulesResponse < Struct.new(
4867
+ :contact_flow_modules_summary_list,
4868
+ :next_token)
4869
+ SENSITIVE = []
4870
+ include Aws::Structure
4871
+ end
4872
+
4212
4873
  # @note When making an API call, you may pass ListContactFlowsRequest
4213
4874
  # data as a hash:
4214
4875
  #
@@ -4267,6 +4928,69 @@ module Aws::Connect
4267
4928
  include Aws::Structure
4268
4929
  end
4269
4930
 
4931
+ # @note When making an API call, you may pass ListContactReferencesRequest
4932
+ # data as a hash:
4933
+ #
4934
+ # {
4935
+ # instance_id: "InstanceId", # required
4936
+ # contact_id: "ContactId", # required
4937
+ # reference_types: ["URL"], # required, accepts URL, ATTACHMENT
4938
+ # next_token: "NextToken",
4939
+ # }
4940
+ #
4941
+ # @!attribute [rw] instance_id
4942
+ # The identifier of the Amazon Connect instance. You can find the
4943
+ # instanceId in the ARN of the instance.
4944
+ # @return [String]
4945
+ #
4946
+ # @!attribute [rw] contact_id
4947
+ # The identifier of the initial contact.
4948
+ # @return [String]
4949
+ #
4950
+ # @!attribute [rw] reference_types
4951
+ # The type of reference.
4952
+ # @return [Array<String>]
4953
+ #
4954
+ # @!attribute [rw] next_token
4955
+ # The token for the next set of results. Use the value returned in the
4956
+ # previous response in the next request to retrieve the next set of
4957
+ # results.
4958
+ #
4959
+ # This is not expected to be set, because the value returned in the
4960
+ # previous response is always null.
4961
+ # @return [String]
4962
+ #
4963
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListContactReferencesRequest AWS API Documentation
4964
+ #
4965
+ class ListContactReferencesRequest < Struct.new(
4966
+ :instance_id,
4967
+ :contact_id,
4968
+ :reference_types,
4969
+ :next_token)
4970
+ SENSITIVE = []
4971
+ include Aws::Structure
4972
+ end
4973
+
4974
+ # @!attribute [rw] reference_summary_list
4975
+ # Information about the contact flows.
4976
+ # @return [Array<Types::ReferenceSummary>]
4977
+ #
4978
+ # @!attribute [rw] next_token
4979
+ # If there are additional results, this is the token for the next set
4980
+ # of results.
4981
+ #
4982
+ # This is always returned as null in the response.
4983
+ # @return [String]
4984
+ #
4985
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListContactReferencesResponse AWS API Documentation
4986
+ #
4987
+ class ListContactReferencesResponse < Struct.new(
4988
+ :reference_summary_list,
4989
+ :next_token)
4990
+ SENSITIVE = []
4991
+ include Aws::Structure
4992
+ end
4993
+
4270
4994
  # @note When making an API call, you may pass ListHoursOfOperationsRequest
4271
4995
  # data as a hash:
4272
4996
  #
@@ -4490,6 +5214,7 @@ module Aws::Connect
4490
5214
  # @return [String]
4491
5215
  #
4492
5216
  # @!attribute [rw] integration_type
5217
+ # The integration type.
4493
5218
  # @return [String]
4494
5219
  #
4495
5220
  # @!attribute [rw] next_token
@@ -5091,6 +5816,64 @@ module Aws::Connect
5091
5816
  include Aws::Structure
5092
5817
  end
5093
5818
 
5819
+ # @note When making an API call, you may pass ListSecurityProfilePermissionsRequest
5820
+ # data as a hash:
5821
+ #
5822
+ # {
5823
+ # security_profile_id: "SecurityProfileId", # required
5824
+ # instance_id: "InstanceId", # required
5825
+ # next_token: "NextToken",
5826
+ # max_results: 1,
5827
+ # }
5828
+ #
5829
+ # @!attribute [rw] security_profile_id
5830
+ # The identifier for the security profle.
5831
+ # @return [String]
5832
+ #
5833
+ # @!attribute [rw] instance_id
5834
+ # The identifier of the Amazon Connect instance. You can find the
5835
+ # instanceId in the ARN of the instance.
5836
+ # @return [String]
5837
+ #
5838
+ # @!attribute [rw] next_token
5839
+ # The token for the next set of results. Use the value returned in the
5840
+ # previous response in the next request to retrieve the next set of
5841
+ # results.
5842
+ # @return [String]
5843
+ #
5844
+ # @!attribute [rw] max_results
5845
+ # The maximum number of results to return per page.
5846
+ # @return [Integer]
5847
+ #
5848
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListSecurityProfilePermissionsRequest AWS API Documentation
5849
+ #
5850
+ class ListSecurityProfilePermissionsRequest < Struct.new(
5851
+ :security_profile_id,
5852
+ :instance_id,
5853
+ :next_token,
5854
+ :max_results)
5855
+ SENSITIVE = []
5856
+ include Aws::Structure
5857
+ end
5858
+
5859
+ # @!attribute [rw] permissions
5860
+ # The permissions granted to the security profile.
5861
+ # @return [Array<String>]
5862
+ #
5863
+ # @!attribute [rw] next_token
5864
+ # If there are additional results, this is the token for the next set
5865
+ # of results.
5866
+ # @return [String]
5867
+ #
5868
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListSecurityProfilePermissionsResponse AWS API Documentation
5869
+ #
5870
+ class ListSecurityProfilePermissionsResponse < Struct.new(
5871
+ :permissions,
5872
+ :next_token)
5873
+ SENSITIVE = []
5874
+ include Aws::Structure
5875
+ end
5876
+
5094
5877
  # @note When making an API call, you may pass ListSecurityProfilesRequest
5095
5878
  # data as a hash:
5096
5879
  #
@@ -5573,7 +6356,8 @@ module Aws::Connect
5573
6356
  # @return [String]
5574
6357
  #
5575
6358
  # @!attribute [rw] tags
5576
- # One or more tags.
6359
+ # The tags used to organize, track, or control access for this
6360
+ # resource.
5577
6361
  # @return [Hash<String,String>]
5578
6362
  #
5579
6363
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Queue AWS API Documentation
@@ -5592,6 +6376,25 @@ module Aws::Connect
5592
6376
  include Aws::Structure
5593
6377
  end
5594
6378
 
6379
+ # If this contact was queued, this contains information about the queue.
6380
+ #
6381
+ # @!attribute [rw] id
6382
+ # The identifier of the agent who accepted the contact.
6383
+ # @return [String]
6384
+ #
6385
+ # @!attribute [rw] enqueue_timestamp
6386
+ # The timestamp when the contact was added to the queue.
6387
+ # @return [Time]
6388
+ #
6389
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/QueueInfo AWS API Documentation
6390
+ #
6391
+ class QueueInfo < Struct.new(
6392
+ :id,
6393
+ :enqueue_timestamp)
6394
+ SENSITIVE = []
6395
+ include Aws::Structure
6396
+ end
6397
+
5595
6398
  # Contains information about a queue for a quick connect. The contact
5596
6399
  # flow must be of type Transfer to Queue.
5597
6400
  #
@@ -5692,7 +6495,8 @@ module Aws::Connect
5692
6495
  # @return [Types::QuickConnectConfig]
5693
6496
  #
5694
6497
  # @!attribute [rw] tags
5695
- # One or more tags.
6498
+ # The tags used to organize, track, or control access for this
6499
+ # resource.
5696
6500
  # @return [Hash<String,String>]
5697
6501
  #
5698
6502
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/QuickConnect AWS API Documentation
@@ -5801,16 +6605,18 @@ module Aws::Connect
5801
6605
  #
5802
6606
  # {
5803
6607
  # value: "ReferenceValue", # required
5804
- # type: "URL", # required, accepts URL
6608
+ # type: "URL", # required, accepts URL, ATTACHMENT
5805
6609
  # }
5806
6610
  #
5807
6611
  # @!attribute [rw] value
5808
- # A formatted URL that displays to an agent in the Contact Control
5809
- # Panel (CCP)
6612
+ # A valid value for the reference. For example, for a URL reference, a
6613
+ # formatted URL that is displayed to an agent in the Contact Control
6614
+ # Panel (CCP).
5810
6615
  # @return [String]
5811
6616
  #
5812
6617
  # @!attribute [rw] type
5813
- # A valid URL.
6618
+ # The type of the reference. Only `URL` type can be added or updated
6619
+ # on a contact.
5814
6620
  # @return [String]
5815
6621
  #
5816
6622
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Reference AWS API Documentation
@@ -5822,6 +6628,37 @@ module Aws::Connect
5822
6628
  include Aws::Structure
5823
6629
  end
5824
6630
 
6631
+ # Contains summary information about a reference. `ReferenceSummary`
6632
+ # contains only one non null field between the URL and attachment based
6633
+ # on the reference type.
6634
+ #
6635
+ # @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.
6636
+ #
6637
+ # @!attribute [rw] url
6638
+ # Information about the URL reference if the `referenceType` is `URL`.
6639
+ # Otherwise, null.
6640
+ # @return [Types::UrlReference]
6641
+ #
6642
+ # @!attribute [rw] attachment
6643
+ # Information about the attachment reference if the `referenceType` is
6644
+ # `ATTACHMENT`. Otherwise, null.
6645
+ # @return [Types::AttachmentReference]
6646
+ #
6647
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ReferenceSummary AWS API Documentation
6648
+ #
6649
+ class ReferenceSummary < Struct.new(
6650
+ :url,
6651
+ :attachment,
6652
+ :unknown)
6653
+ SENSITIVE = []
6654
+ include Aws::Structure
6655
+ include Aws::Structure::Union
6656
+
6657
+ class Url < ReferenceSummary; end
6658
+ class Attachment < ReferenceSummary; end
6659
+ class Unknown < ReferenceSummary; end
6660
+ end
6661
+
5825
6662
  # A resource already has that name.
5826
6663
  #
5827
6664
  # @!attribute [rw] message
@@ -6174,6 +7011,46 @@ module Aws::Connect
6174
7011
  include Aws::Structure
6175
7012
  end
6176
7013
 
7014
+ # Contains information about a security profile.
7015
+ #
7016
+ # @!attribute [rw] id
7017
+ # The identifier for the security profile.
7018
+ # @return [String]
7019
+ #
7020
+ # @!attribute [rw] organization_resource_id
7021
+ # The organization resource identifier for the security profile.
7022
+ # @return [String]
7023
+ #
7024
+ # @!attribute [rw] arn
7025
+ # The Amazon Resource Name (ARN) for the secruity profile.
7026
+ # @return [String]
7027
+ #
7028
+ # @!attribute [rw] security_profile_name
7029
+ # The name for the security profile.
7030
+ # @return [String]
7031
+ #
7032
+ # @!attribute [rw] description
7033
+ # The description of the security profile.
7034
+ # @return [String]
7035
+ #
7036
+ # @!attribute [rw] tags
7037
+ # The tags used to organize, track, or control access for this
7038
+ # resource.
7039
+ # @return [Hash<String,String>]
7040
+ #
7041
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SecurityProfile AWS API Documentation
7042
+ #
7043
+ class SecurityProfile < Struct.new(
7044
+ :id,
7045
+ :organization_resource_id,
7046
+ :arn,
7047
+ :security_profile_name,
7048
+ :description,
7049
+ :tags)
7050
+ SENSITIVE = []
7051
+ include Aws::Structure
7052
+ end
7053
+
6177
7054
  # Contains information about a security profile.
6178
7055
  #
6179
7056
  # @!attribute [rw] id
@@ -6551,11 +7428,12 @@ module Aws::Connect
6551
7428
  # references: {
6552
7429
  # "ReferenceKey" => {
6553
7430
  # value: "ReferenceValue", # required
6554
- # type: "URL", # required, accepts URL
7431
+ # type: "URL", # required, accepts URL, ATTACHMENT
6555
7432
  # },
6556
7433
  # },
6557
7434
  # description: "Description",
6558
7435
  # client_token: "ClientToken",
7436
+ # scheduled_time: Time.now,
6559
7437
  # }
6560
7438
  #
6561
7439
  # @!attribute [rw] instance_id
@@ -6611,6 +7489,12 @@ module Aws::Connect
6611
7489
  # not need to pass this option.
6612
7490
  # @return [String]
6613
7491
  #
7492
+ # @!attribute [rw] scheduled_time
7493
+ # The timestamp, in Unix Epoch seconds format, at which to start
7494
+ # running the inbound contact flow. The scheduled time cannot be in
7495
+ # the past. It must be within up to 6 days in future.
7496
+ # @return [Time]
7497
+ #
6614
7498
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartTaskContactRequest AWS API Documentation
6615
7499
  #
6616
7500
  class StartTaskContactRequest < Struct.new(
@@ -6621,7 +7505,8 @@ module Aws::Connect
6621
7505
  :name,
6622
7506
  :references,
6623
7507
  :description,
6624
- :client_token)
7508
+ :client_token,
7509
+ :scheduled_time)
6625
7510
  SENSITIVE = []
6626
7511
  include Aws::Structure
6627
7512
  end
@@ -7011,6 +7896,134 @@ module Aws::Connect
7011
7896
  include Aws::Structure
7012
7897
  end
7013
7898
 
7899
+ # @note When making an API call, you may pass UpdateContactFlowMetadataRequest
7900
+ # data as a hash:
7901
+ #
7902
+ # {
7903
+ # instance_id: "InstanceId", # required
7904
+ # contact_flow_id: "ContactFlowId", # required
7905
+ # name: "ContactFlowName",
7906
+ # description: "ContactFlowDescription",
7907
+ # contact_flow_state: "ACTIVE", # accepts ACTIVE, ARCHIVED
7908
+ # }
7909
+ #
7910
+ # @!attribute [rw] instance_id
7911
+ # The identifier of the Amazon Connect instance. You can find the
7912
+ # instanceId in the ARN of the instance.
7913
+ # @return [String]
7914
+ #
7915
+ # @!attribute [rw] contact_flow_id
7916
+ # The identifier of the contact flow.
7917
+ # @return [String]
7918
+ #
7919
+ # @!attribute [rw] name
7920
+ # TThe name of the contact flow.
7921
+ # @return [String]
7922
+ #
7923
+ # @!attribute [rw] description
7924
+ # The description of the contact flow.
7925
+ # @return [String]
7926
+ #
7927
+ # @!attribute [rw] contact_flow_state
7928
+ # The state of contact flow.
7929
+ # @return [String]
7930
+ #
7931
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactFlowMetadataRequest AWS API Documentation
7932
+ #
7933
+ class UpdateContactFlowMetadataRequest < Struct.new(
7934
+ :instance_id,
7935
+ :contact_flow_id,
7936
+ :name,
7937
+ :description,
7938
+ :contact_flow_state)
7939
+ SENSITIVE = []
7940
+ include Aws::Structure
7941
+ end
7942
+
7943
+ # @note When making an API call, you may pass UpdateContactFlowModuleContentRequest
7944
+ # data as a hash:
7945
+ #
7946
+ # {
7947
+ # instance_id: "InstanceId", # required
7948
+ # contact_flow_module_id: "ContactFlowModuleId", # required
7949
+ # content: "ContactFlowModuleContent", # required
7950
+ # }
7951
+ #
7952
+ # @!attribute [rw] instance_id
7953
+ # The identifier of the Amazon Connect instance. You can find the
7954
+ # instanceId in the ARN of the instance.
7955
+ # @return [String]
7956
+ #
7957
+ # @!attribute [rw] contact_flow_module_id
7958
+ # The identifier of the contact flow module.
7959
+ # @return [String]
7960
+ #
7961
+ # @!attribute [rw] content
7962
+ # The content of the contact flow module.
7963
+ # @return [String]
7964
+ #
7965
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactFlowModuleContentRequest AWS API Documentation
7966
+ #
7967
+ class UpdateContactFlowModuleContentRequest < Struct.new(
7968
+ :instance_id,
7969
+ :contact_flow_module_id,
7970
+ :content)
7971
+ SENSITIVE = []
7972
+ include Aws::Structure
7973
+ end
7974
+
7975
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactFlowModuleContentResponse AWS API Documentation
7976
+ #
7977
+ class UpdateContactFlowModuleContentResponse < Aws::EmptyStructure; end
7978
+
7979
+ # @note When making an API call, you may pass UpdateContactFlowModuleMetadataRequest
7980
+ # data as a hash:
7981
+ #
7982
+ # {
7983
+ # instance_id: "InstanceId", # required
7984
+ # contact_flow_module_id: "ContactFlowModuleId", # required
7985
+ # name: "ContactFlowModuleName",
7986
+ # description: "ContactFlowModuleDescription",
7987
+ # state: "ACTIVE", # accepts ACTIVE, ARCHIVED
7988
+ # }
7989
+ #
7990
+ # @!attribute [rw] instance_id
7991
+ # The identifier of the Amazon Connect instance. You can find the
7992
+ # instanceId in the ARN of the instance.
7993
+ # @return [String]
7994
+ #
7995
+ # @!attribute [rw] contact_flow_module_id
7996
+ # The identifier of the contact flow module.
7997
+ # @return [String]
7998
+ #
7999
+ # @!attribute [rw] name
8000
+ # The name of the contact flow module.
8001
+ # @return [String]
8002
+ #
8003
+ # @!attribute [rw] description
8004
+ # The description of the contact flow module.
8005
+ # @return [String]
8006
+ #
8007
+ # @!attribute [rw] state
8008
+ # The state of contact flow module.
8009
+ # @return [String]
8010
+ #
8011
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactFlowModuleMetadataRequest AWS API Documentation
8012
+ #
8013
+ class UpdateContactFlowModuleMetadataRequest < Struct.new(
8014
+ :instance_id,
8015
+ :contact_flow_module_id,
8016
+ :name,
8017
+ :description,
8018
+ :state)
8019
+ SENSITIVE = []
8020
+ include Aws::Structure
8021
+ end
8022
+
8023
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactFlowModuleMetadataResponse AWS API Documentation
8024
+ #
8025
+ class UpdateContactFlowModuleMetadataResponse < Aws::EmptyStructure; end
8026
+
7014
8027
  # @note When making an API call, you may pass UpdateContactFlowNameRequest
7015
8028
  # data as a hash:
7016
8029
  #
@@ -7048,6 +8061,99 @@ module Aws::Connect
7048
8061
  include Aws::Structure
7049
8062
  end
7050
8063
 
8064
+ # @note When making an API call, you may pass UpdateContactRequest
8065
+ # data as a hash:
8066
+ #
8067
+ # {
8068
+ # instance_id: "InstanceId", # required
8069
+ # contact_id: "ContactId", # required
8070
+ # name: "Name",
8071
+ # description: "Description",
8072
+ # references: {
8073
+ # "ReferenceKey" => {
8074
+ # value: "ReferenceValue", # required
8075
+ # type: "URL", # required, accepts URL, ATTACHMENT
8076
+ # },
8077
+ # },
8078
+ # }
8079
+ #
8080
+ # @!attribute [rw] instance_id
8081
+ # The identifier of the Amazon Connect instance. You can find the
8082
+ # instanceId in the ARN of the instance.
8083
+ # @return [String]
8084
+ #
8085
+ # @!attribute [rw] contact_id
8086
+ # The identifier of the contact. This is the identifier of the contact
8087
+ # associated with the first interaction with your contact center.
8088
+ # @return [String]
8089
+ #
8090
+ # @!attribute [rw] name
8091
+ # The name of the contact.
8092
+ # @return [String]
8093
+ #
8094
+ # @!attribute [rw] description
8095
+ # The description of the contact.
8096
+ # @return [String]
8097
+ #
8098
+ # @!attribute [rw] references
8099
+ # A formatted URL that is shown to an agent in the Contact Control
8100
+ # Panel (CCP).
8101
+ # @return [Hash<String,Types::Reference>]
8102
+ #
8103
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactRequest AWS API Documentation
8104
+ #
8105
+ class UpdateContactRequest < Struct.new(
8106
+ :instance_id,
8107
+ :contact_id,
8108
+ :name,
8109
+ :description,
8110
+ :references)
8111
+ SENSITIVE = []
8112
+ include Aws::Structure
8113
+ end
8114
+
8115
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactResponse AWS API Documentation
8116
+ #
8117
+ class UpdateContactResponse < Aws::EmptyStructure; end
8118
+
8119
+ # @note When making an API call, you may pass UpdateContactScheduleRequest
8120
+ # data as a hash:
8121
+ #
8122
+ # {
8123
+ # instance_id: "InstanceId", # required
8124
+ # contact_id: "ContactId", # required
8125
+ # scheduled_time: Time.now, # required
8126
+ # }
8127
+ #
8128
+ # @!attribute [rw] instance_id
8129
+ # The identifier of the Amazon Connect instance. You can find the
8130
+ # instanceId in the ARN of the instance.
8131
+ # @return [String]
8132
+ #
8133
+ # @!attribute [rw] contact_id
8134
+ # The identifier of the contact.
8135
+ # @return [String]
8136
+ #
8137
+ # @!attribute [rw] scheduled_time
8138
+ # The timestamp, in Unix Epoch seconds format, at which to start
8139
+ # running the inbound contact flow. The scheduled time cannot be in
8140
+ # the past. It must be within up to 6 days in future.
8141
+ # @return [Time]
8142
+ #
8143
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactScheduleRequest AWS API Documentation
8144
+ #
8145
+ class UpdateContactScheduleRequest < Struct.new(
8146
+ :instance_id,
8147
+ :contact_id,
8148
+ :scheduled_time)
8149
+ SENSITIVE = []
8150
+ include Aws::Structure
8151
+ end
8152
+
8153
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactScheduleResponse AWS API Documentation
8154
+ #
8155
+ class UpdateContactScheduleResponse < Aws::EmptyStructure; end
8156
+
7051
8157
  # @note When making an API call, you may pass UpdateHoursOfOperationRequest
7052
8158
  # data as a hash:
7053
8159
  #
@@ -7618,6 +8724,44 @@ module Aws::Connect
7618
8724
  include Aws::Structure
7619
8725
  end
7620
8726
 
8727
+ # @note When making an API call, you may pass UpdateSecurityProfileRequest
8728
+ # data as a hash:
8729
+ #
8730
+ # {
8731
+ # description: "SecurityProfileDescription",
8732
+ # permissions: ["SecurityProfilePermission"],
8733
+ # security_profile_id: "SecurityProfileId", # required
8734
+ # instance_id: "InstanceId", # required
8735
+ # }
8736
+ #
8737
+ # @!attribute [rw] description
8738
+ # The description of the security profile.
8739
+ # @return [String]
8740
+ #
8741
+ # @!attribute [rw] permissions
8742
+ # The permissions granted to a security profile.
8743
+ # @return [Array<String>]
8744
+ #
8745
+ # @!attribute [rw] security_profile_id
8746
+ # The identifier for the security profle.
8747
+ # @return [String]
8748
+ #
8749
+ # @!attribute [rw] instance_id
8750
+ # The identifier of the Amazon Connect instance. You can find the
8751
+ # instanceId in the ARN of the instance.
8752
+ # @return [String]
8753
+ #
8754
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateSecurityProfileRequest AWS API Documentation
8755
+ #
8756
+ class UpdateSecurityProfileRequest < Struct.new(
8757
+ :description,
8758
+ :permissions,
8759
+ :security_profile_id,
8760
+ :instance_id)
8761
+ SENSITIVE = []
8762
+ include Aws::Structure
8763
+ end
8764
+
7621
8765
  # @note When making an API call, you may pass UpdateUserHierarchyGroupNameRequest
7622
8766
  # data as a hash:
7623
8767
  #
@@ -7862,6 +9006,25 @@ module Aws::Connect
7862
9006
  include Aws::Structure
7863
9007
  end
7864
9008
 
9009
+ # The URL reference.
9010
+ #
9011
+ # @!attribute [rw] name
9012
+ # Identifier of the URL reference.
9013
+ # @return [String]
9014
+ #
9015
+ # @!attribute [rw] value
9016
+ # A valid URL.
9017
+ # @return [String]
9018
+ #
9019
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UrlReference AWS API Documentation
9020
+ #
9021
+ class UrlReference < Struct.new(
9022
+ :name,
9023
+ :value)
9024
+ SENSITIVE = []
9025
+ include Aws::Structure
9026
+ end
9027
+
7865
9028
  # Contains the use case.
7866
9029
  #
7867
9030
  # @!attribute [rw] use_case_id