aws-sdk-connect 1.124.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +581 -54
- data/lib/aws-sdk-connect/client_api.rb +317 -0
- data/lib/aws-sdk-connect/endpoints.rb +126 -0
- data/lib/aws-sdk-connect/errors.rb +16 -0
- data/lib/aws-sdk-connect/plugins/endpoints.rb +18 -0
- data/lib/aws-sdk-connect/types.rb +597 -6
- data/lib/aws-sdk-connect.rb +1 -1
- metadata +2 -2
@@ -1241,7 +1241,7 @@ module Aws::Connect
|
|
1241
1241
|
end
|
1242
1242
|
|
1243
1243
|
# The contact with the specified ID is not active or does not exist.
|
1244
|
-
# Applies to Voice calls only, not to Chat
|
1244
|
+
# Applies to Voice calls only, not to Chat or Task contacts.
|
1245
1245
|
#
|
1246
1246
|
# @!attribute [rw] message
|
1247
1247
|
# The message.
|
@@ -2588,6 +2588,111 @@ module Aws::Connect
|
|
2588
2588
|
include Aws::Structure
|
2589
2589
|
end
|
2590
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
|
+
|
2591
2696
|
# @!attribute [rw] client_token
|
2592
2697
|
# A unique, case-sensitive identifier that you provide to ensure the
|
2593
2698
|
# idempotency of the request. If not provided, the Amazon Web Services
|
@@ -3335,6 +3440,55 @@ module Aws::Connect
|
|
3335
3440
|
include Aws::Structure
|
3336
3441
|
end
|
3337
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
|
+
|
3338
3492
|
# @!attribute [rw] instance_id
|
3339
3493
|
# The identifier of the Amazon Connect instance. You can [find the
|
3340
3494
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -4079,6 +4233,37 @@ module Aws::Connect
|
|
4079
4233
|
include Aws::Structure
|
4080
4234
|
end
|
4081
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
|
+
|
4082
4267
|
# @!attribute [rw] instance_id
|
4083
4268
|
# The identifier of the Amazon Connect instance. You can [find the
|
4084
4269
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -9665,6 +9850,106 @@ module Aws::Connect
|
|
9665
9850
|
include Aws::Structure
|
9666
9851
|
end
|
9667
9852
|
|
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]
|
9857
|
+
#
|
9858
|
+
# @!attribute [rw] view_id
|
9859
|
+
# The identifier of the view. Both `ViewArn` and `ViewId` can be used.
|
9860
|
+
# @return [String]
|
9861
|
+
#
|
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]
|
9867
|
+
#
|
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)
|
9880
|
+
SENSITIVE = []
|
9881
|
+
include Aws::Structure
|
9882
|
+
end
|
9883
|
+
|
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
|
+
|
9668
9953
|
# Maximum number (1000) of tags have been returned with current request.
|
9669
9954
|
# Consider changing request parameters to get more tags.
|
9670
9955
|
#
|
@@ -13689,6 +13974,19 @@ module Aws::Connect
|
|
13689
13974
|
include Aws::Structure
|
13690
13975
|
end
|
13691
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
|
+
|
13692
13990
|
# Information about a traffic distribution group.
|
13693
13991
|
#
|
13694
13992
|
# @!attribute [rw] id
|
@@ -13758,13 +14056,18 @@ module Aws::Connect
|
|
13758
14056
|
# default traffic distribution group is deleted as part of the process
|
13759
14057
|
# for deleting a replica.
|
13760
14058
|
#
|
13761
|
-
# <note markdown="1"> You can change the `SignInConfig` only for a default
|
13762
|
-
# `TrafficDistributionGroup
|
13763
|
-
#
|
13764
|
-
# `
|
13765
|
-
#
|
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.
|
13766
14065
|
#
|
13767
14066
|
# </note>
|
14067
|
+
#
|
14068
|
+
#
|
14069
|
+
#
|
14070
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_TrafficDistributionGroup.html
|
13768
14071
|
# @return [Boolean]
|
13769
14072
|
#
|
13770
14073
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TrafficDistributionGroup AWS API Documentation
|
@@ -15496,6 +15799,84 @@ module Aws::Connect
|
|
15496
15799
|
include Aws::Structure
|
15497
15800
|
end
|
15498
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
|
+
|
15499
15880
|
# The URL reference.
|
15500
15881
|
#
|
15501
15882
|
# @!attribute [rw] name
|
@@ -16007,6 +16388,216 @@ module Aws::Connect
|
|
16007
16388
|
include Aws::Structure
|
16008
16389
|
end
|
16009
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
|
+
|
16010
16601
|
# Contains information about a custom vocabulary.
|
16011
16602
|
#
|
16012
16603
|
# @!attribute [rw] name
|
data/lib/aws-sdk-connect.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-connect
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.125.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-09-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|