aws-sdk-ivschat 1.6.0 → 1.8.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: 1674c7be1d9f7ddf10d366140305a60809f560b36be3ea4e26b3f3b55fc1efeb
4
- data.tar.gz: 458798bb9627af44a3816c1ec7f1b443d23ff8899e94a1cec9adb975f52d3858
3
+ metadata.gz: bdfb2823116dc41b7662ff0118ba2e11bd63eead83c56ba5b03f589f513f184a
4
+ data.tar.gz: b287950ed3dfbd69050e1fd5589166f1c7bb291bd472d13f779bda88bbc814b0
5
5
  SHA512:
6
- metadata.gz: 19b4ea0b5cc2254ac2677d1c7b52751e7d228703f8383362ee74b54492281cf6aff127db3a6247b1e1db9d2bfe1f33301d6285e677255d0ceaa073c104f80719
7
- data.tar.gz: 65540f0cb36396d2240a3f3caa6d5d3758b9ba6cca680b5af34141bf0d79fc174e84c4ad86591febe3f1613d5df8208cd24d22ca001ab42b0ccc2f8bd8d865d4
6
+ metadata.gz: 1de3a4e02ab02b510ff59d2299e64697d448346a67c72955bf1e54d38fade3fc971efb11adf264e76c4f9dc4e8ec309e579d01902c2f12c013aea0723d11bd2a
7
+ data.tar.gz: bac40b36a0ed2affd221f67cb6902466cb71544e577902f6bac3f0e38316ac632076e3c88b9e8119d36734d1fa27adf03456d6735d9018640c764db5e100403f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,18 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.8.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Updates the range for a Chat Room's maximumMessageRatePerSecond field.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
11
+ 1.7.0 (2022-12-05)
12
+ ------------------
13
+
14
+ * Feature - Adds PendingVerification error type to messaging APIs to block the resource usage for accounts identified as being fraudulent.
15
+
4
16
  1.6.0 (2022-11-17)
5
17
  ------------------
6
18
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.8.0
@@ -1238,7 +1238,7 @@ module Aws::Ivschat
1238
1238
  params: params,
1239
1239
  config: config)
1240
1240
  context[:gem_name] = 'aws-sdk-ivschat'
1241
- context[:gem_version] = '1.6.0'
1241
+ context[:gem_version] = '1.8.0'
1242
1242
  Seahorse::Client::Request.new(handlers, context)
1243
1243
  end
1244
1244
 
@@ -472,6 +472,7 @@ module Aws::Ivschat
472
472
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
473
473
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
474
474
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
475
+ o.errors << Shapes::ShapeRef.new(shape: PendingVerification)
475
476
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
476
477
  end)
477
478
 
@@ -496,6 +497,7 @@ module Aws::Ivschat
496
497
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
497
498
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
498
499
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
500
+ o.errors << Shapes::ShapeRef.new(shape: PendingVerification)
499
501
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
500
502
  end)
501
503
 
@@ -574,6 +576,7 @@ module Aws::Ivschat
574
576
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
575
577
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
576
578
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
579
+ o.errors << Shapes::ShapeRef.new(shape: PendingVerification)
577
580
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
578
581
  end)
579
582
 
@@ -50,6 +50,9 @@ module Aws::Ivschat
50
50
 
51
51
  def initialize(options = {})
52
52
  self[:region] = options[:region]
53
+ if self[:region].nil?
54
+ raise ArgumentError, "Missing required EndpointParameter: :region"
55
+ end
53
56
  self[:use_dual_stack] = options[:use_dual_stack]
54
57
  self[:use_dual_stack] = false if self[:use_dual_stack].nil?
55
58
  if self[:use_dual_stack].nil?
@@ -9,103 +9,43 @@
9
9
 
10
10
  module Aws::Ivschat
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)
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://ivschat-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://ivschat-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://ivschat.#{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://ivschat.#{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
- dCI6eyJ1cmwiOiJodHRwczovL2l2c2NoYXQtZmlwcy57UmVnaW9ufS57UGFy
77
- dGl0aW9uUmVzdWx0I2R1YWxTdGFja0Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVz
78
- Ijp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19LHsiY29u
79
- ZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBhbmQgRHVhbFN0YWNrIGFyZSBl
80
- bmFibGVkLCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBv
81
- bmUgb3IgYm90aCIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpb
82
- eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBT
83
- In0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9u
84
- cyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6
85
- ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwi
86
- c3VwcG9ydHNGSVBTIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJj
87
- b25kaXRpb25zIjpbXSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
88
- aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vaXZzY2hhdC1m
89
- aXBzLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInBy
90
- b3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
91
- XX1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkZJUFMgaXMgZW5hYmxl
92
- ZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBGSVBTIiwi
93
- dHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVh
94
- bkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVd
95
- fV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZu
96
- IjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRBdHRy
97
- IiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBvcnRz
98
- RHVhbFN0YWNrIl19XX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25k
99
- aXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9pdnNjaGF0
100
- LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4
101
- fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRw
102
- b2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sg
103
- aXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9y
104
- dCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6
105
- W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vaXZzY2hhdC57UmVnaW9u
106
- fS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7
107
- fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0=
108
-
109
- JSON
110
50
  end
111
51
  end
@@ -23,13 +23,6 @@ module Aws::Ivschat
23
23
 
24
24
  # Specifies a CloudWatch Logs location where chat logs will be stored.
25
25
  #
26
- # @note When making an API call, you may pass CloudWatchLogsDestinationConfiguration
27
- # data as a hash:
28
- #
29
- # {
30
- # log_group_name: "LogGroupName", # required
31
- # }
32
- #
33
26
  # @!attribute [rw] log_group_name
34
27
  # Name of the Amazon Cloudwatch Logs destination where chat activity
35
28
  # will be logged.
@@ -62,19 +55,6 @@ module Aws::Ivschat
62
55
  include Aws::Structure
63
56
  end
64
57
 
65
- # @note When making an API call, you may pass CreateChatTokenRequest
66
- # data as a hash:
67
- #
68
- # {
69
- # attributes: {
70
- # "String" => "String",
71
- # },
72
- # capabilities: ["SEND_MESSAGE"], # accepts SEND_MESSAGE, DISCONNECT_USER, DELETE_MESSAGE
73
- # room_identifier: "RoomIdentifier", # required
74
- # session_duration_in_minutes: 1,
75
- # user_id: "UserID", # required
76
- # }
77
- #
78
58
  # @!attribute [rw] attributes
79
59
  # Application-provided attributes to encode into the token and attach
80
60
  # to a chat session. Map keys and values can contain UTF-8 encoded
@@ -139,27 +119,6 @@ module Aws::Ivschat
139
119
  include Aws::Structure
140
120
  end
141
121
 
142
- # @note When making an API call, you may pass CreateLoggingConfigurationRequest
143
- # data as a hash:
144
- #
145
- # {
146
- # destination_configuration: { # required
147
- # cloud_watch_logs: {
148
- # log_group_name: "LogGroupName", # required
149
- # },
150
- # firehose: {
151
- # delivery_stream_name: "DeliveryStreamName", # required
152
- # },
153
- # s3: {
154
- # bucket_name: "BucketName", # required
155
- # },
156
- # },
157
- # name: "LoggingConfigurationName",
158
- # tags: {
159
- # "TagKey" => "TagValue",
160
- # },
161
- # }
162
- #
163
122
  # @!attribute [rw] destination_configuration
164
123
  # A complex type that contains a destination configuration for where
165
124
  # chat content will be logged. There can be only one type of
@@ -249,23 +208,6 @@ module Aws::Ivschat
249
208
  include Aws::Structure
250
209
  end
251
210
 
252
- # @note When making an API call, you may pass CreateRoomRequest
253
- # data as a hash:
254
- #
255
- # {
256
- # logging_configuration_identifiers: ["LoggingConfigurationIdentifier"],
257
- # maximum_message_length: 1,
258
- # maximum_message_rate_per_second: 1,
259
- # message_review_handler: {
260
- # fallback_result: "ALLOW", # accepts ALLOW, DENY
261
- # uri: "LambdaArn",
262
- # },
263
- # name: "RoomName",
264
- # tags: {
265
- # "TagKey" => "TagValue",
266
- # },
267
- # }
268
- #
269
211
  # @!attribute [rw] logging_configuration_identifiers
270
212
  # Array of logging-configuration identifiers attached to the room.
271
213
  # @return [Array<String>]
@@ -377,13 +319,6 @@ module Aws::Ivschat
377
319
  include Aws::Structure
378
320
  end
379
321
 
380
- # @note When making an API call, you may pass DeleteLoggingConfigurationRequest
381
- # data as a hash:
382
- #
383
- # {
384
- # identifier: "LoggingConfigurationIdentifier", # required
385
- # }
386
- #
387
322
  # @!attribute [rw] identifier
388
323
  # Identifier of the logging configuration to be deleted.
389
324
  # @return [String]
@@ -396,15 +331,6 @@ module Aws::Ivschat
396
331
  include Aws::Structure
397
332
  end
398
333
 
399
- # @note When making an API call, you may pass DeleteMessageRequest
400
- # data as a hash:
401
- #
402
- # {
403
- # id: "MessageID", # required
404
- # reason: "Reason",
405
- # room_identifier: "RoomIdentifier", # required
406
- # }
407
- #
408
334
  # @!attribute [rw] id
409
335
  # ID of the message to be deleted. This is the `Id` field in the
410
336
  # received message (see [ Message (Subscribe)][1] in the Chat
@@ -446,13 +372,6 @@ module Aws::Ivschat
446
372
  include Aws::Structure
447
373
  end
448
374
 
449
- # @note When making an API call, you may pass DeleteRoomRequest
450
- # data as a hash:
451
- #
452
- # {
453
- # identifier: "RoomIdentifier", # required
454
- # }
455
- #
456
375
  # @!attribute [rw] identifier
457
376
  # Identifier of the room to be deleted. Currently this must be an ARN.
458
377
  # @return [String]
@@ -475,17 +394,18 @@ module Aws::Ivschat
475
394
  # @note DestinationConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DestinationConfiguration corresponding to the set member.
476
395
  #
477
396
  # @!attribute [rw] cloud_watch_logs
478
- # Name of the Amazon CloudWatch Logs destination where chat activity
479
- # will be logged.
397
+ # An Amazon CloudWatch Logs destination configuration where chat
398
+ # activity will be logged.
480
399
  # @return [Types::CloudWatchLogsDestinationConfiguration]
481
400
  #
482
401
  # @!attribute [rw] firehose
483
- # Name of the Amazon Kinesis Data Firehose destination where chat
484
- # activity will be logged
402
+ # An Amazon Kinesis Data Firehose destination configuration where chat
403
+ # activity will be logged.
485
404
  # @return [Types::FirehoseDestinationConfiguration]
486
405
  #
487
406
  # @!attribute [rw] s3
488
- # Name of the Amazon S3 bucket where chat activity will be logged.
407
+ # An Amazon S3 destination configuration where chat activity will be
408
+ # logged.
489
409
  # @return [Types::S3DestinationConfiguration]
490
410
  #
491
411
  # @see http://docs.aws.amazon.com/goto/WebAPI/ivschat-2020-07-14/DestinationConfiguration AWS API Documentation
@@ -505,15 +425,6 @@ module Aws::Ivschat
505
425
  class Unknown < DestinationConfiguration; end
506
426
  end
507
427
 
508
- # @note When making an API call, you may pass DisconnectUserRequest
509
- # data as a hash:
510
- #
511
- # {
512
- # reason: "Reason",
513
- # room_identifier: "RoomIdentifier", # required
514
- # user_id: "UserID", # required
515
- # }
516
- #
517
428
  # @!attribute [rw] reason
518
429
  # Reason for disconnecting the user.
519
430
  # @return [String]
@@ -543,13 +454,6 @@ module Aws::Ivschat
543
454
 
544
455
  # Specifies a Kinesis Firehose location where chat logs will be stored.
545
456
  #
546
- # @note When making an API call, you may pass FirehoseDestinationConfiguration
547
- # data as a hash:
548
- #
549
- # {
550
- # delivery_stream_name: "DeliveryStreamName", # required
551
- # }
552
- #
553
457
  # @!attribute [rw] delivery_stream_name
554
458
  # Name of the Amazon Kinesis Firehose delivery stream where chat
555
459
  # activity will be logged.
@@ -563,13 +467,6 @@ module Aws::Ivschat
563
467
  include Aws::Structure
564
468
  end
565
469
 
566
- # @note When making an API call, you may pass GetLoggingConfigurationRequest
567
- # data as a hash:
568
- #
569
- # {
570
- # identifier: "LoggingConfigurationIdentifier", # required
571
- # }
572
- #
573
470
  # @!attribute [rw] identifier
574
471
  # Identifier of the logging configuration to be retrieved.
575
472
  # @return [String]
@@ -639,13 +536,6 @@ module Aws::Ivschat
639
536
  include Aws::Structure
640
537
  end
641
538
 
642
- # @note When making an API call, you may pass GetRoomRequest
643
- # data as a hash:
644
- #
645
- # {
646
- # identifier: "RoomIdentifier", # required
647
- # }
648
- #
649
539
  # @!attribute [rw] identifier
650
540
  # Identifier of the room for which the configuration is to be
651
541
  # retrieved. Currently this must be an ARN.
@@ -734,14 +624,6 @@ module Aws::Ivschat
734
624
  include Aws::Structure
735
625
  end
736
626
 
737
- # @note When making an API call, you may pass ListLoggingConfigurationsRequest
738
- # data as a hash:
739
- #
740
- # {
741
- # max_results: 1,
742
- # next_token: "PaginationToken",
743
- # }
744
- #
745
627
  # @!attribute [rw] max_results
746
628
  # Maximum number of logging configurations to return. Default: 50.
747
629
  # @return [Integer]
@@ -780,17 +662,6 @@ module Aws::Ivschat
780
662
  include Aws::Structure
781
663
  end
782
664
 
783
- # @note When making an API call, you may pass ListRoomsRequest
784
- # data as a hash:
785
- #
786
- # {
787
- # logging_configuration_identifier: "LoggingConfigurationIdentifier",
788
- # max_results: 1,
789
- # message_review_handler_uri: "LambdaArn",
790
- # name: "RoomName",
791
- # next_token: "PaginationToken",
792
- # }
793
- #
794
665
  # @!attribute [rw] logging_configuration_identifier
795
666
  # Logging-configuration identifier.
796
667
  # @return [String]
@@ -842,13 +713,6 @@ module Aws::Ivschat
842
713
  include Aws::Structure
843
714
  end
844
715
 
845
- # @note When making an API call, you may pass ListTagsForResourceRequest
846
- # data as a hash:
847
- #
848
- # {
849
- # resource_arn: "ResourceArn", # required
850
- # }
851
- #
852
716
  # @!attribute [rw] resource_arn
853
717
  # The ARN of the resource to be retrieved. The ARN must be
854
718
  # URL-encoded.
@@ -940,14 +804,6 @@ module Aws::Ivschat
940
804
 
941
805
  # Configuration information for optional message review.
942
806
  #
943
- # @note When making an API call, you may pass MessageReviewHandler
944
- # data as a hash:
945
- #
946
- # {
947
- # fallback_result: "ALLOW", # accepts ALLOW, DENY
948
- # uri: "LambdaArn",
949
- # }
950
- #
951
807
  # @!attribute [rw] fallback_result
952
808
  # Specifies the fallback behavior (whether the message is allowed or
953
809
  # denied) if the handler does not return a valid response, encounters
@@ -1067,13 +923,6 @@ module Aws::Ivschat
1067
923
 
1068
924
  # Specifies an S3 location where chat logs will be stored.
1069
925
  #
1070
- # @note When making an API call, you may pass S3DestinationConfiguration
1071
- # data as a hash:
1072
- #
1073
- # {
1074
- # bucket_name: "BucketName", # required
1075
- # }
1076
- #
1077
926
  # @!attribute [rw] bucket_name
1078
927
  # Name of the Amazon S3 bucket where chat activity will be logged.
1079
928
  # @return [String]
@@ -1086,17 +935,6 @@ module Aws::Ivschat
1086
935
  include Aws::Structure
1087
936
  end
1088
937
 
1089
- # @note When making an API call, you may pass SendEventRequest
1090
- # data as a hash:
1091
- #
1092
- # {
1093
- # attributes: {
1094
- # "String" => "String",
1095
- # },
1096
- # event_name: "EventName", # required
1097
- # room_identifier: "RoomIdentifier", # required
1098
- # }
1099
- #
1100
938
  # @!attribute [rw] attributes
1101
939
  # Application-defined metadata to attach to the event sent to clients.
1102
940
  # The maximum length of the metadata is 1 KB total.
@@ -1158,16 +996,6 @@ module Aws::Ivschat
1158
996
  include Aws::Structure
1159
997
  end
1160
998
 
1161
- # @note When making an API call, you may pass TagResourceRequest
1162
- # data as a hash:
1163
- #
1164
- # {
1165
- # resource_arn: "ResourceArn", # required
1166
- # tags: { # required
1167
- # "TagKey" => "TagValue",
1168
- # },
1169
- # }
1170
- #
1171
999
  # @!attribute [rw] resource_arn
1172
1000
  # The ARN of the resource to be tagged. The ARN must be URL-encoded.
1173
1001
  # @return [String]
@@ -1220,14 +1048,6 @@ module Aws::Ivschat
1220
1048
  include Aws::Structure
1221
1049
  end
1222
1050
 
1223
- # @note When making an API call, you may pass UntagResourceRequest
1224
- # data as a hash:
1225
- #
1226
- # {
1227
- # resource_arn: "ResourceArn", # required
1228
- # tag_keys: ["TagKey"], # required
1229
- # }
1230
- #
1231
1051
  # @!attribute [rw] resource_arn
1232
1052
  # The ARN of the resource to be untagged. The ARN must be URL-encoded.
1233
1053
  # @return [String]
@@ -1257,25 +1077,6 @@ module Aws::Ivschat
1257
1077
  #
1258
1078
  class UntagResourceResponse < Aws::EmptyStructure; end
1259
1079
 
1260
- # @note When making an API call, you may pass UpdateLoggingConfigurationRequest
1261
- # data as a hash:
1262
- #
1263
- # {
1264
- # destination_configuration: {
1265
- # cloud_watch_logs: {
1266
- # log_group_name: "LogGroupName", # required
1267
- # },
1268
- # firehose: {
1269
- # delivery_stream_name: "DeliveryStreamName", # required
1270
- # },
1271
- # s3: {
1272
- # bucket_name: "BucketName", # required
1273
- # },
1274
- # },
1275
- # identifier: "LoggingConfigurationIdentifier", # required
1276
- # name: "LoggingConfigurationName",
1277
- # }
1278
- #
1279
1080
  # @!attribute [rw] destination_configuration
1280
1081
  # A complex type that contains a destination configuration for where
1281
1082
  # chat content will be logged. There can be only one type of
@@ -1358,21 +1159,6 @@ module Aws::Ivschat
1358
1159
  include Aws::Structure
1359
1160
  end
1360
1161
 
1361
- # @note When making an API call, you may pass UpdateRoomRequest
1362
- # data as a hash:
1363
- #
1364
- # {
1365
- # identifier: "RoomIdentifier", # required
1366
- # logging_configuration_identifiers: ["LoggingConfigurationIdentifier"],
1367
- # maximum_message_length: 1,
1368
- # maximum_message_rate_per_second: 1,
1369
- # message_review_handler: {
1370
- # fallback_result: "ALLOW", # accepts ALLOW, DENY
1371
- # uri: "LambdaArn",
1372
- # },
1373
- # name: "RoomName",
1374
- # }
1375
- #
1376
1162
  # @!attribute [rw] identifier
1377
1163
  # Identifier of the room to be updated. Currently this must be an ARN.
1378
1164
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-ivschat/customizations'
52
52
  # @!group service
53
53
  module Aws::Ivschat
54
54
 
55
- GEM_VERSION = '1.6.0'
55
+ GEM_VERSION = '1.8.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ivschat
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.8.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-17 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