aws-sdk-connectcases 1.60.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 75f88d52263c8635108568acdcd624b00b8a2776c2871e0fae86c3003f48835f
4
- data.tar.gz: e0856ff9ba94c521e3b42ed6e41816e38bd0d718196d3f1cd6e655f9e901ed5c
3
+ metadata.gz: 53f0028119066b506f391818fab9628ea09623195f5ca18cb362d63f9c1eaff0
4
+ data.tar.gz: d3889563584a9c36e468975f786c0d61a19194c8bb13af0688f595fe3c2b75d3
5
5
  SHA512:
6
- metadata.gz: 4bab84cd0e12ea3b1bc4a0e9b57a90ad3300207eba9c33c0401a154423fde473cf62f1e221a90fb9360a7f88812de592e3c671430403d9b0b94eeeefdf194978
7
- data.tar.gz: 13bd63de9a1b22f1b5160bda1ac240b555a9720ee23e327c7ff88e97f47994a0ad84d5e560a9b3f5c9186c309a04795383b318eb4b1785e8e1a550a71a55fa7f
6
+ metadata.gz: 50dbc1bd8a24cf7d024d76bfec5db4218956830cf9809b92a2fdd80a9c286ea8fcfd3dc9105574fdf59a25435e5bbeeb815f84dfa8c599c4ac21a1e1ac99effc
7
+ data.tar.gz: d7a1627388ea4c871b6acbad6efa4880699b30518c0b051177c3e9be5f2e1a493dcd189114af855d3299cb90692c3a283ff3b6161ffed11c36feba7e849b4855
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.60.0 (2026-01-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.60.0
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
@@ -957,6 +958,9 @@ module Aws::ConnectCases
957
958
  # @option params [String] :description
958
959
  # The description of the field.
959
960
  #
961
+ # @option params [Types::FieldAttributes] :attributes
962
+ # Union of field attributes.
963
+ #
960
964
  # @return [Types::CreateFieldResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
961
965
  #
962
966
  # * {Types::CreateFieldResponse#field_id #field_id} => String
@@ -969,6 +973,11 @@ module Aws::ConnectCases
969
973
  # name: "FieldName", # required
970
974
  # type: "Text", # required, accepts Text, Number, Boolean, DateTime, SingleSelect, Url, User
971
975
  # description: "FieldDescription",
976
+ # attributes: {
977
+ # text: {
978
+ # is_multiline: false, # required
979
+ # },
980
+ # },
972
981
  # })
973
982
  #
974
983
  # @example Response structure
@@ -2160,6 +2169,7 @@ module Aws::ConnectCases
2160
2169
  # resp.fields[0].name #=> String
2161
2170
  # resp.fields[0].type #=> String, one of "Text", "Number", "Boolean", "DateTime", "SingleSelect", "Url", "User"
2162
2171
  # resp.fields[0].namespace #=> String, one of "System", "Custom"
2172
+ # resp.fields[0].attributes.text.is_multiline #=> Boolean
2163
2173
  # resp.next_token #=> String
2164
2174
  #
2165
2175
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/ListFields AWS API Documentation
@@ -2634,6 +2644,7 @@ module Aws::ConnectCases
2634
2644
  #
2635
2645
  # * {Types::SearchCasesResponse#next_token #next_token} => String
2636
2646
  # * {Types::SearchCasesResponse#cases #cases} => Array<Types::SearchCasesResponseItem>
2647
+ # * {Types::SearchCasesResponse#total_count #total_count} => Integer
2637
2648
  #
2638
2649
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2639
2650
  #
@@ -2760,6 +2771,7 @@ module Aws::ConnectCases
2760
2771
  # resp.cases[0].fields[0].value.user_arn_value #=> String
2761
2772
  # resp.cases[0].tags #=> Hash
2762
2773
  # resp.cases[0].tags["String"] #=> String
2774
+ # resp.total_count #=> Integer
2763
2775
  #
2764
2776
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/SearchCases AWS API Documentation
2765
2777
  #
@@ -3218,6 +3230,9 @@ module Aws::ConnectCases
3218
3230
  # @option params [String] :description
3219
3231
  # The description of a field.
3220
3232
  #
3233
+ # @option params [Types::FieldAttributes] :attributes
3234
+ # Union of field attributes.
3235
+ #
3221
3236
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3222
3237
  #
3223
3238
  # @example Request syntax with placeholder values
@@ -3227,6 +3242,11 @@ module Aws::ConnectCases
3227
3242
  # field_id: "FieldId", # required
3228
3243
  # name: "FieldName",
3229
3244
  # description: "FieldDescription",
3245
+ # attributes: {
3246
+ # text: {
3247
+ # is_multiline: false, # required
3248
+ # },
3249
+ # },
3230
3250
  # })
3231
3251
  #
3232
3252
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/UpdateField AWS API Documentation
@@ -3435,7 +3455,7 @@ module Aws::ConnectCases
3435
3455
  tracer: tracer
3436
3456
  )
3437
3457
  context[:gem_name] = 'aws-sdk-connectcases'
3438
- context[:gem_version] = '1.60.0'
3458
+ context[:gem_version] = '1.61.0'
3439
3459
  Seahorse::Client::Request.new(handlers, context)
3440
3460
  end
3441
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')
@@ -297,7 +298,9 @@ module Aws::ConnectCases
297
298
  TemplateStatus = Shapes::StringShape.new(name: 'TemplateStatus')
298
299
  TemplateStatusFilters = Shapes::ListShape.new(name: 'TemplateStatusFilters')
299
300
  TemplateSummary = Shapes::StructureShape.new(name: 'TemplateSummary')
301
+ TextAttributes = Shapes::StructureShape.new(name: 'TextAttributes')
300
302
  ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
303
+ TotalCount = Shapes::IntegerShape.new(name: 'TotalCount')
301
304
  UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
302
305
  UpdateCaseRequest = Shapes::StructureShape.new(name: 'UpdateCaseRequest')
303
306
  UpdateCaseRequestFieldsList = Shapes::ListShape.new(name: 'UpdateCaseRequestFieldsList')
@@ -534,6 +537,7 @@ module Aws::ConnectCases
534
537
  CreateFieldRequest.add_member(:name, Shapes::ShapeRef.new(shape: FieldName, required: true, location_name: "name"))
535
538
  CreateFieldRequest.add_member(:type, Shapes::ShapeRef.new(shape: FieldType, required: true, location_name: "type"))
536
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"))
537
541
  CreateFieldRequest.struct_class = Types::CreateFieldRequest
538
542
 
539
543
  CreateFieldResponse.add_member(:field_id, Shapes::ShapeRef.new(shape: FieldId, required: true, location_name: "fieldId"))
@@ -662,6 +666,12 @@ module Aws::ConnectCases
662
666
  EventIncludedData.add_member(:related_item_data, Shapes::ShapeRef.new(shape: RelatedItemEventIncludedData, location_name: "relatedItemData"))
663
667
  EventIncludedData.struct_class = Types::EventIncludedData
664
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
+
665
675
  FieldError.add_member(:id, Shapes::ShapeRef.new(shape: FieldId, required: true, location_name: "id"))
666
676
  FieldError.add_member(:error_code, Shapes::ShapeRef.new(shape: String, required: true, location_name: "errorCode"))
667
677
  FieldError.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
@@ -717,6 +727,7 @@ module Aws::ConnectCases
717
727
  FieldSummary.add_member(:name, Shapes::ShapeRef.new(shape: FieldName, required: true, location_name: "name"))
718
728
  FieldSummary.add_member(:type, Shapes::ShapeRef.new(shape: FieldType, required: true, location_name: "type"))
719
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"))
720
731
  FieldSummary.struct_class = Types::FieldSummary
721
732
 
722
733
  FieldValue.add_member(:id, Shapes::ShapeRef.new(shape: FieldId, required: true, location_name: "id"))
@@ -811,6 +822,7 @@ module Aws::ConnectCases
811
822
  GetFieldResponse.add_member(:deleted, Shapes::ShapeRef.new(shape: Deleted, location_name: "deleted"))
812
823
  GetFieldResponse.add_member(:created_time, Shapes::ShapeRef.new(shape: CreatedTime, location_name: "createdTime"))
813
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"))
814
826
  GetFieldResponse.struct_class = Types::GetFieldResponse
815
827
 
816
828
  GetLayoutRequest.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location: "uri", location_name: "domainId"))
@@ -1098,6 +1110,7 @@ module Aws::ConnectCases
1098
1110
 
1099
1111
  SearchCasesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
1100
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"))
1101
1114
  SearchCasesResponse.struct_class = Types::SearchCasesResponse
1102
1115
 
1103
1116
  SearchCasesResponseCasesList.member = Shapes::ShapeRef.new(shape: SearchCasesResponseItem)
@@ -1222,6 +1235,9 @@ module Aws::ConnectCases
1222
1235
  TemplateSummary.add_member(:tag_propagation_configurations, Shapes::ShapeRef.new(shape: TagPropagationConfigurationList, location_name: "tagPropagationConfigurations"))
1223
1236
  TemplateSummary.struct_class = Types::TemplateSummary
1224
1237
 
1238
+ TextAttributes.add_member(:is_multiline, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "isMultiline"))
1239
+ TextAttributes.struct_class = Types::TextAttributes
1240
+
1225
1241
  ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
1226
1242
  ThrottlingException.struct_class = Types::ThrottlingException
1227
1243
 
@@ -1252,6 +1268,7 @@ module Aws::ConnectCases
1252
1268
  UpdateFieldRequest.add_member(:field_id, Shapes::ShapeRef.new(shape: FieldId, required: true, location: "uri", location_name: "fieldId"))
1253
1269
  UpdateFieldRequest.add_member(:name, Shapes::ShapeRef.new(shape: FieldName, location_name: "name"))
1254
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"))
1255
1272
  UpdateFieldRequest.struct_class = Types::UpdateFieldRequest
1256
1273
 
1257
1274
  UpdateFieldResponse.struct_class = Types::UpdateFieldResponse
@@ -865,13 +865,18 @@ module Aws::ConnectCases
865
865
  # The description of the field.
866
866
  # @return [String]
867
867
  #
868
+ # @!attribute [rw] attributes
869
+ # Union of field attributes.
870
+ # @return [Types::FieldAttributes]
871
+ #
868
872
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/CreateFieldRequest AWS API Documentation
869
873
  #
870
874
  class CreateFieldRequest < Struct.new(
871
875
  :domain_id,
872
876
  :name,
873
877
  :type,
874
- :description)
878
+ :description,
879
+ :attributes)
875
880
  SENSITIVE = []
876
881
  include Aws::Structure
877
882
  end
@@ -1377,6 +1382,29 @@ module Aws::ConnectCases
1377
1382
  include Aws::Structure
1378
1383
  end
1379
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
+
1380
1408
  # Object for errors on fields.
1381
1409
  #
1382
1410
  # @!attribute [rw] id
@@ -1597,6 +1625,10 @@ module Aws::ConnectCases
1597
1625
  # The namespace of a field.
1598
1626
  # @return [String]
1599
1627
  #
1628
+ # @!attribute [rw] attributes
1629
+ # Union of field attributes.
1630
+ # @return [Types::FieldAttributes]
1631
+ #
1600
1632
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/FieldSummary AWS API Documentation
1601
1633
  #
1602
1634
  class FieldSummary < Struct.new(
@@ -1604,7 +1636,8 @@ module Aws::ConnectCases
1604
1636
  :field_arn,
1605
1637
  :name,
1606
1638
  :type,
1607
- :namespace)
1639
+ :namespace,
1640
+ :attributes)
1608
1641
  SENSITIVE = []
1609
1642
  include Aws::Structure
1610
1643
  end
@@ -1997,6 +2030,10 @@ module Aws::ConnectCases
1997
2030
  # Timestamp at which the resource was created or last modified.
1998
2031
  # @return [Time]
1999
2032
  #
2033
+ # @!attribute [rw] attributes
2034
+ # Union of field attributes.
2035
+ # @return [Types::FieldAttributes]
2036
+ #
2000
2037
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/GetFieldResponse AWS API Documentation
2001
2038
  #
2002
2039
  class GetFieldResponse < Struct.new(
@@ -2009,7 +2046,8 @@ module Aws::ConnectCases
2009
2046
  :tags,
2010
2047
  :deleted,
2011
2048
  :created_time,
2012
- :last_modified_time)
2049
+ :last_modified_time,
2050
+ :attributes)
2013
2051
  SENSITIVE = []
2014
2052
  include Aws::Structure
2015
2053
  end
@@ -3173,11 +3211,16 @@ module Aws::ConnectCases
3173
3211
  # `CaseId` and `Fields` where each field is a complex union structure.
3174
3212
  # @return [Array<Types::SearchCasesResponseItem>]
3175
3213
  #
3214
+ # @!attribute [rw] total_count
3215
+ # The total number of cases that matched the search criteria.
3216
+ # @return [Integer]
3217
+ #
3176
3218
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/SearchCasesResponse AWS API Documentation
3177
3219
  #
3178
3220
  class SearchCasesResponse < Struct.new(
3179
3221
  :next_token,
3180
- :cases)
3222
+ :cases,
3223
+ :total_count)
3181
3224
  SENSITIVE = []
3182
3225
  include Aws::Structure
3183
3226
  end
@@ -3643,6 +3686,20 @@ module Aws::ConnectCases
3643
3686
  include Aws::Structure
3644
3687
  end
3645
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)
3699
+ SENSITIVE = []
3700
+ include Aws::Structure
3701
+ end
3702
+
3646
3703
  # The rate has been exceeded for this API. Please try again after a few
3647
3704
  # minutes.
3648
3705
  #
@@ -3759,13 +3816,18 @@ module Aws::ConnectCases
3759
3816
  # The description of a field.
3760
3817
  # @return [String]
3761
3818
  #
3819
+ # @!attribute [rw] attributes
3820
+ # Union of field attributes.
3821
+ # @return [Types::FieldAttributes]
3822
+ #
3762
3823
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcases-2022-10-03/UpdateFieldRequest AWS API Documentation
3763
3824
  #
3764
3825
  class UpdateFieldRequest < Struct.new(
3765
3826
  :domain_id,
3766
3827
  :field_id,
3767
3828
  :name,
3768
- :description)
3829
+ :description,
3830
+ :attributes)
3769
3831
  SENSITIVE = []
3770
3832
  include Aws::Structure
3771
3833
  end
@@ -55,7 +55,7 @@ module Aws::ConnectCases
55
55
  autoload :EndpointProvider, 'aws-sdk-connectcases/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-connectcases/endpoints'
57
57
 
58
- GEM_VERSION = '1.60.0'
58
+ GEM_VERSION = '1.61.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -273,7 +273,12 @@ module Aws
273
273
  domain_id: ::String,
274
274
  name: ::String,
275
275
  type: ("Text" | "Number" | "Boolean" | "DateTime" | "SingleSelect" | "Url" | "User"),
276
- ?description: ::String
276
+ ?description: ::String,
277
+ ?attributes: {
278
+ text: {
279
+ is_multiline: bool
280
+ }?
281
+ }
277
282
  ) -> _CreateFieldResponseSuccess
278
283
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFieldResponseSuccess
279
284
 
@@ -840,6 +845,7 @@ module Aws
840
845
  include ::Seahorse::Client::_ResponseSuccess[Types::SearchCasesResponse]
841
846
  def next_token: () -> ::String
842
847
  def cases: () -> ::Array[Types::SearchCasesResponseItem]
848
+ def total_count: () -> ::Integer
843
849
  end
844
850
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ConnectCases/Client.html#search_cases-instance_method
845
851
  def search_cases: (
@@ -1196,7 +1202,12 @@ module Aws
1196
1202
  domain_id: ::String,
1197
1203
  field_id: ::String,
1198
1204
  ?name: ::String,
1199
- ?description: ::String
1205
+ ?description: ::String,
1206
+ ?attributes: {
1207
+ text: {
1208
+ is_multiline: bool
1209
+ }?
1210
+ }
1200
1211
  ) -> _UpdateFieldResponseSuccess
1201
1212
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFieldResponseSuccess
1202
1213
 
data/sig/types.rbs CHANGED
@@ -289,6 +289,7 @@ module Aws::ConnectCases
289
289
  attr_accessor name: ::String
290
290
  attr_accessor type: ("Text" | "Number" | "Boolean" | "DateTime" | "SingleSelect" | "Url" | "User")
291
291
  attr_accessor description: ::String
292
+ attr_accessor attributes: Types::FieldAttributes
292
293
  SENSITIVE: []
293
294
  end
294
295
 
@@ -467,6 +468,17 @@ module Aws::ConnectCases
467
468
  SENSITIVE: []
468
469
  end
469
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
+
470
482
  class FieldError
471
483
  attr_accessor id: ::String
472
484
  attr_accessor error_code: ::String
@@ -543,6 +555,7 @@ module Aws::ConnectCases
543
555
  attr_accessor name: ::String
544
556
  attr_accessor type: ("Text" | "Number" | "Boolean" | "DateTime" | "SingleSelect" | "Url" | "User")
545
557
  attr_accessor namespace: ("System" | "Custom")
558
+ attr_accessor attributes: Types::FieldAttributes
546
559
  SENSITIVE: []
547
560
  end
548
561
 
@@ -664,6 +677,7 @@ module Aws::ConnectCases
664
677
  attr_accessor deleted: bool
665
678
  attr_accessor created_time: ::Time
666
679
  attr_accessor last_modified_time: ::Time
680
+ attr_accessor attributes: Types::FieldAttributes
667
681
  SENSITIVE: []
668
682
  end
669
683
 
@@ -1045,6 +1059,7 @@ module Aws::ConnectCases
1045
1059
  class SearchCasesResponse
1046
1060
  attr_accessor next_token: ::String
1047
1061
  attr_accessor cases: ::Array[Types::SearchCasesResponseItem]
1062
+ attr_accessor total_count: ::Integer
1048
1063
  SENSITIVE: []
1049
1064
  end
1050
1065
 
@@ -1189,6 +1204,11 @@ module Aws::ConnectCases
1189
1204
  SENSITIVE: []
1190
1205
  end
1191
1206
 
1207
+ class TextAttributes
1208
+ attr_accessor is_multiline: bool
1209
+ SENSITIVE: []
1210
+ end
1211
+
1192
1212
  class ThrottlingException
1193
1213
  attr_accessor message: ::String
1194
1214
  SENSITIVE: []
@@ -1228,6 +1248,7 @@ module Aws::ConnectCases
1228
1248
  attr_accessor field_id: ::String
1229
1249
  attr_accessor name: ::String
1230
1250
  attr_accessor description: ::String
1251
+ attr_accessor attributes: Types::FieldAttributes
1231
1252
  SENSITIVE: []
1232
1253
  end
1233
1254
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connectcases
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.60.0
4
+ version: 1.61.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services