aws-sdk-connectcases 1.2.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f5abb1319813710115c2dee34bf2f5a26fe66e6c93fa2d85f614f2ac9b2fef3a
4
- data.tar.gz: 407df09c832c1befecfaaf3e3a1e9c1b61a970335b79ac94b40c6af5a38a0e66
3
+ metadata.gz: 4b3b2bd995d3790404f84b3e8639cc4bb96bb33ea240e821b09a1fca0d1eeabd
4
+ data.tar.gz: 3a83f01d32de88f58398397490850a1e1e75869d2b9f3a417e1f7f25f935c617
5
5
  SHA512:
6
- metadata.gz: 97cd5203bc7a04d5ec5594105020e8fe5425182557f003beb50bd8bbc924d6fcec451de2f0d3a1d04626c09fc5cb64c9ee05bdfff70636351680fee8e3681a0c
7
- data.tar.gz: bf00a2db526d4b7e963aab707d77f7c2990ee810b5b4b8edf890039b5965382c4f2171b7ef4c4a4c1c60d9fc4f5d9e6302915271955968ed3ea17fcad81a174a
6
+ metadata.gz: 346c22bb9bba90a7c767811f68dda4ef54e32788a660867a4cd67e5dfb3b43058663a805bc359766363d4edf4556f40afbfef41608b38b46ddfcdc8b49c6044b
7
+ data.tar.gz: d2d33bc298def662c7de0d3c8da28241b9969b99a14f68e5e8c566fbab08561a991b5614c47aac75103a0b46cddcafb062fa5f80f90254ef5c5c0a4164e92d6f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.3.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.2.0 (2022-11-09)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.0
1
+ 1.3.0
@@ -1901,7 +1901,7 @@ module Aws::ConnectCases
1901
1901
  params: params,
1902
1902
  config: config)
1903
1903
  context[:gem_name] = 'aws-sdk-connectcases'
1904
- context[:gem_version] = '1.2.0'
1904
+ context[:gem_version] = '1.3.0'
1905
1905
  Seahorse::Client::Request.new(handlers, context)
1906
1906
  end
1907
1907
 
@@ -9,102 +9,43 @@
9
9
 
10
10
  module Aws::ConnectCases
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://cases-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://cases-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://cases.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://cases.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL2Nhc2VzLWZpcHMue1JlZ2lvbn0ue1BhcnRp
77
- dGlvblJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGllcyI6
78
- e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNvbmRp
79
- dGlvbnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFjayBhcmUgZW5h
80
- YmxlZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgb25l
81
- IG9yIGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3si
82
- Zm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9
83
- LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMi
84
- Olt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJn
85
- ZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1
86
- cHBvcnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29u
87
- ZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vY2FzZXMt
88
- Zmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJw
89
- cm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQi
90
- fV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBpcyBlbmFibGVk
91
- IGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJUFMiLCJ0
92
- eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFu
93
- RXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1ZV19
94
- XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4i
95
- OiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIi
96
- LCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNE
97
- dWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
98
- dGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2Nhc2VzLntS
99
- ZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIs
100
- InByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2lu
101
- dCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMg
102
- ZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBE
103
- dWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10s
104
- ImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vY2FzZXMue1JlZ2lvbn0ue1Bh
105
- cnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhl
106
- YWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19
107
-
108
- JSON
109
50
  end
110
51
  end
@@ -26,40 +26,6 @@ module Aws::ConnectCases
26
26
  # Content specific to `BasicLayout` type. It configures fields in the
27
27
  # top panel and More Info tab of agent application.
28
28
  #
29
- # @note When making an API call, you may pass BasicLayout
30
- # data as a hash:
31
- #
32
- # {
33
- # more_info: {
34
- # sections: [
35
- # {
36
- # field_group: {
37
- # fields: [ # required
38
- # {
39
- # id: "FieldId", # required
40
- # },
41
- # ],
42
- # name: "FieldGroupNameString",
43
- # },
44
- # },
45
- # ],
46
- # },
47
- # top_panel: {
48
- # sections: [
49
- # {
50
- # field_group: {
51
- # fields: [ # required
52
- # {
53
- # id: "FieldId", # required
54
- # },
55
- # ],
56
- # name: "FieldGroupNameString",
57
- # },
58
- # },
59
- # ],
60
- # },
61
- # }
62
- #
63
29
  # @!attribute [rw] more_info
64
30
  # This represents sections in a tab of the page layout.
65
31
  # @return [Types::LayoutSections]
@@ -77,18 +43,6 @@ module Aws::ConnectCases
77
43
  include Aws::Structure
78
44
  end
79
45
 
80
- # @note When making an API call, you may pass BatchGetFieldRequest
81
- # data as a hash:
82
- #
83
- # {
84
- # domain_id: "DomainId", # required
85
- # fields: [ # required
86
- # {
87
- # id: "FieldId", # required
88
- # },
89
- # ],
90
- # }
91
- #
92
46
  # @!attribute [rw] domain_id
93
47
  # The unique identifier of the Cases domain.
94
48
  # @return [String]
@@ -123,21 +77,6 @@ module Aws::ConnectCases
123
77
  include Aws::Structure
124
78
  end
125
79
 
126
- # @note When making an API call, you may pass BatchPutFieldOptionsRequest
127
- # data as a hash:
128
- #
129
- # {
130
- # domain_id: "DomainId", # required
131
- # field_id: "FieldId", # required
132
- # options: [ # required
133
- # {
134
- # active: false, # required
135
- # name: "FieldOptionName", # required
136
- # value: "FieldOptionValue", # required
137
- # },
138
- # ],
139
- # }
140
- #
141
80
  # @!attribute [rw] domain_id
142
81
  # The unique identifier of the Cases domain.
143
82
  # @return [String]
@@ -174,17 +113,6 @@ module Aws::ConnectCases
174
113
 
175
114
  # Details of what case data is published through the case event stream.
176
115
  #
177
- # @note When making an API call, you may pass CaseEventIncludedData
178
- # data as a hash:
179
- #
180
- # {
181
- # fields: [ # required
182
- # {
183
- # id: "FieldId", # required
184
- # },
185
- # ],
186
- # }
187
- #
188
116
  # @!attribute [rw] fields
189
117
  # List of field identifiers.
190
118
  # @return [Array<Types::FieldIdentifier>]
@@ -251,14 +179,6 @@ module Aws::ConnectCases
251
179
 
252
180
  # Represents the content of a `Comment` to be returned to agents.
253
181
  #
254
- # @note When making an API call, you may pass CommentContent
255
- # data as a hash:
256
- #
257
- # {
258
- # body: "CommentBody", # required
259
- # content_type: "Text/Plain", # required, accepts Text/Plain
260
- # }
261
- #
262
182
  # @!attribute [rw] body
263
183
  # Text in the body of a `Comment` on a case.
264
184
  # @return [String]
@@ -302,13 +222,6 @@ module Aws::ConnectCases
302
222
 
303
223
  # An object that represents an Amazon Connect contact object.
304
224
  #
305
- # @note When making an API call, you may pass Contact
306
- # data as a hash:
307
- #
308
- # {
309
- # contact_arn: "ContactArn", # required
310
- # }
311
- #
312
225
  # @!attribute [rw] contact_arn
313
226
  # A unique identifier of a contact in Amazon Connect.
314
227
  # @return [String]
@@ -349,14 +262,6 @@ module Aws::ConnectCases
349
262
 
350
263
  # A filter for related items of type `Contact`.
351
264
  #
352
- # @note When making an API call, you may pass ContactFilter
353
- # data as a hash:
354
- #
355
- # {
356
- # channel: ["Channel"],
357
- # contact_arn: "ContactArn",
358
- # }
359
- #
360
265
  # @!attribute [rw] channel
361
266
  # A list of channels to filter on for related items of type `Contact`.
362
267
  # @return [Array<String>]
@@ -374,25 +279,6 @@ module Aws::ConnectCases
374
279
  include Aws::Structure
375
280
  end
376
281
 
377
- # @note When making an API call, you may pass CreateCaseRequest
378
- # data as a hash:
379
- #
380
- # {
381
- # client_token: "CreateCaseRequestClientTokenString",
382
- # domain_id: "DomainId", # required
383
- # fields: [ # required
384
- # {
385
- # id: "FieldId", # required
386
- # value: { # required
387
- # boolean_value: false,
388
- # double_value: 1.0,
389
- # string_value: "FieldValueUnionStringValueString",
390
- # },
391
- # },
392
- # ],
393
- # template_id: "TemplateId", # required
394
- # }
395
- #
396
282
  # @!attribute [rw] client_token
397
283
  # A unique, case-sensitive identifier that you provide to ensure the
398
284
  # idempotency of the request. If not provided, the Amazon Web Services
@@ -448,13 +334,6 @@ module Aws::ConnectCases
448
334
  include Aws::Structure
449
335
  end
450
336
 
451
- # @note When making an API call, you may pass CreateDomainRequest
452
- # data as a hash:
453
- #
454
- # {
455
- # name: "DomainName", # required
456
- # }
457
- #
458
337
  # @!attribute [rw] name
459
338
  # The name for your Cases domain. It must be unique for your Amazon
460
339
  # Web Services account.
@@ -490,16 +369,6 @@ module Aws::ConnectCases
490
369
  include Aws::Structure
491
370
  end
492
371
 
493
- # @note When making an API call, you may pass CreateFieldRequest
494
- # data as a hash:
495
- #
496
- # {
497
- # description: "FieldDescription",
498
- # domain_id: "DomainId", # required
499
- # name: "FieldName", # required
500
- # type: "Text", # required, accepts Text, Number, Boolean, DateTime, SingleSelect
501
- # }
502
- #
503
372
  # @!attribute [rw] description
504
373
  # The description of the field.
505
374
  # @return [String]
@@ -545,46 +414,6 @@ module Aws::ConnectCases
545
414
  include Aws::Structure
546
415
  end
547
416
 
548
- # @note When making an API call, you may pass CreateLayoutRequest
549
- # data as a hash:
550
- #
551
- # {
552
- # content: { # required
553
- # basic: {
554
- # more_info: {
555
- # sections: [
556
- # {
557
- # field_group: {
558
- # fields: [ # required
559
- # {
560
- # id: "FieldId", # required
561
- # },
562
- # ],
563
- # name: "FieldGroupNameString",
564
- # },
565
- # },
566
- # ],
567
- # },
568
- # top_panel: {
569
- # sections: [
570
- # {
571
- # field_group: {
572
- # fields: [ # required
573
- # {
574
- # id: "FieldId", # required
575
- # },
576
- # ],
577
- # name: "FieldGroupNameString",
578
- # },
579
- # },
580
- # ],
581
- # },
582
- # },
583
- # },
584
- # domain_id: "DomainId", # required
585
- # name: "LayoutName", # required
586
- # }
587
- #
588
417
  # @!attribute [rw] content
589
418
  # Information about which fields will be present in the layout, and
590
419
  # information about the order of the fields.
@@ -625,24 +454,6 @@ module Aws::ConnectCases
625
454
  include Aws::Structure
626
455
  end
627
456
 
628
- # @note When making an API call, you may pass CreateRelatedItemRequest
629
- # data as a hash:
630
- #
631
- # {
632
- # case_id: "CaseId", # required
633
- # content: { # required
634
- # comment: {
635
- # body: "CommentBody", # required
636
- # content_type: "Text/Plain", # required, accepts Text/Plain
637
- # },
638
- # contact: {
639
- # contact_arn: "ContactArn", # required
640
- # },
641
- # },
642
- # domain_id: "DomainId", # required
643
- # type: "Contact", # required, accepts Contact, Comment
644
- # }
645
- #
646
457
  # @!attribute [rw] case_id
647
458
  # A unique identifier of the case.
648
459
  # @return [String]
@@ -687,24 +498,6 @@ module Aws::ConnectCases
687
498
  include Aws::Structure
688
499
  end
689
500
 
690
- # @note When making an API call, you may pass CreateTemplateRequest
691
- # data as a hash:
692
- #
693
- # {
694
- # description: "TemplateDescription",
695
- # domain_id: "DomainId", # required
696
- # layout_configuration: {
697
- # default_layout: "LayoutId",
698
- # },
699
- # name: "TemplateName", # required
700
- # required_fields: [
701
- # {
702
- # field_id: "FieldId", # required
703
- # },
704
- # ],
705
- # status: "Active", # accepts Active, Inactive
706
- # }
707
- #
708
501
  # @!attribute [rw] description
709
502
  # A brief description of the template.
710
503
  # @return [String]
@@ -787,25 +580,6 @@ module Aws::ConnectCases
787
580
  # Configuration to enable EventBridge case event delivery and determine
788
581
  # what data is delivered.
789
582
  #
790
- # @note When making an API call, you may pass EventBridgeConfiguration
791
- # data as a hash:
792
- #
793
- # {
794
- # enabled: false, # required
795
- # included_data: {
796
- # case_data: {
797
- # fields: [ # required
798
- # {
799
- # id: "FieldId", # required
800
- # },
801
- # ],
802
- # },
803
- # related_item_data: {
804
- # include_content: false, # required
805
- # },
806
- # },
807
- # }
808
- #
809
583
  # @!attribute [rw] enabled
810
584
  # Indicates whether the to broadcast case event data to the customer.
811
585
  # @return [Boolean]
@@ -827,22 +601,6 @@ module Aws::ConnectCases
827
601
  # Details of what case and related item data is published through the
828
602
  # case event stream.
829
603
  #
830
- # @note When making an API call, you may pass EventIncludedData
831
- # data as a hash:
832
- #
833
- # {
834
- # case_data: {
835
- # fields: [ # required
836
- # {
837
- # id: "FieldId", # required
838
- # },
839
- # ],
840
- # },
841
- # related_item_data: {
842
- # include_content: false, # required
843
- # },
844
- # }
845
- #
846
604
  # @!attribute [rw] case_data
847
605
  # Details of what case data is published through the case event
848
606
  # stream.
@@ -939,18 +697,6 @@ module Aws::ConnectCases
939
697
 
940
698
  # Object for a group of fields and associated properties.
941
699
  #
942
- # @note When making an API call, you may pass FieldGroup
943
- # data as a hash:
944
- #
945
- # {
946
- # fields: [ # required
947
- # {
948
- # id: "FieldId", # required
949
- # },
950
- # ],
951
- # name: "FieldGroupNameString",
952
- # }
953
- #
954
700
  # @!attribute [rw] fields
955
701
  # Represents an ordered list containing field related information.
956
702
  # @return [Array<Types::FieldItem>]
@@ -970,13 +716,6 @@ module Aws::ConnectCases
970
716
 
971
717
  # Object for unique identifier of a field.
972
718
  #
973
- # @note When making an API call, you may pass FieldIdentifier
974
- # data as a hash:
975
- #
976
- # {
977
- # id: "FieldId", # required
978
- # }
979
- #
980
719
  # @!attribute [rw] id
981
720
  # Unique identifier of a field.
982
721
  # @return [String]
@@ -991,13 +730,6 @@ module Aws::ConnectCases
991
730
 
992
731
  # Object for field related information.
993
732
  #
994
- # @note When making an API call, you may pass FieldItem
995
- # data as a hash:
996
- #
997
- # {
998
- # id: "FieldId", # required
999
- # }
1000
- #
1001
733
  # @!attribute [rw] id
1002
734
  # Unique identifier of a field.
1003
735
  # @return [String]
@@ -1012,15 +744,6 @@ module Aws::ConnectCases
1012
744
 
1013
745
  # Object for field Options information.
1014
746
  #
1015
- # @note When making an API call, you may pass FieldOption
1016
- # data as a hash:
1017
- #
1018
- # {
1019
- # active: false, # required
1020
- # name: "FieldOptionName", # required
1021
- # value: "FieldOptionValue", # required
1022
- # }
1023
- #
1024
747
  # @!attribute [rw] active
1025
748
  # Describes whether the `FieldOption` is active (displayed) or
1026
749
  # inactive.
@@ -1105,18 +828,6 @@ module Aws::ConnectCases
1105
828
 
1106
829
  # Object for case field values.
1107
830
  #
1108
- # @note When making an API call, you may pass FieldValue
1109
- # data as a hash:
1110
- #
1111
- # {
1112
- # id: "FieldId", # required
1113
- # value: { # required
1114
- # boolean_value: false,
1115
- # double_value: 1.0,
1116
- # string_value: "FieldValueUnionStringValueString",
1117
- # },
1118
- # }
1119
- #
1120
831
  # @!attribute [rw] id
1121
832
  # Unique identifier of a field.
1122
833
  # @return [String]
@@ -1171,13 +882,6 @@ module Aws::ConnectCases
1171
882
  class Unknown < FieldValueUnion; end
1172
883
  end
1173
884
 
1174
- # @note When making an API call, you may pass GetCaseEventConfigurationRequest
1175
- # data as a hash:
1176
- #
1177
- # {
1178
- # domain_id: "DomainId", # required
1179
- # }
1180
- #
1181
885
  # @!attribute [rw] domain_id
1182
886
  # The unique identifier of the Cases domain.
1183
887
  # @return [String]
@@ -1203,20 +907,6 @@ module Aws::ConnectCases
1203
907
  include Aws::Structure
1204
908
  end
1205
909
 
1206
- # @note When making an API call, you may pass GetCaseRequest
1207
- # data as a hash:
1208
- #
1209
- # {
1210
- # case_id: "CaseId", # required
1211
- # domain_id: "DomainId", # required
1212
- # fields: [ # required
1213
- # {
1214
- # id: "FieldId", # required
1215
- # },
1216
- # ],
1217
- # next_token: "NextToken",
1218
- # }
1219
- #
1220
910
  # @!attribute [rw] case_id
1221
911
  # A unique identifier of the case.
1222
912
  # @return [String]
@@ -1275,13 +965,6 @@ module Aws::ConnectCases
1275
965
  include Aws::Structure
1276
966
  end
1277
967
 
1278
- # @note When making an API call, you may pass GetDomainRequest
1279
- # data as a hash:
1280
- #
1281
- # {
1282
- # domain_id: "DomainId", # required
1283
- # }
1284
- #
1285
968
  # @!attribute [rw] domain_id
1286
969
  # The unique identifier of the Cases domain.
1287
970
  # @return [String]
@@ -1377,14 +1060,6 @@ module Aws::ConnectCases
1377
1060
  include Aws::Structure
1378
1061
  end
1379
1062
 
1380
- # @note When making an API call, you may pass GetLayoutRequest
1381
- # data as a hash:
1382
- #
1383
- # {
1384
- # domain_id: "DomainId", # required
1385
- # layout_id: "LayoutId", # required
1386
- # }
1387
- #
1388
1063
  # @!attribute [rw] domain_id
1389
1064
  # The unique identifier of the Cases domain.
1390
1065
  # @return [String]
@@ -1436,14 +1111,6 @@ module Aws::ConnectCases
1436
1111
  include Aws::Structure
1437
1112
  end
1438
1113
 
1439
- # @note When making an API call, you may pass GetTemplateRequest
1440
- # data as a hash:
1441
- #
1442
- # {
1443
- # domain_id: "DomainId", # required
1444
- # template_id: "TemplateId", # required
1445
- # }
1446
- #
1447
1114
  # @!attribute [rw] domain_id
1448
1115
  # The unique identifier of the Cases domain.
1449
1116
  # @return [String]
@@ -1531,13 +1198,6 @@ module Aws::ConnectCases
1531
1198
 
1532
1199
  # Object to store configuration of layouts associated to the template.
1533
1200
  #
1534
- # @note When making an API call, you may pass LayoutConfiguration
1535
- # data as a hash:
1536
- #
1537
- # {
1538
- # default_layout: "LayoutId",
1539
- # }
1540
- #
1541
1201
  # @!attribute [rw] default_layout
1542
1202
  # Unique identifier of a layout.
1543
1203
  # @return [String]
@@ -1577,24 +1237,6 @@ module Aws::ConnectCases
1577
1237
  # Ordered list containing different kinds of sections that can be added.
1578
1238
  # A LayoutSections object can only contain one section.
1579
1239
  #
1580
- # @note When making an API call, you may pass LayoutSections
1581
- # data as a hash:
1582
- #
1583
- # {
1584
- # sections: [
1585
- # {
1586
- # field_group: {
1587
- # fields: [ # required
1588
- # {
1589
- # id: "FieldId", # required
1590
- # },
1591
- # ],
1592
- # name: "FieldGroupNameString",
1593
- # },
1594
- # },
1595
- # ],
1596
- # }
1597
- #
1598
1240
  # @!attribute [rw] sections
1599
1241
  # Ordered list containing different kinds of sections that can be
1600
1242
  # added.
@@ -1632,16 +1274,6 @@ module Aws::ConnectCases
1632
1274
  include Aws::Structure
1633
1275
  end
1634
1276
 
1635
- # @note When making an API call, you may pass ListCasesForContactRequest
1636
- # data as a hash:
1637
- #
1638
- # {
1639
- # contact_arn: "ContactArn", # required
1640
- # domain_id: "DomainId", # required
1641
- # max_results: 1,
1642
- # next_token: "NextToken",
1643
- # }
1644
- #
1645
1277
  # @!attribute [rw] contact_arn
1646
1278
  # A unique identifier of a contact in Amazon Connect.
1647
1279
  # @return [String]
@@ -1689,14 +1321,6 @@ module Aws::ConnectCases
1689
1321
  include Aws::Structure
1690
1322
  end
1691
1323
 
1692
- # @note When making an API call, you may pass ListDomainsRequest
1693
- # data as a hash:
1694
- #
1695
- # {
1696
- # max_results: 1,
1697
- # next_token: "NextToken",
1698
- # }
1699
- #
1700
1324
  # @!attribute [rw] max_results
1701
1325
  # The maximum number of results to return per page.
1702
1326
  # @return [Integer]
@@ -1734,17 +1358,6 @@ module Aws::ConnectCases
1734
1358
  include Aws::Structure
1735
1359
  end
1736
1360
 
1737
- # @note When making an API call, you may pass ListFieldOptionsRequest
1738
- # data as a hash:
1739
- #
1740
- # {
1741
- # domain_id: "DomainId", # required
1742
- # field_id: "FieldId", # required
1743
- # max_results: 1,
1744
- # next_token: "NextToken",
1745
- # values: ["Value"],
1746
- # }
1747
- #
1748
1361
  # @!attribute [rw] domain_id
1749
1362
  # The unique identifier of the Cases domain.
1750
1363
  # @return [String]
@@ -1797,15 +1410,6 @@ module Aws::ConnectCases
1797
1410
  include Aws::Structure
1798
1411
  end
1799
1412
 
1800
- # @note When making an API call, you may pass ListFieldsRequest
1801
- # data as a hash:
1802
- #
1803
- # {
1804
- # domain_id: "DomainId", # required
1805
- # max_results: 1,
1806
- # next_token: "NextToken",
1807
- # }
1808
- #
1809
1413
  # @!attribute [rw] domain_id
1810
1414
  # The unique identifier of the Cases domain.
1811
1415
  # @return [String]
@@ -1848,15 +1452,6 @@ module Aws::ConnectCases
1848
1452
  include Aws::Structure
1849
1453
  end
1850
1454
 
1851
- # @note When making an API call, you may pass ListLayoutsRequest
1852
- # data as a hash:
1853
- #
1854
- # {
1855
- # domain_id: "DomainId", # required
1856
- # max_results: 1,
1857
- # next_token: "NextToken",
1858
- # }
1859
- #
1860
1455
  # @!attribute [rw] domain_id
1861
1456
  # The unique identifier of the Cases domain.
1862
1457
  # @return [String]
@@ -1899,13 +1494,6 @@ module Aws::ConnectCases
1899
1494
  include Aws::Structure
1900
1495
  end
1901
1496
 
1902
- # @note When making an API call, you may pass ListTagsForResourceRequest
1903
- # data as a hash:
1904
- #
1905
- # {
1906
- # arn: "Arn", # required
1907
- # }
1908
- #
1909
1497
  # @!attribute [rw] arn
1910
1498
  # The Amazon Resource Name (ARN)
1911
1499
  # @return [String]
@@ -1931,16 +1519,6 @@ module Aws::ConnectCases
1931
1519
  include Aws::Structure
1932
1520
  end
1933
1521
 
1934
- # @note When making an API call, you may pass ListTemplatesRequest
1935
- # data as a hash:
1936
- #
1937
- # {
1938
- # domain_id: "DomainId", # required
1939
- # max_results: 1,
1940
- # next_token: "NextToken",
1941
- # status: ["Active"], # accepts Active, Inactive
1942
- # }
1943
- #
1944
1522
  # @!attribute [rw] domain_id
1945
1523
  # The unique identifier of the Cases domain.
1946
1524
  # @return [String]
@@ -1988,28 +1566,6 @@ module Aws::ConnectCases
1988
1566
  include Aws::Structure
1989
1567
  end
1990
1568
 
1991
- # @note When making an API call, you may pass PutCaseEventConfigurationRequest
1992
- # data as a hash:
1993
- #
1994
- # {
1995
- # domain_id: "DomainId", # required
1996
- # event_bridge: { # required
1997
- # enabled: false, # required
1998
- # included_data: {
1999
- # case_data: {
2000
- # fields: [ # required
2001
- # {
2002
- # id: "FieldId", # required
2003
- # },
2004
- # ],
2005
- # },
2006
- # related_item_data: {
2007
- # include_content: false, # required
2008
- # },
2009
- # },
2010
- # },
2011
- # }
2012
- #
2013
1569
  # @!attribute [rw] domain_id
2014
1570
  # The unique identifier of the Cases domain.
2015
1571
  # @return [String]
@@ -2062,13 +1618,6 @@ module Aws::ConnectCases
2062
1618
  # Details of what related item data is published through the case event
2063
1619
  # stream.
2064
1620
  #
2065
- # @note When making an API call, you may pass RelatedItemEventIncludedData
2066
- # data as a hash:
2067
- #
2068
- # {
2069
- # include_content: false, # required
2070
- # }
2071
- #
2072
1621
  # @!attribute [rw] include_content
2073
1622
  # Details of what related item data is published through the case
2074
1623
  # event stream.
@@ -2140,13 +1689,6 @@ module Aws::ConnectCases
2140
1689
 
2141
1690
  # List of fields that must have a value provided to create a case.
2142
1691
  #
2143
- # @note When making an API call, you may pass RequiredField
2144
- # data as a hash:
2145
- #
2146
- # {
2147
- # field_id: "FieldId", # required
2148
- # }
2149
- #
2150
1692
  # @!attribute [rw] field_id
2151
1693
  # Unique identifier of a field.
2152
1694
  # @return [String]
@@ -2184,87 +1726,6 @@ module Aws::ConnectCases
2184
1726
  include Aws::Structure
2185
1727
  end
2186
1728
 
2187
- # @note When making an API call, you may pass SearchCasesRequest
2188
- # data as a hash:
2189
- #
2190
- # {
2191
- # domain_id: "DomainId", # required
2192
- # fields: [
2193
- # {
2194
- # id: "FieldId", # required
2195
- # },
2196
- # ],
2197
- # filter: {
2198
- # and_all: [
2199
- # {
2200
- # # recursive CaseFilter
2201
- # },
2202
- # ],
2203
- # field: {
2204
- # contains: {
2205
- # id: "FieldId", # required
2206
- # value: { # required
2207
- # boolean_value: false,
2208
- # double_value: 1.0,
2209
- # string_value: "FieldValueUnionStringValueString",
2210
- # },
2211
- # },
2212
- # equal_to: {
2213
- # id: "FieldId", # required
2214
- # value: { # required
2215
- # boolean_value: false,
2216
- # double_value: 1.0,
2217
- # string_value: "FieldValueUnionStringValueString",
2218
- # },
2219
- # },
2220
- # greater_than: {
2221
- # id: "FieldId", # required
2222
- # value: { # required
2223
- # boolean_value: false,
2224
- # double_value: 1.0,
2225
- # string_value: "FieldValueUnionStringValueString",
2226
- # },
2227
- # },
2228
- # greater_than_or_equal_to: {
2229
- # id: "FieldId", # required
2230
- # value: { # required
2231
- # boolean_value: false,
2232
- # double_value: 1.0,
2233
- # string_value: "FieldValueUnionStringValueString",
2234
- # },
2235
- # },
2236
- # less_than: {
2237
- # id: "FieldId", # required
2238
- # value: { # required
2239
- # boolean_value: false,
2240
- # double_value: 1.0,
2241
- # string_value: "FieldValueUnionStringValueString",
2242
- # },
2243
- # },
2244
- # less_than_or_equal_to: {
2245
- # id: "FieldId", # required
2246
- # value: { # required
2247
- # boolean_value: false,
2248
- # double_value: 1.0,
2249
- # string_value: "FieldValueUnionStringValueString",
2250
- # },
2251
- # },
2252
- # },
2253
- # not: {
2254
- # # recursive CaseFilter
2255
- # },
2256
- # },
2257
- # max_results: 1,
2258
- # next_token: "NextToken",
2259
- # search_term: "SearchCasesRequestSearchTermString",
2260
- # sorts: [
2261
- # {
2262
- # field_id: "FieldId", # required
2263
- # sort_order: "Asc", # required, accepts Asc, Desc
2264
- # },
2265
- # ],
2266
- # }
2267
- #
2268
1729
  # @!attribute [rw] domain_id
2269
1730
  # The unique identifier of the Cases domain.
2270
1731
  # @return [String]
@@ -2362,26 +1823,6 @@ module Aws::ConnectCases
2362
1823
  include Aws::Structure
2363
1824
  end
2364
1825
 
2365
- # @note When making an API call, you may pass SearchRelatedItemsRequest
2366
- # data as a hash:
2367
- #
2368
- # {
2369
- # case_id: "CaseId", # required
2370
- # domain_id: "DomainId", # required
2371
- # filters: [
2372
- # {
2373
- # comment: {
2374
- # },
2375
- # contact: {
2376
- # channel: ["Channel"],
2377
- # contact_arn: "ContactArn",
2378
- # },
2379
- # },
2380
- # ],
2381
- # max_results: 1,
2382
- # next_token: "NextToken",
2383
- # }
2384
- #
2385
1826
  # @!attribute [rw] case_id
2386
1827
  # A unique identifier of the case.
2387
1828
  # @return [String]
@@ -2514,14 +1955,6 @@ module Aws::ConnectCases
2514
1955
 
2515
1956
  # A structured set of sort terms.
2516
1957
  #
2517
- # @note When making an API call, you may pass Sort
2518
- # data as a hash:
2519
- #
2520
- # {
2521
- # field_id: "FieldId", # required
2522
- # sort_order: "Asc", # required, accepts Asc, Desc
2523
- # }
2524
- #
2525
1958
  # @!attribute [rw] field_id
2526
1959
  # Unique identifier of a field.
2527
1960
  # @return [String]
@@ -2539,16 +1972,6 @@ module Aws::ConnectCases
2539
1972
  include Aws::Structure
2540
1973
  end
2541
1974
 
2542
- # @note When making an API call, you may pass TagResourceRequest
2543
- # data as a hash:
2544
- #
2545
- # {
2546
- # arn: "Arn", # required
2547
- # tags: { # required
2548
- # "String" => "String",
2549
- # },
2550
- # }
2551
- #
2552
1975
  # @!attribute [rw] arn
2553
1976
  # The Amazon Resource Name (ARN)
2554
1977
  # @return [String]
@@ -2610,14 +2033,6 @@ module Aws::ConnectCases
2610
2033
  include Aws::Structure
2611
2034
  end
2612
2035
 
2613
- # @note When making an API call, you may pass UntagResourceRequest
2614
- # data as a hash:
2615
- #
2616
- # {
2617
- # arn: "Arn", # required
2618
- # tag_keys: ["TagKey"], # required
2619
- # }
2620
- #
2621
2036
  # @!attribute [rw] arn
2622
2037
  # The Amazon Resource Name (ARN)
2623
2038
  # @return [String]
@@ -2635,24 +2050,6 @@ module Aws::ConnectCases
2635
2050
  include Aws::Structure
2636
2051
  end
2637
2052
 
2638
- # @note When making an API call, you may pass UpdateCaseRequest
2639
- # data as a hash:
2640
- #
2641
- # {
2642
- # case_id: "CaseId", # required
2643
- # domain_id: "DomainId", # required
2644
- # fields: [ # required
2645
- # {
2646
- # id: "FieldId", # required
2647
- # value: { # required
2648
- # boolean_value: false,
2649
- # double_value: 1.0,
2650
- # string_value: "FieldValueUnionStringValueString",
2651
- # },
2652
- # },
2653
- # ],
2654
- # }
2655
- #
2656
2053
  # @!attribute [rw] case_id
2657
2054
  # A unique identifier of the case.
2658
2055
  # @return [String]
@@ -2681,16 +2078,6 @@ module Aws::ConnectCases
2681
2078
  #
2682
2079
  class UpdateCaseResponse < Aws::EmptyStructure; end
2683
2080
 
2684
- # @note When making an API call, you may pass UpdateFieldRequest
2685
- # data as a hash:
2686
- #
2687
- # {
2688
- # description: "FieldDescription",
2689
- # domain_id: "DomainId", # required
2690
- # field_id: "FieldId", # required
2691
- # name: "FieldName",
2692
- # }
2693
- #
2694
2081
  # @!attribute [rw] description
2695
2082
  # The description of a field.
2696
2083
  # @return [String]
@@ -2722,47 +2109,6 @@ module Aws::ConnectCases
2722
2109
  #
2723
2110
  class UpdateFieldResponse < Aws::EmptyStructure; end
2724
2111
 
2725
- # @note When making an API call, you may pass UpdateLayoutRequest
2726
- # data as a hash:
2727
- #
2728
- # {
2729
- # content: {
2730
- # basic: {
2731
- # more_info: {
2732
- # sections: [
2733
- # {
2734
- # field_group: {
2735
- # fields: [ # required
2736
- # {
2737
- # id: "FieldId", # required
2738
- # },
2739
- # ],
2740
- # name: "FieldGroupNameString",
2741
- # },
2742
- # },
2743
- # ],
2744
- # },
2745
- # top_panel: {
2746
- # sections: [
2747
- # {
2748
- # field_group: {
2749
- # fields: [ # required
2750
- # {
2751
- # id: "FieldId", # required
2752
- # },
2753
- # ],
2754
- # name: "FieldGroupNameString",
2755
- # },
2756
- # },
2757
- # ],
2758
- # },
2759
- # },
2760
- # },
2761
- # domain_id: "DomainId", # required
2762
- # layout_id: "LayoutId", # required
2763
- # name: "LayoutName",
2764
- # }
2765
- #
2766
2112
  # @!attribute [rw] content
2767
2113
  # Information about which fields will be present in the layout, the
2768
2114
  # order of the fields, and a read-only attribute of the field.
@@ -2795,25 +2141,6 @@ module Aws::ConnectCases
2795
2141
  #
2796
2142
  class UpdateLayoutResponse < Aws::EmptyStructure; end
2797
2143
 
2798
- # @note When making an API call, you may pass UpdateTemplateRequest
2799
- # data as a hash:
2800
- #
2801
- # {
2802
- # description: "TemplateDescription",
2803
- # domain_id: "DomainId", # required
2804
- # layout_configuration: {
2805
- # default_layout: "LayoutId",
2806
- # },
2807
- # name: "TemplateName",
2808
- # required_fields: [
2809
- # {
2810
- # field_id: "FieldId", # required
2811
- # },
2812
- # ],
2813
- # status: "Active", # accepts Active, Inactive
2814
- # template_id: "TemplateId", # required
2815
- # }
2816
- #
2817
2144
  # @!attribute [rw] description
2818
2145
  # A brief description of the template.
2819
2146
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-connectcases/customizations'
52
52
  # @!group service
53
53
  module Aws::ConnectCases
54
54
 
55
- GEM_VERSION = '1.2.0'
55
+ GEM_VERSION = '1.3.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connectcases
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.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: 2022-11-09 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core