aws-sdk-connect 1.123.0 → 1.125.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +754 -53
- data/lib/aws-sdk-connect/client_api.rb +422 -0
- data/lib/aws-sdk-connect/endpoints.rb +168 -0
- data/lib/aws-sdk-connect/errors.rb +16 -0
- data/lib/aws-sdk-connect/plugins/endpoints.rb +24 -0
- data/lib/aws-sdk-connect/types.rb +842 -22
- data/lib/aws-sdk-connect.rb +1 -1
- metadata +2 -2
@@ -88,6 +88,20 @@ module Aws::Connect
|
|
88
88
|
include Aws::Structure
|
89
89
|
end
|
90
90
|
|
91
|
+
# The distribution of agents between the instance and its replica(s).
|
92
|
+
#
|
93
|
+
# @!attribute [rw] distributions
|
94
|
+
# Information about traffic distributions.
|
95
|
+
# @return [Array<Types::Distribution>]
|
96
|
+
#
|
97
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AgentConfig AWS API Documentation
|
98
|
+
#
|
99
|
+
class AgentConfig < Struct.new(
|
100
|
+
:distributions)
|
101
|
+
SENSITIVE = []
|
102
|
+
include Aws::Structure
|
103
|
+
end
|
104
|
+
|
91
105
|
# Information about the [contact][1] associated to the user.
|
92
106
|
#
|
93
107
|
#
|
@@ -586,6 +600,41 @@ module Aws::Connect
|
|
586
600
|
include Aws::Structure
|
587
601
|
end
|
588
602
|
|
603
|
+
# @!attribute [rw] traffic_distribution_group_id
|
604
|
+
# The identifier of the traffic distribution group. This can be the ID
|
605
|
+
# or the ARN if the API is being called in the Region where the
|
606
|
+
# traffic distribution group was created. The ARN must be provided if
|
607
|
+
# the call is from the replicated Region.
|
608
|
+
# @return [String]
|
609
|
+
#
|
610
|
+
# @!attribute [rw] user_id
|
611
|
+
# The identifier of the user account. This can be the ID or the ARN of
|
612
|
+
# the user.
|
613
|
+
# @return [String]
|
614
|
+
#
|
615
|
+
# @!attribute [rw] instance_id
|
616
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
617
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
618
|
+
#
|
619
|
+
#
|
620
|
+
#
|
621
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
622
|
+
# @return [String]
|
623
|
+
#
|
624
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateTrafficDistributionGroupUserRequest AWS API Documentation
|
625
|
+
#
|
626
|
+
class AssociateTrafficDistributionGroupUserRequest < Struct.new(
|
627
|
+
:traffic_distribution_group_id,
|
628
|
+
:user_id,
|
629
|
+
:instance_id)
|
630
|
+
SENSITIVE = []
|
631
|
+
include Aws::Structure
|
632
|
+
end
|
633
|
+
|
634
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateTrafficDistributionGroupUserResponse AWS API Documentation
|
635
|
+
#
|
636
|
+
class AssociateTrafficDistributionGroupUserResponse < Aws::EmptyStructure; end
|
637
|
+
|
589
638
|
# Information about a reference when the `referenceType` is
|
590
639
|
# `ATTACHMENT`. Otherwise, null.
|
591
640
|
#
|
@@ -1192,7 +1241,7 @@ module Aws::Connect
|
|
1192
1241
|
end
|
1193
1242
|
|
1194
1243
|
# The contact with the specified ID is not active or does not exist.
|
1195
|
-
# Applies to Voice calls only, not to Chat
|
1244
|
+
# Applies to Voice calls only, not to Chat or Task contacts.
|
1196
1245
|
#
|
1197
1246
|
# @!attribute [rw] message
|
1198
1247
|
# The message.
|
@@ -1996,8 +2045,8 @@ module Aws::Connect
|
|
1996
2045
|
#
|
1997
2046
|
# @!attribute [rw] agent_availability_timer
|
1998
2047
|
# Whether agents with this routing profile will have their routing
|
1999
|
-
# order calculated based on *
|
2000
|
-
#
|
2048
|
+
# order calculated based on *longest idle time* or *time since their
|
2049
|
+
# last inbound contact*.
|
2001
2050
|
# @return [String]
|
2002
2051
|
#
|
2003
2052
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateRoutingProfileRequest AWS API Documentation
|
@@ -2539,6 +2588,111 @@ module Aws::Connect
|
|
2539
2588
|
include Aws::Structure
|
2540
2589
|
end
|
2541
2590
|
|
2591
|
+
# @!attribute [rw] instance_id
|
2592
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2593
|
+
# instanceId in the ARN of the instance.
|
2594
|
+
# @return [String]
|
2595
|
+
#
|
2596
|
+
# @!attribute [rw] client_token
|
2597
|
+
# A unique Id for each create view request to avoid duplicate view
|
2598
|
+
# creation. For example, the view is idempotent ClientToken is
|
2599
|
+
# provided.
|
2600
|
+
# @return [String]
|
2601
|
+
#
|
2602
|
+
# @!attribute [rw] status
|
2603
|
+
# Indicates the view status as either `SAVED` or `PUBLISHED`. The
|
2604
|
+
# `PUBLISHED` status will initiate validation on the content.
|
2605
|
+
# @return [String]
|
2606
|
+
#
|
2607
|
+
# @!attribute [rw] content
|
2608
|
+
# View content containing all content necessary to render a view
|
2609
|
+
# except for runtime input data.
|
2610
|
+
#
|
2611
|
+
# The total uncompressed content has a maximum file size of 400kB.
|
2612
|
+
# @return [Types::ViewInputContent]
|
2613
|
+
#
|
2614
|
+
# @!attribute [rw] description
|
2615
|
+
# The description of the view.
|
2616
|
+
# @return [String]
|
2617
|
+
#
|
2618
|
+
# @!attribute [rw] name
|
2619
|
+
# The name of the view.
|
2620
|
+
# @return [String]
|
2621
|
+
#
|
2622
|
+
# @!attribute [rw] tags
|
2623
|
+
# The tags associated with the view resource (not specific to view
|
2624
|
+
# version).These tags can be used to organize, track, or control
|
2625
|
+
# access for this resource. For example, \\\{ "tags":
|
2626
|
+
# \\\{"key1":"value1", "key2":"value2"\\} \\}.
|
2627
|
+
# @return [Hash<String,String>]
|
2628
|
+
#
|
2629
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateViewRequest AWS API Documentation
|
2630
|
+
#
|
2631
|
+
class CreateViewRequest < Struct.new(
|
2632
|
+
:instance_id,
|
2633
|
+
:client_token,
|
2634
|
+
:status,
|
2635
|
+
:content,
|
2636
|
+
:description,
|
2637
|
+
:name,
|
2638
|
+
:tags)
|
2639
|
+
SENSITIVE = [:name]
|
2640
|
+
include Aws::Structure
|
2641
|
+
end
|
2642
|
+
|
2643
|
+
# @!attribute [rw] view
|
2644
|
+
# A view resource object. Contains metadata and content necessary to
|
2645
|
+
# render the view.
|
2646
|
+
# @return [Types::View]
|
2647
|
+
#
|
2648
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateViewResponse AWS API Documentation
|
2649
|
+
#
|
2650
|
+
class CreateViewResponse < Struct.new(
|
2651
|
+
:view)
|
2652
|
+
SENSITIVE = []
|
2653
|
+
include Aws::Structure
|
2654
|
+
end
|
2655
|
+
|
2656
|
+
# @!attribute [rw] instance_id
|
2657
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2658
|
+
# instanceId in the ARN of the instance.
|
2659
|
+
# @return [String]
|
2660
|
+
#
|
2661
|
+
# @!attribute [rw] view_id
|
2662
|
+
# The identifier of the view. Both `ViewArn` and `ViewId` can be used.
|
2663
|
+
# @return [String]
|
2664
|
+
#
|
2665
|
+
# @!attribute [rw] version_description
|
2666
|
+
# The description for the version being published.
|
2667
|
+
# @return [String]
|
2668
|
+
#
|
2669
|
+
# @!attribute [rw] view_content_sha_256
|
2670
|
+
# Indicates the checksum value of the latest published view content.
|
2671
|
+
# @return [String]
|
2672
|
+
#
|
2673
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateViewVersionRequest AWS API Documentation
|
2674
|
+
#
|
2675
|
+
class CreateViewVersionRequest < Struct.new(
|
2676
|
+
:instance_id,
|
2677
|
+
:view_id,
|
2678
|
+
:version_description,
|
2679
|
+
:view_content_sha_256)
|
2680
|
+
SENSITIVE = []
|
2681
|
+
include Aws::Structure
|
2682
|
+
end
|
2683
|
+
|
2684
|
+
# @!attribute [rw] view
|
2685
|
+
# All view data is contained within the View object.
|
2686
|
+
# @return [Types::View]
|
2687
|
+
#
|
2688
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateViewVersionResponse AWS API Documentation
|
2689
|
+
#
|
2690
|
+
class CreateViewVersionResponse < Struct.new(
|
2691
|
+
:view)
|
2692
|
+
SENSITIVE = []
|
2693
|
+
include Aws::Structure
|
2694
|
+
end
|
2695
|
+
|
2542
2696
|
# @!attribute [rw] client_token
|
2543
2697
|
# A unique, case-sensitive identifier that you provide to ensure the
|
2544
2698
|
# idempotency of the request. If not provided, the Amazon Web Services
|
@@ -3286,6 +3440,55 @@ module Aws::Connect
|
|
3286
3440
|
include Aws::Structure
|
3287
3441
|
end
|
3288
3442
|
|
3443
|
+
# @!attribute [rw] instance_id
|
3444
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3445
|
+
# instanceId in the ARN of the instance.
|
3446
|
+
# @return [String]
|
3447
|
+
#
|
3448
|
+
# @!attribute [rw] view_id
|
3449
|
+
# The identifier of the view. Both `ViewArn` and `ViewId` can be used.
|
3450
|
+
# @return [String]
|
3451
|
+
#
|
3452
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteViewRequest AWS API Documentation
|
3453
|
+
#
|
3454
|
+
class DeleteViewRequest < Struct.new(
|
3455
|
+
:instance_id,
|
3456
|
+
:view_id)
|
3457
|
+
SENSITIVE = []
|
3458
|
+
include Aws::Structure
|
3459
|
+
end
|
3460
|
+
|
3461
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteViewResponse AWS API Documentation
|
3462
|
+
#
|
3463
|
+
class DeleteViewResponse < Aws::EmptyStructure; end
|
3464
|
+
|
3465
|
+
# @!attribute [rw] instance_id
|
3466
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3467
|
+
# instanceId in the ARN of the instance.
|
3468
|
+
# @return [String]
|
3469
|
+
#
|
3470
|
+
# @!attribute [rw] view_id
|
3471
|
+
# The identifier of the view. Both `ViewArn` and `ViewId` can be used.
|
3472
|
+
# @return [String]
|
3473
|
+
#
|
3474
|
+
# @!attribute [rw] view_version
|
3475
|
+
# The version number of the view.
|
3476
|
+
# @return [Integer]
|
3477
|
+
#
|
3478
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteViewVersionRequest AWS API Documentation
|
3479
|
+
#
|
3480
|
+
class DeleteViewVersionRequest < Struct.new(
|
3481
|
+
:instance_id,
|
3482
|
+
:view_id,
|
3483
|
+
:view_version)
|
3484
|
+
SENSITIVE = []
|
3485
|
+
include Aws::Structure
|
3486
|
+
end
|
3487
|
+
|
3488
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteViewVersionResponse AWS API Documentation
|
3489
|
+
#
|
3490
|
+
class DeleteViewVersionResponse < Aws::EmptyStructure; end
|
3491
|
+
|
3289
3492
|
# @!attribute [rw] instance_id
|
3290
3493
|
# The identifier of the Amazon Connect instance. You can [find the
|
3291
3494
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -4030,6 +4233,37 @@ module Aws::Connect
|
|
4030
4233
|
include Aws::Structure
|
4031
4234
|
end
|
4032
4235
|
|
4236
|
+
# @!attribute [rw] instance_id
|
4237
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4238
|
+
# instanceId in the ARN of the instance.
|
4239
|
+
# @return [String]
|
4240
|
+
#
|
4241
|
+
# @!attribute [rw] view_id
|
4242
|
+
# The ViewId of the view. This must be an ARN for Amazon Web Services
|
4243
|
+
# managed views.
|
4244
|
+
# @return [String]
|
4245
|
+
#
|
4246
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeViewRequest AWS API Documentation
|
4247
|
+
#
|
4248
|
+
class DescribeViewRequest < Struct.new(
|
4249
|
+
:instance_id,
|
4250
|
+
:view_id)
|
4251
|
+
SENSITIVE = []
|
4252
|
+
include Aws::Structure
|
4253
|
+
end
|
4254
|
+
|
4255
|
+
# @!attribute [rw] view
|
4256
|
+
# All view data is contained within the View object.
|
4257
|
+
# @return [Types::View]
|
4258
|
+
#
|
4259
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeViewResponse AWS API Documentation
|
4260
|
+
#
|
4261
|
+
class DescribeViewResponse < Struct.new(
|
4262
|
+
:view)
|
4263
|
+
SENSITIVE = []
|
4264
|
+
include Aws::Structure
|
4265
|
+
end
|
4266
|
+
|
4033
4267
|
# @!attribute [rw] instance_id
|
4034
4268
|
# The identifier of the Amazon Connect instance. You can [find the
|
4035
4269
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -4332,6 +4566,41 @@ module Aws::Connect
|
|
4332
4566
|
include Aws::Structure
|
4333
4567
|
end
|
4334
4568
|
|
4569
|
+
# @!attribute [rw] traffic_distribution_group_id
|
4570
|
+
# The identifier of the traffic distribution group. This can be the ID
|
4571
|
+
# or the ARN if the API is being called in the Region where the
|
4572
|
+
# traffic distribution group was created. The ARN must be provided if
|
4573
|
+
# the call is from the replicated Region.
|
4574
|
+
# @return [String]
|
4575
|
+
#
|
4576
|
+
# @!attribute [rw] user_id
|
4577
|
+
# The identifier for the user. This can be the ID or the ARN of the
|
4578
|
+
# user.
|
4579
|
+
# @return [String]
|
4580
|
+
#
|
4581
|
+
# @!attribute [rw] instance_id
|
4582
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
4583
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
4584
|
+
#
|
4585
|
+
#
|
4586
|
+
#
|
4587
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
4588
|
+
# @return [String]
|
4589
|
+
#
|
4590
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateTrafficDistributionGroupUserRequest AWS API Documentation
|
4591
|
+
#
|
4592
|
+
class DisassociateTrafficDistributionGroupUserRequest < Struct.new(
|
4593
|
+
:traffic_distribution_group_id,
|
4594
|
+
:user_id,
|
4595
|
+
:instance_id)
|
4596
|
+
SENSITIVE = []
|
4597
|
+
include Aws::Structure
|
4598
|
+
end
|
4599
|
+
|
4600
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateTrafficDistributionGroupUserResponse AWS API Documentation
|
4601
|
+
#
|
4602
|
+
class DisassociateTrafficDistributionGroupUserResponse < Aws::EmptyStructure; end
|
4603
|
+
|
4335
4604
|
# @!attribute [rw] user_id
|
4336
4605
|
# The identifier of the user account.
|
4337
4606
|
# @return [String]
|
@@ -5741,7 +6010,8 @@ module Aws::Connect
|
|
5741
6010
|
# @return [String]
|
5742
6011
|
#
|
5743
6012
|
# @!attribute [rw] user_id
|
5744
|
-
# The identifier for the user.
|
6013
|
+
# The identifier for the user. This can be the ID or the ARN of the
|
6014
|
+
# user.
|
5745
6015
|
# @return [String]
|
5746
6016
|
#
|
5747
6017
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetFederationTokenResponse AWS API Documentation
|
@@ -6703,12 +6973,23 @@ module Aws::Connect
|
|
6703
6973
|
# The Amazon Resource Name (ARN) of the traffic distribution group.
|
6704
6974
|
# @return [String]
|
6705
6975
|
#
|
6976
|
+
# @!attribute [rw] sign_in_config
|
6977
|
+
# The distribution of allowing signing in to the instance and its
|
6978
|
+
# replica(s).
|
6979
|
+
# @return [Types::SignInConfig]
|
6980
|
+
#
|
6981
|
+
# @!attribute [rw] agent_config
|
6982
|
+
# The distribution of agents between the instance and its replica(s).
|
6983
|
+
# @return [Types::AgentConfig]
|
6984
|
+
#
|
6706
6985
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetTrafficDistributionResponse AWS API Documentation
|
6707
6986
|
#
|
6708
6987
|
class GetTrafficDistributionResponse < Struct.new(
|
6709
6988
|
:telephony_config,
|
6710
6989
|
:id,
|
6711
|
-
:arn
|
6990
|
+
:arn,
|
6991
|
+
:sign_in_config,
|
6992
|
+
:agent_config)
|
6712
6993
|
SENSITIVE = []
|
6713
6994
|
include Aws::Structure
|
6714
6995
|
end
|
@@ -9326,6 +9607,51 @@ module Aws::Connect
|
|
9326
9607
|
include Aws::Structure
|
9327
9608
|
end
|
9328
9609
|
|
9610
|
+
# @!attribute [rw] traffic_distribution_group_id
|
9611
|
+
# The identifier of the traffic distribution group. This can be the ID
|
9612
|
+
# or the ARN if the API is being called in the Region where the
|
9613
|
+
# traffic distribution group was created. The ARN must be provided if
|
9614
|
+
# the call is from the replicated Region.
|
9615
|
+
# @return [String]
|
9616
|
+
#
|
9617
|
+
# @!attribute [rw] max_results
|
9618
|
+
# The maximum number of results to return per page.
|
9619
|
+
# @return [Integer]
|
9620
|
+
#
|
9621
|
+
# @!attribute [rw] next_token
|
9622
|
+
# The token for the next set of results. Use the value returned in the
|
9623
|
+
# previous response in the next request to retrieve the next set of
|
9624
|
+
# results.
|
9625
|
+
# @return [String]
|
9626
|
+
#
|
9627
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListTrafficDistributionGroupUsersRequest AWS API Documentation
|
9628
|
+
#
|
9629
|
+
class ListTrafficDistributionGroupUsersRequest < Struct.new(
|
9630
|
+
:traffic_distribution_group_id,
|
9631
|
+
:max_results,
|
9632
|
+
:next_token)
|
9633
|
+
SENSITIVE = []
|
9634
|
+
include Aws::Structure
|
9635
|
+
end
|
9636
|
+
|
9637
|
+
# @!attribute [rw] next_token
|
9638
|
+
# If there are additional results, this is the token for the next set
|
9639
|
+
# of results.
|
9640
|
+
# @return [String]
|
9641
|
+
#
|
9642
|
+
# @!attribute [rw] traffic_distribution_group_user_summary_list
|
9643
|
+
# A list of traffic distribution group users.
|
9644
|
+
# @return [Array<Types::TrafficDistributionGroupUserSummary>]
|
9645
|
+
#
|
9646
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListTrafficDistributionGroupUsersResponse AWS API Documentation
|
9647
|
+
#
|
9648
|
+
class ListTrafficDistributionGroupUsersResponse < Struct.new(
|
9649
|
+
:next_token,
|
9650
|
+
:traffic_distribution_group_user_summary_list)
|
9651
|
+
SENSITIVE = []
|
9652
|
+
include Aws::Structure
|
9653
|
+
end
|
9654
|
+
|
9329
9655
|
# @!attribute [rw] max_results
|
9330
9656
|
# The maximum number of results to return per page.
|
9331
9657
|
# @return [Integer]
|
@@ -9524,27 +9850,127 @@ module Aws::Connect
|
|
9524
9850
|
include Aws::Structure
|
9525
9851
|
end
|
9526
9852
|
|
9527
|
-
#
|
9528
|
-
#
|
9853
|
+
# @!attribute [rw] instance_id
|
9854
|
+
# The identifier of the Amazon Connect instance. You can find the
|
9855
|
+
# instanceId in the ARN of the instance.
|
9856
|
+
# @return [String]
|
9529
9857
|
#
|
9530
|
-
# @!attribute [rw]
|
9858
|
+
# @!attribute [rw] view_id
|
9859
|
+
# The identifier of the view. Both `ViewArn` and `ViewId` can be used.
|
9531
9860
|
# @return [String]
|
9532
9861
|
#
|
9533
|
-
#
|
9862
|
+
# @!attribute [rw] next_token
|
9863
|
+
# The token for the next set of results. Use the value returned in the
|
9864
|
+
# previous response in the next request to retrieve the next set of
|
9865
|
+
# results.
|
9866
|
+
# @return [String]
|
9534
9867
|
#
|
9535
|
-
|
9536
|
-
|
9868
|
+
# @!attribute [rw] max_results
|
9869
|
+
# The maximum number of results to return per page. The default
|
9870
|
+
# MaxResult size is 100.
|
9871
|
+
# @return [Integer]
|
9872
|
+
#
|
9873
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListViewVersionsRequest AWS API Documentation
|
9874
|
+
#
|
9875
|
+
class ListViewVersionsRequest < Struct.new(
|
9876
|
+
:instance_id,
|
9877
|
+
:view_id,
|
9878
|
+
:next_token,
|
9879
|
+
:max_results)
|
9537
9880
|
SENSITIVE = []
|
9538
9881
|
include Aws::Structure
|
9539
9882
|
end
|
9540
9883
|
|
9541
|
-
#
|
9542
|
-
#
|
9543
|
-
#
|
9544
|
-
#
|
9545
|
-
#
|
9546
|
-
#
|
9547
|
-
#
|
9884
|
+
# @!attribute [rw] view_version_summary_list
|
9885
|
+
# A list of view version summaries.
|
9886
|
+
# @return [Array<Types::ViewVersionSummary>]
|
9887
|
+
#
|
9888
|
+
# @!attribute [rw] next_token
|
9889
|
+
# The token for the next set of results. Use the value returned in the
|
9890
|
+
# previous response in the next request to retrieve the next set of
|
9891
|
+
# results.
|
9892
|
+
# @return [String]
|
9893
|
+
#
|
9894
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListViewVersionsResponse AWS API Documentation
|
9895
|
+
#
|
9896
|
+
class ListViewVersionsResponse < Struct.new(
|
9897
|
+
:view_version_summary_list,
|
9898
|
+
:next_token)
|
9899
|
+
SENSITIVE = []
|
9900
|
+
include Aws::Structure
|
9901
|
+
end
|
9902
|
+
|
9903
|
+
# @!attribute [rw] instance_id
|
9904
|
+
# The identifier of the Amazon Connect instance. You can find the
|
9905
|
+
# instanceId in the ARN of the instance.
|
9906
|
+
# @return [String]
|
9907
|
+
#
|
9908
|
+
# @!attribute [rw] type
|
9909
|
+
# The type of the view.
|
9910
|
+
# @return [String]
|
9911
|
+
#
|
9912
|
+
# @!attribute [rw] next_token
|
9913
|
+
# The token for the next set of results. Use the value returned in the
|
9914
|
+
# previous response in the next request to retrieve the next set of
|
9915
|
+
# results.
|
9916
|
+
# @return [String]
|
9917
|
+
#
|
9918
|
+
# @!attribute [rw] max_results
|
9919
|
+
# The maximum number of results to return per page. The default
|
9920
|
+
# MaxResult size is 100.
|
9921
|
+
# @return [Integer]
|
9922
|
+
#
|
9923
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListViewsRequest AWS API Documentation
|
9924
|
+
#
|
9925
|
+
class ListViewsRequest < Struct.new(
|
9926
|
+
:instance_id,
|
9927
|
+
:type,
|
9928
|
+
:next_token,
|
9929
|
+
:max_results)
|
9930
|
+
SENSITIVE = []
|
9931
|
+
include Aws::Structure
|
9932
|
+
end
|
9933
|
+
|
9934
|
+
# @!attribute [rw] views_summary_list
|
9935
|
+
# A list of view summaries.
|
9936
|
+
# @return [Array<Types::ViewSummary>]
|
9937
|
+
#
|
9938
|
+
# @!attribute [rw] next_token
|
9939
|
+
# The token for the next set of results. Use the value returned in the
|
9940
|
+
# previous response in the next request to retrieve the next set of
|
9941
|
+
# results.
|
9942
|
+
# @return [String]
|
9943
|
+
#
|
9944
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListViewsResponse AWS API Documentation
|
9945
|
+
#
|
9946
|
+
class ListViewsResponse < Struct.new(
|
9947
|
+
:views_summary_list,
|
9948
|
+
:next_token)
|
9949
|
+
SENSITIVE = []
|
9950
|
+
include Aws::Structure
|
9951
|
+
end
|
9952
|
+
|
9953
|
+
# Maximum number (1000) of tags have been returned with current request.
|
9954
|
+
# Consider changing request parameters to get more tags.
|
9955
|
+
#
|
9956
|
+
# @!attribute [rw] message
|
9957
|
+
# @return [String]
|
9958
|
+
#
|
9959
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/MaximumResultReturnedException AWS API Documentation
|
9960
|
+
#
|
9961
|
+
class MaximumResultReturnedException < Struct.new(
|
9962
|
+
:message)
|
9963
|
+
SENSITIVE = []
|
9964
|
+
include Aws::Structure
|
9965
|
+
end
|
9966
|
+
|
9967
|
+
# Contains information about which channels are supported, and how many
|
9968
|
+
# contacts an agent can have on a channel simultaneously.
|
9969
|
+
#
|
9970
|
+
# @!attribute [rw] channel
|
9971
|
+
# The channels that agents can handle in the Contact Control Panel
|
9972
|
+
# (CCP).
|
9973
|
+
# @return [String]
|
9548
9974
|
#
|
9549
9975
|
# @!attribute [rw] concurrency
|
9550
9976
|
# The number of contacts an agent can have on a channel
|
@@ -12392,6 +12818,41 @@ module Aws::Connect
|
|
12392
12818
|
include Aws::Structure
|
12393
12819
|
end
|
12394
12820
|
|
12821
|
+
# The distribution of allowing signing in to the instance and its
|
12822
|
+
# replica(s).
|
12823
|
+
#
|
12824
|
+
# @!attribute [rw] distributions
|
12825
|
+
# Information about traffic distributions.
|
12826
|
+
# @return [Array<Types::SignInDistribution>]
|
12827
|
+
#
|
12828
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SignInConfig AWS API Documentation
|
12829
|
+
#
|
12830
|
+
class SignInConfig < Struct.new(
|
12831
|
+
:distributions)
|
12832
|
+
SENSITIVE = []
|
12833
|
+
include Aws::Structure
|
12834
|
+
end
|
12835
|
+
|
12836
|
+
# The distribution of sign in traffic between the instance and its
|
12837
|
+
# replica(s).
|
12838
|
+
#
|
12839
|
+
# @!attribute [rw] region
|
12840
|
+
# The Amazon Web Services Region of the sign in distribution.
|
12841
|
+
# @return [String]
|
12842
|
+
#
|
12843
|
+
# @!attribute [rw] enabled
|
12844
|
+
# Whether sign in distribution is enabled.
|
12845
|
+
# @return [Boolean]
|
12846
|
+
#
|
12847
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SignInDistribution AWS API Documentation
|
12848
|
+
#
|
12849
|
+
class SignInDistribution < Struct.new(
|
12850
|
+
:region,
|
12851
|
+
:enabled)
|
12852
|
+
SENSITIVE = []
|
12853
|
+
include Aws::Structure
|
12854
|
+
end
|
12855
|
+
|
12395
12856
|
# Information about the automation option based on a rule category for a
|
12396
12857
|
# single select question.
|
12397
12858
|
#
|
@@ -13513,6 +13974,19 @@ module Aws::Connect
|
|
13513
13974
|
include Aws::Structure
|
13514
13975
|
end
|
13515
13976
|
|
13977
|
+
# Displayed when rate-related API limits are exceeded.
|
13978
|
+
#
|
13979
|
+
# @!attribute [rw] message
|
13980
|
+
# @return [String]
|
13981
|
+
#
|
13982
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TooManyRequestsException AWS API Documentation
|
13983
|
+
#
|
13984
|
+
class TooManyRequestsException < Struct.new(
|
13985
|
+
:message)
|
13986
|
+
SENSITIVE = []
|
13987
|
+
include Aws::Structure
|
13988
|
+
end
|
13989
|
+
|
13516
13990
|
# Information about a traffic distribution group.
|
13517
13991
|
#
|
13518
13992
|
# @!attribute [rw] id
|
@@ -13575,6 +14049,27 @@ module Aws::Connect
|
|
13575
14049
|
# "key2":"value2"\\} \\}.
|
13576
14050
|
# @return [Hash<String,String>]
|
13577
14051
|
#
|
14052
|
+
# @!attribute [rw] is_default
|
14053
|
+
# Whether this is the default traffic distribution group created
|
14054
|
+
# during instance replication. The default traffic distribution group
|
14055
|
+
# cannot be deleted by the `DeleteTrafficDistributionGroup` API. The
|
14056
|
+
# default traffic distribution group is deleted as part of the process
|
14057
|
+
# for deleting a replica.
|
14058
|
+
#
|
14059
|
+
# <note markdown="1"> You can change the `SignInConfig` distribution only for a default
|
14060
|
+
# `TrafficDistributionGroup` (see the `IsDefault` parameter in the
|
14061
|
+
# [TrafficDistributionGroup][1] data type). If you call
|
14062
|
+
# `UpdateTrafficDistribution` with a modified `SignInConfig` and a
|
14063
|
+
# non-default `TrafficDistributionGroup`, an `InvalidRequestException`
|
14064
|
+
# is returned.
|
14065
|
+
#
|
14066
|
+
# </note>
|
14067
|
+
#
|
14068
|
+
#
|
14069
|
+
#
|
14070
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_TrafficDistributionGroup.html
|
14071
|
+
# @return [Boolean]
|
14072
|
+
#
|
13578
14073
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TrafficDistributionGroup AWS API Documentation
|
13579
14074
|
#
|
13580
14075
|
class TrafficDistributionGroup < Struct.new(
|
@@ -13584,7 +14079,8 @@ module Aws::Connect
|
|
13584
14079
|
:description,
|
13585
14080
|
:instance_arn,
|
13586
14081
|
:status,
|
13587
|
-
:tags
|
14082
|
+
:tags,
|
14083
|
+
:is_default)
|
13588
14084
|
SENSITIVE = []
|
13589
14085
|
include Aws::Structure
|
13590
14086
|
end
|
@@ -13641,6 +14137,14 @@ module Aws::Connect
|
|
13641
14137
|
# [3]: https://docs.aws.amazon.com/connect/latest/APIReference/API_UpdateTrafficDistributionGroup.html
|
13642
14138
|
# @return [String]
|
13643
14139
|
#
|
14140
|
+
# @!attribute [rw] is_default
|
14141
|
+
# Whether this is the default traffic distribution group created
|
14142
|
+
# during instance replication. The default traffic distribution group
|
14143
|
+
# cannot be deleted by the `DeleteTrafficDistributionGroup` API. The
|
14144
|
+
# default traffic distribution group is deleted as part of the process
|
14145
|
+
# for deleting a replica.
|
14146
|
+
# @return [Boolean]
|
14147
|
+
#
|
13644
14148
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TrafficDistributionGroupSummary AWS API Documentation
|
13645
14149
|
#
|
13646
14150
|
class TrafficDistributionGroupSummary < Struct.new(
|
@@ -13648,7 +14152,23 @@ module Aws::Connect
|
|
13648
14152
|
:arn,
|
13649
14153
|
:name,
|
13650
14154
|
:instance_arn,
|
13651
|
-
:status
|
14155
|
+
:status,
|
14156
|
+
:is_default)
|
14157
|
+
SENSITIVE = []
|
14158
|
+
include Aws::Structure
|
14159
|
+
end
|
14160
|
+
|
14161
|
+
# Summary information about a traffic distribution group user.
|
14162
|
+
#
|
14163
|
+
# @!attribute [rw] user_id
|
14164
|
+
# The identifier for the user. This can be the ID or the ARN of the
|
14165
|
+
# user.
|
14166
|
+
# @return [String]
|
14167
|
+
#
|
14168
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TrafficDistributionGroupUserSummary AWS API Documentation
|
14169
|
+
#
|
14170
|
+
class TrafficDistributionGroupUserSummary < Struct.new(
|
14171
|
+
:user_id)
|
13652
14172
|
SENSITIVE = []
|
13653
14173
|
include Aws::Structure
|
13654
14174
|
end
|
@@ -13671,7 +14191,8 @@ module Aws::Connect
|
|
13671
14191
|
# @return [String]
|
13672
14192
|
#
|
13673
14193
|
# @!attribute [rw] user_id
|
13674
|
-
# The identifier for the user.
|
14194
|
+
# The identifier for the user. This can be the ID or the ARN of the
|
14195
|
+
# user.
|
13675
14196
|
# @return [String]
|
13676
14197
|
#
|
13677
14198
|
# @!attribute [rw] contact_flow_id
|
@@ -15069,11 +15590,22 @@ module Aws::Connect
|
|
15069
15590
|
# The distribution of traffic between the instance and its replica(s).
|
15070
15591
|
# @return [Types::TelephonyConfig]
|
15071
15592
|
#
|
15593
|
+
# @!attribute [rw] sign_in_config
|
15594
|
+
# The distribution of allowing signing in to the instance and its
|
15595
|
+
# replica(s).
|
15596
|
+
# @return [Types::SignInConfig]
|
15597
|
+
#
|
15598
|
+
# @!attribute [rw] agent_config
|
15599
|
+
# The distribution of agents between the instance and its replica(s).
|
15600
|
+
# @return [Types::AgentConfig]
|
15601
|
+
#
|
15072
15602
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateTrafficDistributionRequest AWS API Documentation
|
15073
15603
|
#
|
15074
15604
|
class UpdateTrafficDistributionRequest < Struct.new(
|
15075
15605
|
:id,
|
15076
|
-
:telephony_config
|
15606
|
+
:telephony_config,
|
15607
|
+
:sign_in_config,
|
15608
|
+
:agent_config)
|
15077
15609
|
SENSITIVE = []
|
15078
15610
|
include Aws::Structure
|
15079
15611
|
end
|
@@ -15267,6 +15799,84 @@ module Aws::Connect
|
|
15267
15799
|
include Aws::Structure
|
15268
15800
|
end
|
15269
15801
|
|
15802
|
+
# @!attribute [rw] instance_id
|
15803
|
+
# The identifier of the Amazon Connect instance. You can find the
|
15804
|
+
# instanceId in the ARN of the instance.
|
15805
|
+
# @return [String]
|
15806
|
+
#
|
15807
|
+
# @!attribute [rw] view_id
|
15808
|
+
# The identifier of the view. Both `ViewArn` and `ViewId` can be used.
|
15809
|
+
# @return [String]
|
15810
|
+
#
|
15811
|
+
# @!attribute [rw] status
|
15812
|
+
# Indicates the view status as either `SAVED` or `PUBLISHED`. The
|
15813
|
+
# `PUBLISHED` status will initiate validation on the content.
|
15814
|
+
# @return [String]
|
15815
|
+
#
|
15816
|
+
# @!attribute [rw] content
|
15817
|
+
# View content containing all content necessary to render a view
|
15818
|
+
# except for runtime input data and the runtime input schema, which is
|
15819
|
+
# auto-generated by this operation.
|
15820
|
+
#
|
15821
|
+
# The total uncompressed content has a maximum file size of 400kB.
|
15822
|
+
# @return [Types::ViewInputContent]
|
15823
|
+
#
|
15824
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateViewContentRequest AWS API Documentation
|
15825
|
+
#
|
15826
|
+
class UpdateViewContentRequest < Struct.new(
|
15827
|
+
:instance_id,
|
15828
|
+
:view_id,
|
15829
|
+
:status,
|
15830
|
+
:content)
|
15831
|
+
SENSITIVE = []
|
15832
|
+
include Aws::Structure
|
15833
|
+
end
|
15834
|
+
|
15835
|
+
# @!attribute [rw] view
|
15836
|
+
# A view resource object. Contains metadata and content necessary to
|
15837
|
+
# render the view.
|
15838
|
+
# @return [Types::View]
|
15839
|
+
#
|
15840
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateViewContentResponse AWS API Documentation
|
15841
|
+
#
|
15842
|
+
class UpdateViewContentResponse < Struct.new(
|
15843
|
+
:view)
|
15844
|
+
SENSITIVE = []
|
15845
|
+
include Aws::Structure
|
15846
|
+
end
|
15847
|
+
|
15848
|
+
# @!attribute [rw] instance_id
|
15849
|
+
# The identifier of the Amazon Connect instance. You can find the
|
15850
|
+
# instanceId in the ARN of the instance.
|
15851
|
+
# @return [String]
|
15852
|
+
#
|
15853
|
+
# @!attribute [rw] view_id
|
15854
|
+
# The identifier of the view. Both `ViewArn` and `ViewId` can be used.
|
15855
|
+
# @return [String]
|
15856
|
+
#
|
15857
|
+
# @!attribute [rw] name
|
15858
|
+
# The name of the view.
|
15859
|
+
# @return [String]
|
15860
|
+
#
|
15861
|
+
# @!attribute [rw] description
|
15862
|
+
# The description of the view.
|
15863
|
+
# @return [String]
|
15864
|
+
#
|
15865
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateViewMetadataRequest AWS API Documentation
|
15866
|
+
#
|
15867
|
+
class UpdateViewMetadataRequest < Struct.new(
|
15868
|
+
:instance_id,
|
15869
|
+
:view_id,
|
15870
|
+
:name,
|
15871
|
+
:description)
|
15872
|
+
SENSITIVE = [:name]
|
15873
|
+
include Aws::Structure
|
15874
|
+
end
|
15875
|
+
|
15876
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateViewMetadataResponse AWS API Documentation
|
15877
|
+
#
|
15878
|
+
class UpdateViewMetadataResponse < Aws::EmptyStructure; end
|
15879
|
+
|
15270
15880
|
# The URL reference.
|
15271
15881
|
#
|
15272
15882
|
# @!attribute [rw] name
|
@@ -15778,6 +16388,216 @@ module Aws::Connect
|
|
15778
16388
|
include Aws::Structure
|
15779
16389
|
end
|
15780
16390
|
|
16391
|
+
# A view resource object. Contains metadata and content necessary to
|
16392
|
+
# render the view.
|
16393
|
+
#
|
16394
|
+
# @!attribute [rw] id
|
16395
|
+
# The identifier of the view.
|
16396
|
+
# @return [String]
|
16397
|
+
#
|
16398
|
+
# @!attribute [rw] arn
|
16399
|
+
# The Amazon Resource Name (ARN) of the view.
|
16400
|
+
# @return [String]
|
16401
|
+
#
|
16402
|
+
# @!attribute [rw] name
|
16403
|
+
# The name of the view.
|
16404
|
+
# @return [String]
|
16405
|
+
#
|
16406
|
+
# @!attribute [rw] status
|
16407
|
+
# Indicates the view status as either `SAVED` or `PUBLISHED`. The
|
16408
|
+
# `PUBLISHED` status will initiate validation on the content.
|
16409
|
+
# @return [String]
|
16410
|
+
#
|
16411
|
+
# @!attribute [rw] type
|
16412
|
+
# The type of the view - `CUSTOMER_MANAGED`.
|
16413
|
+
# @return [String]
|
16414
|
+
#
|
16415
|
+
# @!attribute [rw] description
|
16416
|
+
# The description of the view.
|
16417
|
+
# @return [String]
|
16418
|
+
#
|
16419
|
+
# @!attribute [rw] version
|
16420
|
+
# Current version of the view.
|
16421
|
+
# @return [Integer]
|
16422
|
+
#
|
16423
|
+
# @!attribute [rw] version_description
|
16424
|
+
# The description of the version.
|
16425
|
+
# @return [String]
|
16426
|
+
#
|
16427
|
+
# @!attribute [rw] content
|
16428
|
+
# View content containing all content necessary to render a view
|
16429
|
+
# except for runtime input data.
|
16430
|
+
# @return [Types::ViewContent]
|
16431
|
+
#
|
16432
|
+
# @!attribute [rw] tags
|
16433
|
+
# The tags associated with the view resource (not specific to view
|
16434
|
+
# version).
|
16435
|
+
# @return [Hash<String,String>]
|
16436
|
+
#
|
16437
|
+
# @!attribute [rw] created_time
|
16438
|
+
# The timestamp of when the view was created.
|
16439
|
+
# @return [Time]
|
16440
|
+
#
|
16441
|
+
# @!attribute [rw] last_modified_time
|
16442
|
+
# Latest timestamp of the `UpdateViewContent` or `CreateViewVersion`
|
16443
|
+
# operations.
|
16444
|
+
# @return [Time]
|
16445
|
+
#
|
16446
|
+
# @!attribute [rw] view_content_sha_256
|
16447
|
+
# Indicates the checksum value of the latest published view content.
|
16448
|
+
# @return [String]
|
16449
|
+
#
|
16450
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/View AWS API Documentation
|
16451
|
+
#
|
16452
|
+
class View < Struct.new(
|
16453
|
+
:id,
|
16454
|
+
:arn,
|
16455
|
+
:name,
|
16456
|
+
:status,
|
16457
|
+
:type,
|
16458
|
+
:description,
|
16459
|
+
:version,
|
16460
|
+
:version_description,
|
16461
|
+
:content,
|
16462
|
+
:tags,
|
16463
|
+
:created_time,
|
16464
|
+
:last_modified_time,
|
16465
|
+
:view_content_sha_256)
|
16466
|
+
SENSITIVE = [:name]
|
16467
|
+
include Aws::Structure
|
16468
|
+
end
|
16469
|
+
|
16470
|
+
# View content containing all content necessary to render a view except
|
16471
|
+
# for runtime input data.
|
16472
|
+
#
|
16473
|
+
# @!attribute [rw] input_schema
|
16474
|
+
# The data schema matching data that the view template must be
|
16475
|
+
# provided to render.
|
16476
|
+
# @return [String]
|
16477
|
+
#
|
16478
|
+
# @!attribute [rw] template
|
16479
|
+
# The view template representing the structure of the view.
|
16480
|
+
# @return [String]
|
16481
|
+
#
|
16482
|
+
# @!attribute [rw] actions
|
16483
|
+
# A list of possible actions from the view.
|
16484
|
+
# @return [Array<String>]
|
16485
|
+
#
|
16486
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ViewContent AWS API Documentation
|
16487
|
+
#
|
16488
|
+
class ViewContent < Struct.new(
|
16489
|
+
:input_schema,
|
16490
|
+
:template,
|
16491
|
+
:actions)
|
16492
|
+
SENSITIVE = [:input_schema]
|
16493
|
+
include Aws::Structure
|
16494
|
+
end
|
16495
|
+
|
16496
|
+
# View content containing all content necessary to render a view except
|
16497
|
+
# for runtime input data and the runtime input schema, which is
|
16498
|
+
# auto-generated by this operation.
|
16499
|
+
#
|
16500
|
+
# @!attribute [rw] template
|
16501
|
+
# The view template representing the structure of the view.
|
16502
|
+
# @return [String]
|
16503
|
+
#
|
16504
|
+
# @!attribute [rw] actions
|
16505
|
+
# A list of possible actions from the view.
|
16506
|
+
# @return [Array<String>]
|
16507
|
+
#
|
16508
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ViewInputContent AWS API Documentation
|
16509
|
+
#
|
16510
|
+
class ViewInputContent < Struct.new(
|
16511
|
+
:template,
|
16512
|
+
:actions)
|
16513
|
+
SENSITIVE = []
|
16514
|
+
include Aws::Structure
|
16515
|
+
end
|
16516
|
+
|
16517
|
+
# A summary of a view's metadata.
|
16518
|
+
#
|
16519
|
+
# @!attribute [rw] id
|
16520
|
+
# The identifier of the view.
|
16521
|
+
# @return [String]
|
16522
|
+
#
|
16523
|
+
# @!attribute [rw] arn
|
16524
|
+
# The Amazon Resource Name (ARN) of the view.
|
16525
|
+
# @return [String]
|
16526
|
+
#
|
16527
|
+
# @!attribute [rw] name
|
16528
|
+
# The name of the view.
|
16529
|
+
# @return [String]
|
16530
|
+
#
|
16531
|
+
# @!attribute [rw] type
|
16532
|
+
# The type of the view.
|
16533
|
+
# @return [String]
|
16534
|
+
#
|
16535
|
+
# @!attribute [rw] status
|
16536
|
+
# Indicates the view status as either `SAVED` or `PUBLISHED`. The
|
16537
|
+
# `PUBLISHED` status will initiate validation on the content.
|
16538
|
+
# @return [String]
|
16539
|
+
#
|
16540
|
+
# @!attribute [rw] description
|
16541
|
+
# The description of the view.
|
16542
|
+
# @return [String]
|
16543
|
+
#
|
16544
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ViewSummary AWS API Documentation
|
16545
|
+
#
|
16546
|
+
class ViewSummary < Struct.new(
|
16547
|
+
:id,
|
16548
|
+
:arn,
|
16549
|
+
:name,
|
16550
|
+
:type,
|
16551
|
+
:status,
|
16552
|
+
:description)
|
16553
|
+
SENSITIVE = [:name]
|
16554
|
+
include Aws::Structure
|
16555
|
+
end
|
16556
|
+
|
16557
|
+
# A summary of a view version's metadata.
|
16558
|
+
#
|
16559
|
+
# @!attribute [rw] id
|
16560
|
+
# The identifier of the view version.
|
16561
|
+
# @return [String]
|
16562
|
+
#
|
16563
|
+
# @!attribute [rw] arn
|
16564
|
+
# The Amazon Resource Name (ARN) of the view version.
|
16565
|
+
# @return [String]
|
16566
|
+
#
|
16567
|
+
# @!attribute [rw] description
|
16568
|
+
# The description of the view version.
|
16569
|
+
# @return [String]
|
16570
|
+
#
|
16571
|
+
# @!attribute [rw] name
|
16572
|
+
# The name of the view version.
|
16573
|
+
# @return [String]
|
16574
|
+
#
|
16575
|
+
# @!attribute [rw] type
|
16576
|
+
# The type of the view version.
|
16577
|
+
# @return [String]
|
16578
|
+
#
|
16579
|
+
# @!attribute [rw] version
|
16580
|
+
# The sequentially incremented version of the view version.
|
16581
|
+
# @return [Integer]
|
16582
|
+
#
|
16583
|
+
# @!attribute [rw] version_description
|
16584
|
+
# The description of the view version.
|
16585
|
+
# @return [String]
|
16586
|
+
#
|
16587
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ViewVersionSummary AWS API Documentation
|
16588
|
+
#
|
16589
|
+
class ViewVersionSummary < Struct.new(
|
16590
|
+
:id,
|
16591
|
+
:arn,
|
16592
|
+
:description,
|
16593
|
+
:name,
|
16594
|
+
:type,
|
16595
|
+
:version,
|
16596
|
+
:version_description)
|
16597
|
+
SENSITIVE = [:name]
|
16598
|
+
include Aws::Structure
|
16599
|
+
end
|
16600
|
+
|
15781
16601
|
# Contains information about a custom vocabulary.
|
15782
16602
|
#
|
15783
16603
|
# @!attribute [rw] name
|