aws-sdk-connectcases 1.59.0 → 1.61.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-connectcases/client.rb +73 -1
- data/lib/aws-sdk-connectcases/client_api.rb +56 -0
- data/lib/aws-sdk-connectcases/types.rb +174 -10
- data/lib/aws-sdk-connectcases.rb +1 -1
- data/sig/client.rbs +34 -3
- data/sig/types.rbs +52 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 53f0028119066b506f391818fab9628ea09623195f5ca18cb362d63f9c1eaff0
|
|
4
|
+
data.tar.gz: d3889563584a9c36e468975f786c0d61a19194c8bb13af0688f595fe3c2b75d3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 50dbc1bd8a24cf7d024d76bfec5db4218956830cf9809b92a2fdd80a9c286ea8fcfd3dc9105574fdf59a25435e5bbeeb815f84dfa8c599c4ac21a1e1ac99effc
|
|
7
|
+
data.tar.gz: d7a1627388ea4c871b6acbad6efa4880699b30518c0b051177c3e9be5f2e1a493dcd189114af855d3299cb90692c3a283ff3b6161ffed11c36feba7e849b4855
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.61.0 (2026-02-04)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon Connect Cases now supports larger, multi-line text fields with up to 4,100 characters. Administrators can use the Admin UI to select the appropriate configuration (single-line or multi-line) on a per-field basis, improving case documentation capabilities.
|
|
8
|
+
|
|
9
|
+
1.60.0 (2026-01-26)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Amazon Connect now enables you to use tag-based access controls to define who can access specific cases. You can associate tags with case templates and configure security profiles to determine which users can access cases with those tags.
|
|
13
|
+
|
|
4
14
|
1.59.0 (2026-01-16)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.61.0
|
|
@@ -605,6 +605,7 @@ module Aws::ConnectCases
|
|
|
605
605
|
# resp.fields[0].deleted #=> Boolean
|
|
606
606
|
# resp.fields[0].created_time #=> Time
|
|
607
607
|
# resp.fields[0].last_modified_time #=> Time
|
|
608
|
+
# resp.fields[0].attributes.text.is_multiline #=> Boolean
|
|
608
609
|
# resp.errors #=> Array
|
|
609
610
|
# resp.errors[0].id #=> String
|
|
610
611
|
# resp.errors[0].error_code #=> String
|
|
@@ -676,6 +677,10 @@ module Aws::ConnectCases
|
|
|
676
677
|
# fields are taken as an array id/value pairs with a declared data
|
|
677
678
|
# types.
|
|
678
679
|
#
|
|
680
|
+
# When creating a case from a template that has tag propagation
|
|
681
|
+
# configurations, the specified tags are automatically applied to the
|
|
682
|
+
# case.
|
|
683
|
+
#
|
|
679
684
|
# The following fields are required when creating a case:
|
|
680
685
|
#
|
|
681
686
|
# * `customer_id` - You must provide the full customer profile ARN in
|
|
@@ -714,6 +719,10 @@ module Aws::ConnectCases
|
|
|
714
719
|
# @option params [Types::UserUnion] :performed_by
|
|
715
720
|
# Represents the entity that performed the action.
|
|
716
721
|
#
|
|
722
|
+
# @option params [Hash<String,String>] :tags
|
|
723
|
+
# A map of of key-value pairs that represent tags on a resource. Tags
|
|
724
|
+
# are used to organize, track, or control access for this resource.
|
|
725
|
+
#
|
|
717
726
|
# @return [Types::CreateCaseResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
718
727
|
#
|
|
719
728
|
# * {Types::CreateCaseResponse#case_id #case_id} => String
|
|
@@ -742,6 +751,9 @@ module Aws::ConnectCases
|
|
|
742
751
|
# user_arn: "UserArn",
|
|
743
752
|
# custom_entity: "CustomEntity",
|
|
744
753
|
# },
|
|
754
|
+
# tags: {
|
|
755
|
+
# "MutableTagKey" => "TagValueString",
|
|
756
|
+
# },
|
|
745
757
|
# })
|
|
746
758
|
#
|
|
747
759
|
# @example Response structure
|
|
@@ -946,6 +958,9 @@ module Aws::ConnectCases
|
|
|
946
958
|
# @option params [String] :description
|
|
947
959
|
# The description of the field.
|
|
948
960
|
#
|
|
961
|
+
# @option params [Types::FieldAttributes] :attributes
|
|
962
|
+
# Union of field attributes.
|
|
963
|
+
#
|
|
949
964
|
# @return [Types::CreateFieldResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
950
965
|
#
|
|
951
966
|
# * {Types::CreateFieldResponse#field_id #field_id} => String
|
|
@@ -958,6 +973,11 @@ module Aws::ConnectCases
|
|
|
958
973
|
# name: "FieldName", # required
|
|
959
974
|
# type: "Text", # required, accepts Text, Number, Boolean, DateTime, SingleSelect, Url, User
|
|
960
975
|
# description: "FieldDescription",
|
|
976
|
+
# attributes: {
|
|
977
|
+
# text: {
|
|
978
|
+
# is_multiline: false, # required
|
|
979
|
+
# },
|
|
980
|
+
# },
|
|
961
981
|
# })
|
|
962
982
|
#
|
|
963
983
|
# @example Response structure
|
|
@@ -1254,6 +1274,11 @@ module Aws::ConnectCases
|
|
|
1254
1274
|
#
|
|
1255
1275
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/case-field-conditions.html
|
|
1256
1276
|
#
|
|
1277
|
+
# @option params [Array<Types::TagPropagationConfiguration>] :tag_propagation_configurations
|
|
1278
|
+
# Defines tag propagation configuration for resources created within a
|
|
1279
|
+
# domain. Tags specified here will be automatically applied to resources
|
|
1280
|
+
# being created for the specified resource type.
|
|
1281
|
+
#
|
|
1257
1282
|
# @return [Types::CreateTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1258
1283
|
#
|
|
1259
1284
|
# * {Types::CreateTemplateResponse#template_id #template_id} => String
|
|
@@ -1280,6 +1305,14 @@ module Aws::ConnectCases
|
|
|
1280
1305
|
# field_id: "FieldId",
|
|
1281
1306
|
# },
|
|
1282
1307
|
# ],
|
|
1308
|
+
# tag_propagation_configurations: [
|
|
1309
|
+
# {
|
|
1310
|
+
# resource_type: "Cases", # required, accepts Cases
|
|
1311
|
+
# tag_map: { # required
|
|
1312
|
+
# "MutableTagKey" => "TagValueString",
|
|
1313
|
+
# },
|
|
1314
|
+
# },
|
|
1315
|
+
# ],
|
|
1283
1316
|
# })
|
|
1284
1317
|
#
|
|
1285
1318
|
# @example Response structure
|
|
@@ -1862,6 +1895,7 @@ module Aws::ConnectCases
|
|
|
1862
1895
|
# * {Types::GetTemplateResponse#created_time #created_time} => Time
|
|
1863
1896
|
# * {Types::GetTemplateResponse#last_modified_time #last_modified_time} => Time
|
|
1864
1897
|
# * {Types::GetTemplateResponse#rules #rules} => Array<Types::TemplateRule>
|
|
1898
|
+
# * {Types::GetTemplateResponse#tag_propagation_configurations #tag_propagation_configurations} => Array<Types::TagPropagationConfiguration>
|
|
1865
1899
|
#
|
|
1866
1900
|
# @example Request syntax with placeholder values
|
|
1867
1901
|
#
|
|
@@ -1888,6 +1922,10 @@ module Aws::ConnectCases
|
|
|
1888
1922
|
# resp.rules #=> Array
|
|
1889
1923
|
# resp.rules[0].case_rule_id #=> String
|
|
1890
1924
|
# resp.rules[0].field_id #=> String
|
|
1925
|
+
# resp.tag_propagation_configurations #=> Array
|
|
1926
|
+
# resp.tag_propagation_configurations[0].resource_type #=> String, one of "Cases"
|
|
1927
|
+
# resp.tag_propagation_configurations[0].tag_map #=> Hash
|
|
1928
|
+
# resp.tag_propagation_configurations[0].tag_map["MutableTagKey"] #=> String
|
|
1891
1929
|
#
|
|
1892
1930
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/GetTemplate AWS API Documentation
|
|
1893
1931
|
#
|
|
@@ -2131,6 +2169,7 @@ module Aws::ConnectCases
|
|
|
2131
2169
|
# resp.fields[0].name #=> String
|
|
2132
2170
|
# resp.fields[0].type #=> String, one of "Text", "Number", "Boolean", "DateTime", "SingleSelect", "Url", "User"
|
|
2133
2171
|
# resp.fields[0].namespace #=> String, one of "System", "Custom"
|
|
2172
|
+
# resp.fields[0].attributes.text.is_multiline #=> Boolean
|
|
2134
2173
|
# resp.next_token #=> String
|
|
2135
2174
|
#
|
|
2136
2175
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/ListFields AWS API Documentation
|
|
@@ -2274,6 +2313,10 @@ module Aws::ConnectCases
|
|
|
2274
2313
|
# resp.templates[0].template_arn #=> String
|
|
2275
2314
|
# resp.templates[0].name #=> String
|
|
2276
2315
|
# resp.templates[0].status #=> String, one of "Active", "Inactive"
|
|
2316
|
+
# resp.templates[0].tag_propagation_configurations #=> Array
|
|
2317
|
+
# resp.templates[0].tag_propagation_configurations[0].resource_type #=> String, one of "Cases"
|
|
2318
|
+
# resp.templates[0].tag_propagation_configurations[0].tag_map #=> Hash
|
|
2319
|
+
# resp.templates[0].tag_propagation_configurations[0].tag_map["MutableTagKey"] #=> String
|
|
2277
2320
|
# resp.next_token #=> String
|
|
2278
2321
|
#
|
|
2279
2322
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/ListTemplates AWS API Documentation
|
|
@@ -2601,6 +2644,7 @@ module Aws::ConnectCases
|
|
|
2601
2644
|
#
|
|
2602
2645
|
# * {Types::SearchCasesResponse#next_token #next_token} => String
|
|
2603
2646
|
# * {Types::SearchCasesResponse#cases #cases} => Array<Types::SearchCasesResponseItem>
|
|
2647
|
+
# * {Types::SearchCasesResponse#total_count #total_count} => Integer
|
|
2604
2648
|
#
|
|
2605
2649
|
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
2606
2650
|
#
|
|
@@ -2683,6 +2727,12 @@ module Aws::ConnectCases
|
|
|
2683
2727
|
# not: {
|
|
2684
2728
|
# # recursive CaseFilter
|
|
2685
2729
|
# },
|
|
2730
|
+
# tag: {
|
|
2731
|
+
# equal_to: {
|
|
2732
|
+
# key: "SearchTagKey",
|
|
2733
|
+
# value: "TagValueString",
|
|
2734
|
+
# },
|
|
2735
|
+
# },
|
|
2686
2736
|
# and_all: [
|
|
2687
2737
|
# {
|
|
2688
2738
|
# # recursive CaseFilter
|
|
@@ -2721,6 +2771,7 @@ module Aws::ConnectCases
|
|
|
2721
2771
|
# resp.cases[0].fields[0].value.user_arn_value #=> String
|
|
2722
2772
|
# resp.cases[0].tags #=> Hash
|
|
2723
2773
|
# resp.cases[0].tags["String"] #=> String
|
|
2774
|
+
# resp.total_count #=> Integer
|
|
2724
2775
|
#
|
|
2725
2776
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/SearchCases AWS API Documentation
|
|
2726
2777
|
#
|
|
@@ -3179,6 +3230,9 @@ module Aws::ConnectCases
|
|
|
3179
3230
|
# @option params [String] :description
|
|
3180
3231
|
# The description of a field.
|
|
3181
3232
|
#
|
|
3233
|
+
# @option params [Types::FieldAttributes] :attributes
|
|
3234
|
+
# Union of field attributes.
|
|
3235
|
+
#
|
|
3182
3236
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
3183
3237
|
#
|
|
3184
3238
|
# @example Request syntax with placeholder values
|
|
@@ -3188,6 +3242,11 @@ module Aws::ConnectCases
|
|
|
3188
3242
|
# field_id: "FieldId", # required
|
|
3189
3243
|
# name: "FieldName",
|
|
3190
3244
|
# description: "FieldDescription",
|
|
3245
|
+
# attributes: {
|
|
3246
|
+
# text: {
|
|
3247
|
+
# is_multiline: false, # required
|
|
3248
|
+
# },
|
|
3249
|
+
# },
|
|
3191
3250
|
# })
|
|
3192
3251
|
#
|
|
3193
3252
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/UpdateField AWS API Documentation
|
|
@@ -3330,6 +3389,11 @@ module Aws::ConnectCases
|
|
|
3330
3389
|
#
|
|
3331
3390
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/case-field-conditions.html
|
|
3332
3391
|
#
|
|
3392
|
+
# @option params [Array<Types::TagPropagationConfiguration>] :tag_propagation_configurations
|
|
3393
|
+
# Defines tag propagation configuration for resources created within a
|
|
3394
|
+
# domain. Tags specified here will be automatically applied to resources
|
|
3395
|
+
# being created for the specified resource type.
|
|
3396
|
+
#
|
|
3333
3397
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
3334
3398
|
#
|
|
3335
3399
|
# @example Request syntax with placeholder values
|
|
@@ -3354,6 +3418,14 @@ module Aws::ConnectCases
|
|
|
3354
3418
|
# field_id: "FieldId",
|
|
3355
3419
|
# },
|
|
3356
3420
|
# ],
|
|
3421
|
+
# tag_propagation_configurations: [
|
|
3422
|
+
# {
|
|
3423
|
+
# resource_type: "Cases", # required, accepts Cases
|
|
3424
|
+
# tag_map: { # required
|
|
3425
|
+
# "MutableTagKey" => "TagValueString",
|
|
3426
|
+
# },
|
|
3427
|
+
# },
|
|
3428
|
+
# ],
|
|
3357
3429
|
# })
|
|
3358
3430
|
#
|
|
3359
3431
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/UpdateTemplate AWS API Documentation
|
|
@@ -3383,7 +3455,7 @@ module Aws::ConnectCases
|
|
|
3383
3455
|
tracer: tracer
|
|
3384
3456
|
)
|
|
3385
3457
|
context[:gem_name] = 'aws-sdk-connectcases'
|
|
3386
|
-
context[:gem_version] = '1.
|
|
3458
|
+
context[:gem_version] = '1.61.0'
|
|
3387
3459
|
Seahorse::Client::Request.new(handlers, context)
|
|
3388
3460
|
end
|
|
3389
3461
|
|
|
@@ -130,6 +130,7 @@ module Aws::ConnectCases
|
|
|
130
130
|
EventBridgeConfiguration = Shapes::StructureShape.new(name: 'EventBridgeConfiguration')
|
|
131
131
|
EventIncludedData = Shapes::StructureShape.new(name: 'EventIncludedData')
|
|
132
132
|
FieldArn = Shapes::StringShape.new(name: 'FieldArn')
|
|
133
|
+
FieldAttributes = Shapes::UnionShape.new(name: 'FieldAttributes')
|
|
133
134
|
FieldDescription = Shapes::StringShape.new(name: 'FieldDescription')
|
|
134
135
|
FieldError = Shapes::StructureShape.new(name: 'FieldError')
|
|
135
136
|
FieldFilter = Shapes::UnionShape.new(name: 'FieldFilter')
|
|
@@ -210,6 +211,8 @@ module Aws::ConnectCases
|
|
|
210
211
|
ListTemplatesResponse = Shapes::StructureShape.new(name: 'ListTemplatesResponse')
|
|
211
212
|
ListTemplatesResponseTemplatesList = Shapes::ListShape.new(name: 'ListTemplatesResponseTemplatesList')
|
|
212
213
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
|
214
|
+
MutableTagKey = Shapes::StringShape.new(name: 'MutableTagKey')
|
|
215
|
+
MutableTags = Shapes::MapShape.new(name: 'MutableTags')
|
|
213
216
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
|
214
217
|
OperandOne = Shapes::UnionShape.new(name: 'OperandOne')
|
|
215
218
|
OperandTwo = Shapes::UnionShape.new(name: 'OperandTwo')
|
|
@@ -257,6 +260,7 @@ module Aws::ConnectCases
|
|
|
257
260
|
SearchRelatedItemsResponse = Shapes::StructureShape.new(name: 'SearchRelatedItemsResponse')
|
|
258
261
|
SearchRelatedItemsResponseItem = Shapes::StructureShape.new(name: 'SearchRelatedItemsResponseItem')
|
|
259
262
|
SearchRelatedItemsResponseRelatedItemsList = Shapes::ListShape.new(name: 'SearchRelatedItemsResponseRelatedItemsList')
|
|
263
|
+
SearchTagKey = Shapes::StringShape.new(name: 'SearchTagKey')
|
|
260
264
|
Section = Shapes::UnionShape.new(name: 'Section')
|
|
261
265
|
SectionsList = Shapes::ListShape.new(name: 'SectionsList')
|
|
262
266
|
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
|
@@ -273,9 +277,16 @@ module Aws::ConnectCases
|
|
|
273
277
|
SlaType = Shapes::StringShape.new(name: 'SlaType')
|
|
274
278
|
Sort = Shapes::StructureShape.new(name: 'Sort')
|
|
275
279
|
String = Shapes::StringShape.new(name: 'String')
|
|
280
|
+
TagFilter = Shapes::UnionShape.new(name: 'TagFilter')
|
|
276
281
|
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
|
277
282
|
TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
|
|
283
|
+
TagPropagationConfiguration = Shapes::StructureShape.new(name: 'TagPropagationConfiguration')
|
|
284
|
+
TagPropagationConfigurationList = Shapes::ListShape.new(name: 'TagPropagationConfigurationList')
|
|
285
|
+
TagPropagationConfigurationTagMapMap = Shapes::MapShape.new(name: 'TagPropagationConfigurationTagMapMap')
|
|
286
|
+
TagPropagationResourceType = Shapes::StringShape.new(name: 'TagPropagationResourceType')
|
|
278
287
|
TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
|
|
288
|
+
TagValue = Shapes::StructureShape.new(name: 'TagValue')
|
|
289
|
+
TagValueString = Shapes::StringShape.new(name: 'TagValueString')
|
|
279
290
|
Tags = Shapes::MapShape.new(name: 'Tags')
|
|
280
291
|
TargetSlaMinutes = Shapes::IntegerShape.new(name: 'TargetSlaMinutes')
|
|
281
292
|
TemplateArn = Shapes::StringShape.new(name: 'TemplateArn')
|
|
@@ -287,7 +298,9 @@ module Aws::ConnectCases
|
|
|
287
298
|
TemplateStatus = Shapes::StringShape.new(name: 'TemplateStatus')
|
|
288
299
|
TemplateStatusFilters = Shapes::ListShape.new(name: 'TemplateStatusFilters')
|
|
289
300
|
TemplateSummary = Shapes::StructureShape.new(name: 'TemplateSummary')
|
|
301
|
+
TextAttributes = Shapes::StructureShape.new(name: 'TextAttributes')
|
|
290
302
|
ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
|
|
303
|
+
TotalCount = Shapes::IntegerShape.new(name: 'TotalCount')
|
|
291
304
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
|
292
305
|
UpdateCaseRequest = Shapes::StructureShape.new(name: 'UpdateCaseRequest')
|
|
293
306
|
UpdateCaseRequestFieldsList = Shapes::ListShape.new(name: 'UpdateCaseRequestFieldsList')
|
|
@@ -409,11 +422,13 @@ module Aws::ConnectCases
|
|
|
409
422
|
|
|
410
423
|
CaseFilter.add_member(:field, Shapes::ShapeRef.new(shape: FieldFilter, location_name: "field"))
|
|
411
424
|
CaseFilter.add_member(:not, Shapes::ShapeRef.new(shape: CaseFilter, location_name: "not"))
|
|
425
|
+
CaseFilter.add_member(:tag, Shapes::ShapeRef.new(shape: TagFilter, location_name: "tag"))
|
|
412
426
|
CaseFilter.add_member(:and_all, Shapes::ShapeRef.new(shape: CaseFilterAndAllList, location_name: "andAll"))
|
|
413
427
|
CaseFilter.add_member(:or_all, Shapes::ShapeRef.new(shape: CaseFilterOrAllList, location_name: "orAll"))
|
|
414
428
|
CaseFilter.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
415
429
|
CaseFilter.add_member_subclass(:field, Types::CaseFilter::Field)
|
|
416
430
|
CaseFilter.add_member_subclass(:not, Types::CaseFilter::Not)
|
|
431
|
+
CaseFilter.add_member_subclass(:tag, Types::CaseFilter::Tag)
|
|
417
432
|
CaseFilter.add_member_subclass(:and_all, Types::CaseFilter::AndAll)
|
|
418
433
|
CaseFilter.add_member_subclass(:or_all, Types::CaseFilter::OrAll)
|
|
419
434
|
CaseFilter.add_member_subclass(:unknown, Types::CaseFilter::Unknown)
|
|
@@ -491,6 +506,7 @@ module Aws::ConnectCases
|
|
|
491
506
|
CreateCaseRequest.add_member(:fields, Shapes::ShapeRef.new(shape: CreateCaseRequestFieldsList, required: true, location_name: "fields"))
|
|
492
507
|
CreateCaseRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: CreateCaseRequestClientTokenString, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
493
508
|
CreateCaseRequest.add_member(:performed_by, Shapes::ShapeRef.new(shape: UserUnion, location_name: "performedBy"))
|
|
509
|
+
CreateCaseRequest.add_member(:tags, Shapes::ShapeRef.new(shape: MutableTags, location_name: "tags"))
|
|
494
510
|
CreateCaseRequest.struct_class = Types::CreateCaseRequest
|
|
495
511
|
|
|
496
512
|
CreateCaseRequestFieldsList.member = Shapes::ShapeRef.new(shape: FieldValue)
|
|
@@ -521,6 +537,7 @@ module Aws::ConnectCases
|
|
|
521
537
|
CreateFieldRequest.add_member(:name, Shapes::ShapeRef.new(shape: FieldName, required: true, location_name: "name"))
|
|
522
538
|
CreateFieldRequest.add_member(:type, Shapes::ShapeRef.new(shape: FieldType, required: true, location_name: "type"))
|
|
523
539
|
CreateFieldRequest.add_member(:description, Shapes::ShapeRef.new(shape: FieldDescription, location_name: "description"))
|
|
540
|
+
CreateFieldRequest.add_member(:attributes, Shapes::ShapeRef.new(shape: FieldAttributes, location_name: "attributes"))
|
|
524
541
|
CreateFieldRequest.struct_class = Types::CreateFieldRequest
|
|
525
542
|
|
|
526
543
|
CreateFieldResponse.add_member(:field_id, Shapes::ShapeRef.new(shape: FieldId, required: true, location_name: "fieldId"))
|
|
@@ -554,6 +571,7 @@ module Aws::ConnectCases
|
|
|
554
571
|
CreateTemplateRequest.add_member(:required_fields, Shapes::ShapeRef.new(shape: RequiredFieldList, location_name: "requiredFields"))
|
|
555
572
|
CreateTemplateRequest.add_member(:status, Shapes::ShapeRef.new(shape: TemplateStatus, location_name: "status"))
|
|
556
573
|
CreateTemplateRequest.add_member(:rules, Shapes::ShapeRef.new(shape: TemplateCaseRuleList, location_name: "rules"))
|
|
574
|
+
CreateTemplateRequest.add_member(:tag_propagation_configurations, Shapes::ShapeRef.new(shape: TagPropagationConfigurationList, location_name: "tagPropagationConfigurations"))
|
|
557
575
|
CreateTemplateRequest.struct_class = Types::CreateTemplateRequest
|
|
558
576
|
|
|
559
577
|
CreateTemplateResponse.add_member(:template_id, Shapes::ShapeRef.new(shape: TemplateId, required: true, location_name: "templateId"))
|
|
@@ -648,6 +666,12 @@ module Aws::ConnectCases
|
|
|
648
666
|
EventIncludedData.add_member(:related_item_data, Shapes::ShapeRef.new(shape: RelatedItemEventIncludedData, location_name: "relatedItemData"))
|
|
649
667
|
EventIncludedData.struct_class = Types::EventIncludedData
|
|
650
668
|
|
|
669
|
+
FieldAttributes.add_member(:text, Shapes::ShapeRef.new(shape: TextAttributes, location_name: "text"))
|
|
670
|
+
FieldAttributes.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
671
|
+
FieldAttributes.add_member_subclass(:text, Types::FieldAttributes::Text)
|
|
672
|
+
FieldAttributes.add_member_subclass(:unknown, Types::FieldAttributes::Unknown)
|
|
673
|
+
FieldAttributes.struct_class = Types::FieldAttributes
|
|
674
|
+
|
|
651
675
|
FieldError.add_member(:id, Shapes::ShapeRef.new(shape: FieldId, required: true, location_name: "id"))
|
|
652
676
|
FieldError.add_member(:error_code, Shapes::ShapeRef.new(shape: String, required: true, location_name: "errorCode"))
|
|
653
677
|
FieldError.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
@@ -703,6 +727,7 @@ module Aws::ConnectCases
|
|
|
703
727
|
FieldSummary.add_member(:name, Shapes::ShapeRef.new(shape: FieldName, required: true, location_name: "name"))
|
|
704
728
|
FieldSummary.add_member(:type, Shapes::ShapeRef.new(shape: FieldType, required: true, location_name: "type"))
|
|
705
729
|
FieldSummary.add_member(:namespace, Shapes::ShapeRef.new(shape: FieldNamespace, required: true, location_name: "namespace"))
|
|
730
|
+
FieldSummary.add_member(:attributes, Shapes::ShapeRef.new(shape: FieldAttributes, location_name: "attributes"))
|
|
706
731
|
FieldSummary.struct_class = Types::FieldSummary
|
|
707
732
|
|
|
708
733
|
FieldValue.add_member(:id, Shapes::ShapeRef.new(shape: FieldId, required: true, location_name: "id"))
|
|
@@ -797,6 +822,7 @@ module Aws::ConnectCases
|
|
|
797
822
|
GetFieldResponse.add_member(:deleted, Shapes::ShapeRef.new(shape: Deleted, location_name: "deleted"))
|
|
798
823
|
GetFieldResponse.add_member(:created_time, Shapes::ShapeRef.new(shape: CreatedTime, location_name: "createdTime"))
|
|
799
824
|
GetFieldResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: LastModifiedTime, location_name: "lastModifiedTime"))
|
|
825
|
+
GetFieldResponse.add_member(:attributes, Shapes::ShapeRef.new(shape: FieldAttributes, location_name: "attributes"))
|
|
800
826
|
GetFieldResponse.struct_class = Types::GetFieldResponse
|
|
801
827
|
|
|
802
828
|
GetLayoutRequest.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainId"))
|
|
@@ -829,6 +855,7 @@ module Aws::ConnectCases
|
|
|
829
855
|
GetTemplateResponse.add_member(:created_time, Shapes::ShapeRef.new(shape: CreatedTime, location_name: "createdTime"))
|
|
830
856
|
GetTemplateResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: LastModifiedTime, location_name: "lastModifiedTime"))
|
|
831
857
|
GetTemplateResponse.add_member(:rules, Shapes::ShapeRef.new(shape: TemplateCaseRuleList, location_name: "rules"))
|
|
858
|
+
GetTemplateResponse.add_member(:tag_propagation_configurations, Shapes::ShapeRef.new(shape: TagPropagationConfigurationList, location_name: "tagPropagationConfigurations"))
|
|
832
859
|
GetTemplateResponse.struct_class = Types::GetTemplateResponse
|
|
833
860
|
|
|
834
861
|
HiddenCaseRule.add_member(:default_value, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "defaultValue"))
|
|
@@ -938,6 +965,9 @@ module Aws::ConnectCases
|
|
|
938
965
|
|
|
939
966
|
ListTemplatesResponseTemplatesList.member = Shapes::ShapeRef.new(shape: TemplateSummary)
|
|
940
967
|
|
|
968
|
+
MutableTags.key = Shapes::ShapeRef.new(shape: MutableTagKey)
|
|
969
|
+
MutableTags.value = Shapes::ShapeRef.new(shape: TagValueString)
|
|
970
|
+
|
|
941
971
|
OperandOne.add_member(:field_id, Shapes::ShapeRef.new(shape: FieldId, location_name: "fieldId"))
|
|
942
972
|
OperandOne.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
943
973
|
OperandOne.add_member_subclass(:field_id, Types::OperandOne::FieldId)
|
|
@@ -1080,6 +1110,7 @@ module Aws::ConnectCases
|
|
|
1080
1110
|
|
|
1081
1111
|
SearchCasesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
|
|
1082
1112
|
SearchCasesResponse.add_member(:cases, Shapes::ShapeRef.new(shape: SearchCasesResponseCasesList, required: true, location_name: "cases"))
|
|
1113
|
+
SearchCasesResponse.add_member(:total_count, Shapes::ShapeRef.new(shape: TotalCount, location_name: "totalCount"))
|
|
1083
1114
|
SearchCasesResponse.struct_class = Types::SearchCasesResponse
|
|
1084
1115
|
|
|
1085
1116
|
SearchCasesResponseCasesList.member = Shapes::ShapeRef.new(shape: SearchCasesResponseItem)
|
|
@@ -1161,12 +1192,31 @@ module Aws::ConnectCases
|
|
|
1161
1192
|
Sort.add_member(:sort_order, Shapes::ShapeRef.new(shape: Order, required: true, location_name: "sortOrder"))
|
|
1162
1193
|
Sort.struct_class = Types::Sort
|
|
1163
1194
|
|
|
1195
|
+
TagFilter.add_member(:equal_to, Shapes::ShapeRef.new(shape: TagValue, location_name: "equalTo"))
|
|
1196
|
+
TagFilter.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
1197
|
+
TagFilter.add_member_subclass(:equal_to, Types::TagFilter::EqualTo)
|
|
1198
|
+
TagFilter.add_member_subclass(:unknown, Types::TagFilter::Unknown)
|
|
1199
|
+
TagFilter.struct_class = Types::TagFilter
|
|
1200
|
+
|
|
1164
1201
|
TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
|
|
1165
1202
|
|
|
1203
|
+
TagPropagationConfiguration.add_member(:resource_type, Shapes::ShapeRef.new(shape: TagPropagationResourceType, required: true, location_name: "resourceType"))
|
|
1204
|
+
TagPropagationConfiguration.add_member(:tag_map, Shapes::ShapeRef.new(shape: TagPropagationConfigurationTagMapMap, required: true, location_name: "tagMap"))
|
|
1205
|
+
TagPropagationConfiguration.struct_class = Types::TagPropagationConfiguration
|
|
1206
|
+
|
|
1207
|
+
TagPropagationConfigurationList.member = Shapes::ShapeRef.new(shape: TagPropagationConfiguration)
|
|
1208
|
+
|
|
1209
|
+
TagPropagationConfigurationTagMapMap.key = Shapes::ShapeRef.new(shape: MutableTagKey)
|
|
1210
|
+
TagPropagationConfigurationTagMapMap.value = Shapes::ShapeRef.new(shape: TagValueString)
|
|
1211
|
+
|
|
1166
1212
|
TagResourceRequest.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location: "uri", location_name: "arn"))
|
|
1167
1213
|
TagResourceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, required: true, location_name: "tags"))
|
|
1168
1214
|
TagResourceRequest.struct_class = Types::TagResourceRequest
|
|
1169
1215
|
|
|
1216
|
+
TagValue.add_member(:key, Shapes::ShapeRef.new(shape: SearchTagKey, location_name: "key"))
|
|
1217
|
+
TagValue.add_member(:value, Shapes::ShapeRef.new(shape: TagValueString, location_name: "value"))
|
|
1218
|
+
TagValue.struct_class = Types::TagValue
|
|
1219
|
+
|
|
1170
1220
|
Tags.key = Shapes::ShapeRef.new(shape: String)
|
|
1171
1221
|
Tags.value = Shapes::ShapeRef.new(shape: String)
|
|
1172
1222
|
|
|
@@ -1182,8 +1232,12 @@ module Aws::ConnectCases
|
|
|
1182
1232
|
TemplateSummary.add_member(:template_arn, Shapes::ShapeRef.new(shape: TemplateArn, required: true, location_name: "templateArn"))
|
|
1183
1233
|
TemplateSummary.add_member(:name, Shapes::ShapeRef.new(shape: TemplateName, required: true, location_name: "name"))
|
|
1184
1234
|
TemplateSummary.add_member(:status, Shapes::ShapeRef.new(shape: TemplateStatus, required: true, location_name: "status"))
|
|
1235
|
+
TemplateSummary.add_member(:tag_propagation_configurations, Shapes::ShapeRef.new(shape: TagPropagationConfigurationList, location_name: "tagPropagationConfigurations"))
|
|
1185
1236
|
TemplateSummary.struct_class = Types::TemplateSummary
|
|
1186
1237
|
|
|
1238
|
+
TextAttributes.add_member(:is_multiline, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isMultiline"))
|
|
1239
|
+
TextAttributes.struct_class = Types::TextAttributes
|
|
1240
|
+
|
|
1187
1241
|
ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
|
1188
1242
|
ThrottlingException.struct_class = Types::ThrottlingException
|
|
1189
1243
|
|
|
@@ -1214,6 +1268,7 @@ module Aws::ConnectCases
|
|
|
1214
1268
|
UpdateFieldRequest.add_member(:field_id, Shapes::ShapeRef.new(shape: FieldId, required: true, location: "uri", location_name: "fieldId"))
|
|
1215
1269
|
UpdateFieldRequest.add_member(:name, Shapes::ShapeRef.new(shape: FieldName, location_name: "name"))
|
|
1216
1270
|
UpdateFieldRequest.add_member(:description, Shapes::ShapeRef.new(shape: FieldDescription, location_name: "description"))
|
|
1271
|
+
UpdateFieldRequest.add_member(:attributes, Shapes::ShapeRef.new(shape: FieldAttributes, location_name: "attributes"))
|
|
1217
1272
|
UpdateFieldRequest.struct_class = Types::UpdateFieldRequest
|
|
1218
1273
|
|
|
1219
1274
|
UpdateFieldResponse.struct_class = Types::UpdateFieldResponse
|
|
@@ -1234,6 +1289,7 @@ module Aws::ConnectCases
|
|
|
1234
1289
|
UpdateTemplateRequest.add_member(:required_fields, Shapes::ShapeRef.new(shape: RequiredFieldList, location_name: "requiredFields"))
|
|
1235
1290
|
UpdateTemplateRequest.add_member(:status, Shapes::ShapeRef.new(shape: TemplateStatus, location_name: "status"))
|
|
1236
1291
|
UpdateTemplateRequest.add_member(:rules, Shapes::ShapeRef.new(shape: TemplateCaseRuleList, location_name: "rules"))
|
|
1292
|
+
UpdateTemplateRequest.add_member(:tag_propagation_configurations, Shapes::ShapeRef.new(shape: TagPropagationConfigurationList, location_name: "tagPropagationConfigurations"))
|
|
1237
1293
|
UpdateTemplateRequest.struct_class = Types::UpdateTemplateRequest
|
|
1238
1294
|
|
|
1239
1295
|
UpdateTemplateResponse.struct_class = Types::UpdateTemplateResponse
|
|
@@ -378,6 +378,10 @@ module Aws::ConnectCases
|
|
|
378
378
|
# A filter for cases. Only one value can be provided.
|
|
379
379
|
# @return [Types::CaseFilter]
|
|
380
380
|
#
|
|
381
|
+
# @!attribute [rw] tag
|
|
382
|
+
# A list of tags to filter on.
|
|
383
|
+
# @return [Types::TagFilter]
|
|
384
|
+
#
|
|
381
385
|
# @!attribute [rw] and_all
|
|
382
386
|
# Provides "and all" filtering.
|
|
383
387
|
# @return [Array<Types::CaseFilter>]
|
|
@@ -391,6 +395,7 @@ module Aws::ConnectCases
|
|
|
391
395
|
class CaseFilter < Struct.new(
|
|
392
396
|
:field,
|
|
393
397
|
:not,
|
|
398
|
+
:tag,
|
|
394
399
|
:and_all,
|
|
395
400
|
:or_all,
|
|
396
401
|
:unknown)
|
|
@@ -400,6 +405,7 @@ module Aws::ConnectCases
|
|
|
400
405
|
|
|
401
406
|
class Field < CaseFilter; end
|
|
402
407
|
class Not < CaseFilter; end
|
|
408
|
+
class Tag < CaseFilter; end
|
|
403
409
|
class AndAll < CaseFilter; end
|
|
404
410
|
class OrAll < CaseFilter; end
|
|
405
411
|
class Unknown < CaseFilter; end
|
|
@@ -728,6 +734,11 @@ module Aws::ConnectCases
|
|
|
728
734
|
# Represents the entity that performed the action.
|
|
729
735
|
# @return [Types::UserUnion]
|
|
730
736
|
#
|
|
737
|
+
# @!attribute [rw] tags
|
|
738
|
+
# A map of of key-value pairs that represent tags on a resource. Tags
|
|
739
|
+
# are used to organize, track, or control access for this resource.
|
|
740
|
+
# @return [Hash<String,String>]
|
|
741
|
+
#
|
|
731
742
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/CreateCaseRequest AWS API Documentation
|
|
732
743
|
#
|
|
733
744
|
class CreateCaseRequest < Struct.new(
|
|
@@ -735,7 +746,8 @@ module Aws::ConnectCases
|
|
|
735
746
|
:template_id,
|
|
736
747
|
:fields,
|
|
737
748
|
:client_token,
|
|
738
|
-
:performed_by
|
|
749
|
+
:performed_by,
|
|
750
|
+
:tags)
|
|
739
751
|
SENSITIVE = []
|
|
740
752
|
include Aws::Structure
|
|
741
753
|
end
|
|
@@ -853,13 +865,18 @@ module Aws::ConnectCases
|
|
|
853
865
|
# The description of the field.
|
|
854
866
|
# @return [String]
|
|
855
867
|
#
|
|
868
|
+
# @!attribute [rw] attributes
|
|
869
|
+
# Union of field attributes.
|
|
870
|
+
# @return [Types::FieldAttributes]
|
|
871
|
+
#
|
|
856
872
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/CreateFieldRequest AWS API Documentation
|
|
857
873
|
#
|
|
858
874
|
class CreateFieldRequest < Struct.new(
|
|
859
875
|
:domain_id,
|
|
860
876
|
:name,
|
|
861
877
|
:type,
|
|
862
|
-
:description
|
|
878
|
+
:description,
|
|
879
|
+
:attributes)
|
|
863
880
|
SENSITIVE = []
|
|
864
881
|
include Aws::Structure
|
|
865
882
|
end
|
|
@@ -1004,6 +1021,12 @@ module Aws::ConnectCases
|
|
|
1004
1021
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/case-field-conditions.html
|
|
1005
1022
|
# @return [Array<Types::TemplateRule>]
|
|
1006
1023
|
#
|
|
1024
|
+
# @!attribute [rw] tag_propagation_configurations
|
|
1025
|
+
# Defines tag propagation configuration for resources created within a
|
|
1026
|
+
# domain. Tags specified here will be automatically applied to
|
|
1027
|
+
# resources being created for the specified resource type.
|
|
1028
|
+
# @return [Array<Types::TagPropagationConfiguration>]
|
|
1029
|
+
#
|
|
1007
1030
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/CreateTemplateRequest AWS API Documentation
|
|
1008
1031
|
#
|
|
1009
1032
|
class CreateTemplateRequest < Struct.new(
|
|
@@ -1013,7 +1036,8 @@ module Aws::ConnectCases
|
|
|
1013
1036
|
:layout_configuration,
|
|
1014
1037
|
:required_fields,
|
|
1015
1038
|
:status,
|
|
1016
|
-
:rules
|
|
1039
|
+
:rules,
|
|
1040
|
+
:tag_propagation_configurations)
|
|
1017
1041
|
SENSITIVE = []
|
|
1018
1042
|
include Aws::Structure
|
|
1019
1043
|
end
|
|
@@ -1358,6 +1382,29 @@ module Aws::ConnectCases
|
|
|
1358
1382
|
include Aws::Structure
|
|
1359
1383
|
end
|
|
1360
1384
|
|
|
1385
|
+
# Union of field attributes.
|
|
1386
|
+
#
|
|
1387
|
+
# @note FieldAttributes is a union - when making an API calls you must set exactly one of the members.
|
|
1388
|
+
#
|
|
1389
|
+
# @note FieldAttributes is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of FieldAttributes corresponding to the set member.
|
|
1390
|
+
#
|
|
1391
|
+
# @!attribute [rw] text
|
|
1392
|
+
# Field attributes for Text field type.
|
|
1393
|
+
# @return [Types::TextAttributes]
|
|
1394
|
+
#
|
|
1395
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/FieldAttributes AWS API Documentation
|
|
1396
|
+
#
|
|
1397
|
+
class FieldAttributes < Struct.new(
|
|
1398
|
+
:text,
|
|
1399
|
+
:unknown)
|
|
1400
|
+
SENSITIVE = []
|
|
1401
|
+
include Aws::Structure
|
|
1402
|
+
include Aws::Structure::Union
|
|
1403
|
+
|
|
1404
|
+
class Text < FieldAttributes; end
|
|
1405
|
+
class Unknown < FieldAttributes; end
|
|
1406
|
+
end
|
|
1407
|
+
|
|
1361
1408
|
# Object for errors on fields.
|
|
1362
1409
|
#
|
|
1363
1410
|
# @!attribute [rw] id
|
|
@@ -1578,6 +1625,10 @@ module Aws::ConnectCases
|
|
|
1578
1625
|
# The namespace of a field.
|
|
1579
1626
|
# @return [String]
|
|
1580
1627
|
#
|
|
1628
|
+
# @!attribute [rw] attributes
|
|
1629
|
+
# Union of field attributes.
|
|
1630
|
+
# @return [Types::FieldAttributes]
|
|
1631
|
+
#
|
|
1581
1632
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/FieldSummary AWS API Documentation
|
|
1582
1633
|
#
|
|
1583
1634
|
class FieldSummary < Struct.new(
|
|
@@ -1585,7 +1636,8 @@ module Aws::ConnectCases
|
|
|
1585
1636
|
:field_arn,
|
|
1586
1637
|
:name,
|
|
1587
1638
|
:type,
|
|
1588
|
-
:namespace
|
|
1639
|
+
:namespace,
|
|
1640
|
+
:attributes)
|
|
1589
1641
|
SENSITIVE = []
|
|
1590
1642
|
include Aws::Structure
|
|
1591
1643
|
end
|
|
@@ -1978,6 +2030,10 @@ module Aws::ConnectCases
|
|
|
1978
2030
|
# Timestamp at which the resource was created or last modified.
|
|
1979
2031
|
# @return [Time]
|
|
1980
2032
|
#
|
|
2033
|
+
# @!attribute [rw] attributes
|
|
2034
|
+
# Union of field attributes.
|
|
2035
|
+
# @return [Types::FieldAttributes]
|
|
2036
|
+
#
|
|
1981
2037
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/GetFieldResponse AWS API Documentation
|
|
1982
2038
|
#
|
|
1983
2039
|
class GetFieldResponse < Struct.new(
|
|
@@ -1990,7 +2046,8 @@ module Aws::ConnectCases
|
|
|
1990
2046
|
:tags,
|
|
1991
2047
|
:deleted,
|
|
1992
2048
|
:created_time,
|
|
1993
|
-
:last_modified_time
|
|
2049
|
+
:last_modified_time,
|
|
2050
|
+
:attributes)
|
|
1994
2051
|
SENSITIVE = []
|
|
1995
2052
|
include Aws::Structure
|
|
1996
2053
|
end
|
|
@@ -2133,6 +2190,12 @@ module Aws::ConnectCases
|
|
|
2133
2190
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/case-field-conditions.html
|
|
2134
2191
|
# @return [Array<Types::TemplateRule>]
|
|
2135
2192
|
#
|
|
2193
|
+
# @!attribute [rw] tag_propagation_configurations
|
|
2194
|
+
# Defines tag propagation configuration for resources created within a
|
|
2195
|
+
# domain. Tags specified here will be automatically applied to
|
|
2196
|
+
# resources being created for the specified resource type.
|
|
2197
|
+
# @return [Array<Types::TagPropagationConfiguration>]
|
|
2198
|
+
#
|
|
2136
2199
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/GetTemplateResponse AWS API Documentation
|
|
2137
2200
|
#
|
|
2138
2201
|
class GetTemplateResponse < Struct.new(
|
|
@@ -2147,7 +2210,8 @@ module Aws::ConnectCases
|
|
|
2147
2210
|
:deleted,
|
|
2148
2211
|
:created_time,
|
|
2149
2212
|
:last_modified_time,
|
|
2150
|
-
:rules
|
|
2213
|
+
:rules,
|
|
2214
|
+
:tag_propagation_configurations)
|
|
2151
2215
|
SENSITIVE = []
|
|
2152
2216
|
include Aws::Structure
|
|
2153
2217
|
end
|
|
@@ -3147,11 +3211,16 @@ module Aws::ConnectCases
|
|
|
3147
3211
|
# `CaseId` and `Fields` where each field is a complex union structure.
|
|
3148
3212
|
# @return [Array<Types::SearchCasesResponseItem>]
|
|
3149
3213
|
#
|
|
3214
|
+
# @!attribute [rw] total_count
|
|
3215
|
+
# The total number of cases that matched the search criteria.
|
|
3216
|
+
# @return [Integer]
|
|
3217
|
+
#
|
|
3150
3218
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/SearchCasesResponse AWS API Documentation
|
|
3151
3219
|
#
|
|
3152
3220
|
class SearchCasesResponse < Struct.new(
|
|
3153
3221
|
:next_token,
|
|
3154
|
-
:cases
|
|
3222
|
+
:cases,
|
|
3223
|
+
:total_count)
|
|
3155
3224
|
SENSITIVE = []
|
|
3156
3225
|
include Aws::Structure
|
|
3157
3226
|
end
|
|
@@ -3475,6 +3544,49 @@ module Aws::ConnectCases
|
|
|
3475
3544
|
include Aws::Structure
|
|
3476
3545
|
end
|
|
3477
3546
|
|
|
3547
|
+
# A filter for tags. Only one value can be provided.
|
|
3548
|
+
#
|
|
3549
|
+
# @note TagFilter is a union - when making an API calls you must set exactly one of the members.
|
|
3550
|
+
#
|
|
3551
|
+
# @!attribute [rw] equal_to
|
|
3552
|
+
# Object containing tag key and value information.
|
|
3553
|
+
# @return [Types::TagValue]
|
|
3554
|
+
#
|
|
3555
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/TagFilter AWS API Documentation
|
|
3556
|
+
#
|
|
3557
|
+
class TagFilter < Struct.new(
|
|
3558
|
+
:equal_to,
|
|
3559
|
+
:unknown)
|
|
3560
|
+
SENSITIVE = []
|
|
3561
|
+
include Aws::Structure
|
|
3562
|
+
include Aws::Structure::Union
|
|
3563
|
+
|
|
3564
|
+
class EqualTo < TagFilter; end
|
|
3565
|
+
class Unknown < TagFilter; end
|
|
3566
|
+
end
|
|
3567
|
+
|
|
3568
|
+
# Defines tag propagation configuration for resources created within a
|
|
3569
|
+
# domain. Tags specified here will be automatically applied to resources
|
|
3570
|
+
# being created for the specified resource type.
|
|
3571
|
+
#
|
|
3572
|
+
# @!attribute [rw] resource_type
|
|
3573
|
+
# Supported resource types for tag propagation. Determines which
|
|
3574
|
+
# resources will receive automatically propagated tags.
|
|
3575
|
+
# @return [String]
|
|
3576
|
+
#
|
|
3577
|
+
# @!attribute [rw] tag_map
|
|
3578
|
+
# The tags that will be applied to the created resource.
|
|
3579
|
+
# @return [Hash<String,String>]
|
|
3580
|
+
#
|
|
3581
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/TagPropagationConfiguration AWS API Documentation
|
|
3582
|
+
#
|
|
3583
|
+
class TagPropagationConfiguration < Struct.new(
|
|
3584
|
+
:resource_type,
|
|
3585
|
+
:tag_map)
|
|
3586
|
+
SENSITIVE = []
|
|
3587
|
+
include Aws::Structure
|
|
3588
|
+
end
|
|
3589
|
+
|
|
3478
3590
|
# @!attribute [rw] arn
|
|
3479
3591
|
# The Amazon Resource Name (ARN)
|
|
3480
3592
|
# @return [String]
|
|
@@ -3493,6 +3605,25 @@ module Aws::ConnectCases
|
|
|
3493
3605
|
include Aws::Structure
|
|
3494
3606
|
end
|
|
3495
3607
|
|
|
3608
|
+
# Object for case tag filter values.
|
|
3609
|
+
#
|
|
3610
|
+
# @!attribute [rw] key
|
|
3611
|
+
# The tag key in the tag filter value.
|
|
3612
|
+
# @return [String]
|
|
3613
|
+
#
|
|
3614
|
+
# @!attribute [rw] value
|
|
3615
|
+
# The tag value in the tag filter value.
|
|
3616
|
+
# @return [String]
|
|
3617
|
+
#
|
|
3618
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/TagValue AWS API Documentation
|
|
3619
|
+
#
|
|
3620
|
+
class TagValue < Struct.new(
|
|
3621
|
+
:key,
|
|
3622
|
+
:value)
|
|
3623
|
+
SENSITIVE = []
|
|
3624
|
+
include Aws::Structure
|
|
3625
|
+
end
|
|
3626
|
+
|
|
3496
3627
|
# An association representing a case rule acting upon a field. In the
|
|
3497
3628
|
# Amazon Connect admin website, case rules are known as *case field
|
|
3498
3629
|
# conditions*. For more information about case field conditions, see
|
|
@@ -3537,13 +3668,34 @@ module Aws::ConnectCases
|
|
|
3537
3668
|
# The status of the template.
|
|
3538
3669
|
# @return [String]
|
|
3539
3670
|
#
|
|
3671
|
+
# @!attribute [rw] tag_propagation_configurations
|
|
3672
|
+
# Defines tag propagation configuration for resources created within a
|
|
3673
|
+
# domain. Tags specified here will be automatically applied to
|
|
3674
|
+
# resources being created for the specified resource type.
|
|
3675
|
+
# @return [Array<Types::TagPropagationConfiguration>]
|
|
3676
|
+
#
|
|
3540
3677
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/TemplateSummary AWS API Documentation
|
|
3541
3678
|
#
|
|
3542
3679
|
class TemplateSummary < Struct.new(
|
|
3543
3680
|
:template_id,
|
|
3544
3681
|
:template_arn,
|
|
3545
3682
|
:name,
|
|
3546
|
-
:status
|
|
3683
|
+
:status,
|
|
3684
|
+
:tag_propagation_configurations)
|
|
3685
|
+
SENSITIVE = []
|
|
3686
|
+
include Aws::Structure
|
|
3687
|
+
end
|
|
3688
|
+
|
|
3689
|
+
# Field attributes for Text field type.
|
|
3690
|
+
#
|
|
3691
|
+
# @!attribute [rw] is_multiline
|
|
3692
|
+
# Attribute that defines rendering component and validation.
|
|
3693
|
+
# @return [Boolean]
|
|
3694
|
+
#
|
|
3695
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/TextAttributes AWS API Documentation
|
|
3696
|
+
#
|
|
3697
|
+
class TextAttributes < Struct.new(
|
|
3698
|
+
:is_multiline)
|
|
3547
3699
|
SENSITIVE = []
|
|
3548
3700
|
include Aws::Structure
|
|
3549
3701
|
end
|
|
@@ -3664,13 +3816,18 @@ module Aws::ConnectCases
|
|
|
3664
3816
|
# The description of a field.
|
|
3665
3817
|
# @return [String]
|
|
3666
3818
|
#
|
|
3819
|
+
# @!attribute [rw] attributes
|
|
3820
|
+
# Union of field attributes.
|
|
3821
|
+
# @return [Types::FieldAttributes]
|
|
3822
|
+
#
|
|
3667
3823
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/UpdateFieldRequest AWS API Documentation
|
|
3668
3824
|
#
|
|
3669
3825
|
class UpdateFieldRequest < Struct.new(
|
|
3670
3826
|
:domain_id,
|
|
3671
3827
|
:field_id,
|
|
3672
3828
|
:name,
|
|
3673
|
-
:description
|
|
3829
|
+
:description,
|
|
3830
|
+
:attributes)
|
|
3674
3831
|
SENSITIVE = []
|
|
3675
3832
|
include Aws::Structure
|
|
3676
3833
|
end
|
|
@@ -3749,6 +3906,12 @@ module Aws::ConnectCases
|
|
|
3749
3906
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/case-field-conditions.html
|
|
3750
3907
|
# @return [Array<Types::TemplateRule>]
|
|
3751
3908
|
#
|
|
3909
|
+
# @!attribute [rw] tag_propagation_configurations
|
|
3910
|
+
# Defines tag propagation configuration for resources created within a
|
|
3911
|
+
# domain. Tags specified here will be automatically applied to
|
|
3912
|
+
# resources being created for the specified resource type.
|
|
3913
|
+
# @return [Array<Types::TagPropagationConfiguration>]
|
|
3914
|
+
#
|
|
3752
3915
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/UpdateTemplateRequest AWS API Documentation
|
|
3753
3916
|
#
|
|
3754
3917
|
class UpdateTemplateRequest < Struct.new(
|
|
@@ -3759,7 +3922,8 @@ module Aws::ConnectCases
|
|
|
3759
3922
|
:layout_configuration,
|
|
3760
3923
|
:required_fields,
|
|
3761
3924
|
:status,
|
|
3762
|
-
:rules
|
|
3925
|
+
:rules,
|
|
3926
|
+
:tag_propagation_configurations)
|
|
3763
3927
|
SENSITIVE = []
|
|
3764
3928
|
include Aws::Structure
|
|
3765
3929
|
end
|
data/lib/aws-sdk-connectcases.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -155,7 +155,8 @@ module Aws
|
|
|
155
155
|
?performed_by: {
|
|
156
156
|
user_arn: ::String?,
|
|
157
157
|
custom_entity: ::String?
|
|
158
|
-
}
|
|
158
|
+
},
|
|
159
|
+
?tags: Hash[::String, ::String]
|
|
159
160
|
) -> _CreateCaseResponseSuccess
|
|
160
161
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCaseResponseSuccess
|
|
161
162
|
|
|
@@ -272,7 +273,12 @@ module Aws
|
|
|
272
273
|
domain_id: ::String,
|
|
273
274
|
name: ::String,
|
|
274
275
|
type: ("Text" | "Number" | "Boolean" | "DateTime" | "SingleSelect" | "Url" | "User"),
|
|
275
|
-
?description: ::String
|
|
276
|
+
?description: ::String,
|
|
277
|
+
?attributes: {
|
|
278
|
+
text: {
|
|
279
|
+
is_multiline: bool
|
|
280
|
+
}?
|
|
281
|
+
}
|
|
276
282
|
) -> _CreateFieldResponseSuccess
|
|
277
283
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFieldResponseSuccess
|
|
278
284
|
|
|
@@ -409,6 +415,12 @@ module Aws
|
|
|
409
415
|
case_rule_id: ::String,
|
|
410
416
|
field_id: ::String?
|
|
411
417
|
},
|
|
418
|
+
],
|
|
419
|
+
?tag_propagation_configurations: Array[
|
|
420
|
+
{
|
|
421
|
+
resource_type: ("Cases"),
|
|
422
|
+
tag_map: Hash[::String, ::String]
|
|
423
|
+
},
|
|
412
424
|
]
|
|
413
425
|
) -> _CreateTemplateResponseSuccess
|
|
414
426
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTemplateResponseSuccess
|
|
@@ -574,6 +586,7 @@ module Aws
|
|
|
574
586
|
def created_time: () -> ::Time
|
|
575
587
|
def last_modified_time: () -> ::Time
|
|
576
588
|
def rules: () -> ::Array[Types::TemplateRule]
|
|
589
|
+
def tag_propagation_configurations: () -> ::Array[Types::TagPropagationConfiguration]
|
|
577
590
|
end
|
|
578
591
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ConnectCases/Client.html#get_template-instance_method
|
|
579
592
|
def get_template: (
|
|
@@ -832,6 +845,7 @@ module Aws
|
|
|
832
845
|
include ::Seahorse::Client::_ResponseSuccess[Types::SearchCasesResponse]
|
|
833
846
|
def next_token: () -> ::String
|
|
834
847
|
def cases: () -> ::Array[Types::SearchCasesResponseItem]
|
|
848
|
+
def total_count: () -> ::Integer
|
|
835
849
|
end
|
|
836
850
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ConnectCases/Client.html#search_cases-instance_method
|
|
837
851
|
def search_cases: (
|
|
@@ -909,6 +923,12 @@ module Aws
|
|
|
909
923
|
}?
|
|
910
924
|
}?,
|
|
911
925
|
not: untyped?,
|
|
926
|
+
tag: {
|
|
927
|
+
equal_to: {
|
|
928
|
+
key: ::String?,
|
|
929
|
+
value: ::String?
|
|
930
|
+
}?
|
|
931
|
+
}?,
|
|
912
932
|
and_all: Array[
|
|
913
933
|
untyped,
|
|
914
934
|
]?,
|
|
@@ -1182,7 +1202,12 @@ module Aws
|
|
|
1182
1202
|
domain_id: ::String,
|
|
1183
1203
|
field_id: ::String,
|
|
1184
1204
|
?name: ::String,
|
|
1185
|
-
?description: ::String
|
|
1205
|
+
?description: ::String,
|
|
1206
|
+
?attributes: {
|
|
1207
|
+
text: {
|
|
1208
|
+
is_multiline: bool
|
|
1209
|
+
}?
|
|
1210
|
+
}
|
|
1186
1211
|
) -> _UpdateFieldResponseSuccess
|
|
1187
1212
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFieldResponseSuccess
|
|
1188
1213
|
|
|
@@ -1252,6 +1277,12 @@ module Aws
|
|
|
1252
1277
|
case_rule_id: ::String,
|
|
1253
1278
|
field_id: ::String?
|
|
1254
1279
|
},
|
|
1280
|
+
],
|
|
1281
|
+
?tag_propagation_configurations: Array[
|
|
1282
|
+
{
|
|
1283
|
+
resource_type: ("Cases"),
|
|
1284
|
+
tag_map: Hash[::String, ::String]
|
|
1285
|
+
},
|
|
1255
1286
|
]
|
|
1256
1287
|
) -> _UpdateTemplateResponseSuccess
|
|
1257
1288
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTemplateResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -131,6 +131,7 @@ module Aws::ConnectCases
|
|
|
131
131
|
class CaseFilter
|
|
132
132
|
attr_accessor field: Types::FieldFilter
|
|
133
133
|
attr_accessor not: Types::CaseFilter
|
|
134
|
+
attr_accessor tag: Types::TagFilter
|
|
134
135
|
attr_accessor and_all: ::Array[Types::CaseFilter]
|
|
135
136
|
attr_accessor or_all: ::Array[Types::CaseFilter]
|
|
136
137
|
attr_accessor unknown: untyped
|
|
@@ -140,6 +141,8 @@ module Aws::ConnectCases
|
|
|
140
141
|
end
|
|
141
142
|
class Not < CaseFilter
|
|
142
143
|
end
|
|
144
|
+
class Tag < CaseFilter
|
|
145
|
+
end
|
|
143
146
|
class AndAll < CaseFilter
|
|
144
147
|
end
|
|
145
148
|
class OrAll < CaseFilter
|
|
@@ -245,6 +248,7 @@ module Aws::ConnectCases
|
|
|
245
248
|
attr_accessor fields: ::Array[Types::FieldValue]
|
|
246
249
|
attr_accessor client_token: ::String
|
|
247
250
|
attr_accessor performed_by: Types::UserUnion
|
|
251
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
248
252
|
SENSITIVE: []
|
|
249
253
|
end
|
|
250
254
|
|
|
@@ -285,6 +289,7 @@ module Aws::ConnectCases
|
|
|
285
289
|
attr_accessor name: ::String
|
|
286
290
|
attr_accessor type: ("Text" | "Number" | "Boolean" | "DateTime" | "SingleSelect" | "Url" | "User")
|
|
287
291
|
attr_accessor description: ::String
|
|
292
|
+
attr_accessor attributes: Types::FieldAttributes
|
|
288
293
|
SENSITIVE: []
|
|
289
294
|
end
|
|
290
295
|
|
|
@@ -330,6 +335,7 @@ module Aws::ConnectCases
|
|
|
330
335
|
attr_accessor required_fields: ::Array[Types::RequiredField]
|
|
331
336
|
attr_accessor status: ("Active" | "Inactive")
|
|
332
337
|
attr_accessor rules: ::Array[Types::TemplateRule]
|
|
338
|
+
attr_accessor tag_propagation_configurations: ::Array[Types::TagPropagationConfiguration]
|
|
333
339
|
SENSITIVE: []
|
|
334
340
|
end
|
|
335
341
|
|
|
@@ -462,6 +468,17 @@ module Aws::ConnectCases
|
|
|
462
468
|
SENSITIVE: []
|
|
463
469
|
end
|
|
464
470
|
|
|
471
|
+
class FieldAttributes
|
|
472
|
+
attr_accessor text: Types::TextAttributes
|
|
473
|
+
attr_accessor unknown: untyped
|
|
474
|
+
SENSITIVE: []
|
|
475
|
+
|
|
476
|
+
class Text < FieldAttributes
|
|
477
|
+
end
|
|
478
|
+
class Unknown < FieldAttributes
|
|
479
|
+
end
|
|
480
|
+
end
|
|
481
|
+
|
|
465
482
|
class FieldError
|
|
466
483
|
attr_accessor id: ::String
|
|
467
484
|
attr_accessor error_code: ::String
|
|
@@ -538,6 +555,7 @@ module Aws::ConnectCases
|
|
|
538
555
|
attr_accessor name: ::String
|
|
539
556
|
attr_accessor type: ("Text" | "Number" | "Boolean" | "DateTime" | "SingleSelect" | "Url" | "User")
|
|
540
557
|
attr_accessor namespace: ("System" | "Custom")
|
|
558
|
+
attr_accessor attributes: Types::FieldAttributes
|
|
541
559
|
SENSITIVE: []
|
|
542
560
|
end
|
|
543
561
|
|
|
@@ -659,6 +677,7 @@ module Aws::ConnectCases
|
|
|
659
677
|
attr_accessor deleted: bool
|
|
660
678
|
attr_accessor created_time: ::Time
|
|
661
679
|
attr_accessor last_modified_time: ::Time
|
|
680
|
+
attr_accessor attributes: Types::FieldAttributes
|
|
662
681
|
SENSITIVE: []
|
|
663
682
|
end
|
|
664
683
|
|
|
@@ -699,6 +718,7 @@ module Aws::ConnectCases
|
|
|
699
718
|
attr_accessor created_time: ::Time
|
|
700
719
|
attr_accessor last_modified_time: ::Time
|
|
701
720
|
attr_accessor rules: ::Array[Types::TemplateRule]
|
|
721
|
+
attr_accessor tag_propagation_configurations: ::Array[Types::TagPropagationConfiguration]
|
|
702
722
|
SENSITIVE: []
|
|
703
723
|
end
|
|
704
724
|
|
|
@@ -1039,6 +1059,7 @@ module Aws::ConnectCases
|
|
|
1039
1059
|
class SearchCasesResponse
|
|
1040
1060
|
attr_accessor next_token: ::String
|
|
1041
1061
|
attr_accessor cases: ::Array[Types::SearchCasesResponseItem]
|
|
1062
|
+
attr_accessor total_count: ::Integer
|
|
1042
1063
|
SENSITIVE: []
|
|
1043
1064
|
end
|
|
1044
1065
|
|
|
@@ -1139,12 +1160,35 @@ module Aws::ConnectCases
|
|
|
1139
1160
|
SENSITIVE: []
|
|
1140
1161
|
end
|
|
1141
1162
|
|
|
1163
|
+
class TagFilter
|
|
1164
|
+
attr_accessor equal_to: Types::TagValue
|
|
1165
|
+
attr_accessor unknown: untyped
|
|
1166
|
+
SENSITIVE: []
|
|
1167
|
+
|
|
1168
|
+
class EqualTo < TagFilter
|
|
1169
|
+
end
|
|
1170
|
+
class Unknown < TagFilter
|
|
1171
|
+
end
|
|
1172
|
+
end
|
|
1173
|
+
|
|
1174
|
+
class TagPropagationConfiguration
|
|
1175
|
+
attr_accessor resource_type: ("Cases")
|
|
1176
|
+
attr_accessor tag_map: ::Hash[::String, ::String]
|
|
1177
|
+
SENSITIVE: []
|
|
1178
|
+
end
|
|
1179
|
+
|
|
1142
1180
|
class TagResourceRequest
|
|
1143
1181
|
attr_accessor arn: ::String
|
|
1144
1182
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
1145
1183
|
SENSITIVE: []
|
|
1146
1184
|
end
|
|
1147
1185
|
|
|
1186
|
+
class TagValue
|
|
1187
|
+
attr_accessor key: ::String
|
|
1188
|
+
attr_accessor value: ::String
|
|
1189
|
+
SENSITIVE: []
|
|
1190
|
+
end
|
|
1191
|
+
|
|
1148
1192
|
class TemplateRule
|
|
1149
1193
|
attr_accessor case_rule_id: ::String
|
|
1150
1194
|
attr_accessor field_id: ::String
|
|
@@ -1156,6 +1200,12 @@ module Aws::ConnectCases
|
|
|
1156
1200
|
attr_accessor template_arn: ::String
|
|
1157
1201
|
attr_accessor name: ::String
|
|
1158
1202
|
attr_accessor status: ("Active" | "Inactive")
|
|
1203
|
+
attr_accessor tag_propagation_configurations: ::Array[Types::TagPropagationConfiguration]
|
|
1204
|
+
SENSITIVE: []
|
|
1205
|
+
end
|
|
1206
|
+
|
|
1207
|
+
class TextAttributes
|
|
1208
|
+
attr_accessor is_multiline: bool
|
|
1159
1209
|
SENSITIVE: []
|
|
1160
1210
|
end
|
|
1161
1211
|
|
|
@@ -1198,6 +1248,7 @@ module Aws::ConnectCases
|
|
|
1198
1248
|
attr_accessor field_id: ::String
|
|
1199
1249
|
attr_accessor name: ::String
|
|
1200
1250
|
attr_accessor description: ::String
|
|
1251
|
+
attr_accessor attributes: Types::FieldAttributes
|
|
1201
1252
|
SENSITIVE: []
|
|
1202
1253
|
end
|
|
1203
1254
|
|
|
@@ -1224,6 +1275,7 @@ module Aws::ConnectCases
|
|
|
1224
1275
|
attr_accessor required_fields: ::Array[Types::RequiredField]
|
|
1225
1276
|
attr_accessor status: ("Active" | "Inactive")
|
|
1226
1277
|
attr_accessor rules: ::Array[Types::TemplateRule]
|
|
1278
|
+
attr_accessor tag_propagation_configurations: ::Array[Types::TagPropagationConfiguration]
|
|
1227
1279
|
SENSITIVE: []
|
|
1228
1280
|
end
|
|
1229
1281
|
|