aws-sdk-cloudwatchrum 1.19.0 → 1.21.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: f57c12b93f2d224ba6feba5c9491e8d1704dd5adb77ec5d0ab9e10fe9f7ca967
4
- data.tar.gz: 26acac08d5047c5b7446288429c9bec7ac2a8b94ff471845502cb61cb90e861d
3
+ metadata.gz: a880f01dc54c0a85c67dd8956eb94dddc7f006892a22544438e18c6a5d818c2d
4
+ data.tar.gz: c519b68b21961503bf219e862681941c1b50c48c5ffd410bbd9cbe57c2bb99b7
5
5
  SHA512:
6
- metadata.gz: 8158e6d2757f8895bb2c81325367bdec2ef379cbb02551fa87c67133851cc02dd99ab574b1b575eedd5557255d3e75941b8548cc479a8f8b7b7f41e89c703a8b
7
- data.tar.gz: 0d87e4b7962075cf5e8d90748693addde127cd0e00ff0cedc0aa1103298e3d40f600ff2e8704a90b42ecd977de735d4f62641346797d0433d4696a08ff165343
6
+ metadata.gz: 0e148a09f711a9ba6e7dc61b5b4275b94eb458475ba1e0c6dd587c5f7dfe5c81584a8713b130daf3fb4c09fd0b8fee9a316ae4d0a958748ec89b08a4df4f22b7
7
+ data.tar.gz: 5150a57fce3d7856ae52d8f8eb9148d4da496e93db45f981d184338fdec6b0a95195bd3aa7377571710d44cb47ae17696d4dc9dce3d70e26b07b37d66655179f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.21.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.20.0 (2024-02-23)
10
+ ------------------
11
+
12
+ * Feature - Doc-only update for new RUM metrics that were added
13
+
4
14
  1.19.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.19.0
1
+ 1.21.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::CloudWatchRUM
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::CloudWatchRUM
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -337,50 +346,65 @@ module Aws::CloudWatchRUM
337
346
  # @option options [Aws::CloudWatchRUM::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::CloudWatchRUM::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
362
399
  #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
365
402
  #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
368
405
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
372
- #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
378
- #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -397,21 +421,21 @@ module Aws::CloudWatchRUM
397
421
  # with CloudWatch RUM][1].
398
422
  #
399
423
  # In addition to these default metrics, you can choose to send extended
400
- # metrics or custom metrics or both.
424
+ # metrics, custom metrics, or both.
401
425
  #
402
- # * Extended metrics enable you to send metrics with additional
403
- # dimensions not included in the default metrics. You can also send
404
- # extended metrics to Evidently as well as CloudWatch. The valid
426
+ # * Extended metrics let you send metrics with additional dimensions
427
+ # that aren't included in the default metrics. You can also send
428
+ # extended metrics to both Evidently and CloudWatch. The valid
405
429
  # dimension names for the additional dimensions for extended metrics
406
430
  # are `BrowserName`, `CountryCode`, `DeviceType`, `FileType`,
407
431
  # `OSName`, and `PageId`. For more information, see [ Extended metrics
408
432
  # that you can send to CloudWatch and CloudWatch Evidently][2].
409
433
  #
410
434
  # * Custom metrics are metrics that you define. You can send custom
411
- # metrics to CloudWatch or to CloudWatch Evidently or to both. With
412
- # custom metrics, you can use any metric name and namespace, and to
413
- # derive the metrics you can use any custom events, built-in events,
414
- # custom attributes, or default attributes.
435
+ # metrics to CloudWatch. CloudWatch Evidently, or both. With custom
436
+ # metrics, you can use any metric name and namespace. To derive the
437
+ # metrics, you can use any custom events, built-in events, custom
438
+ # attributes, or default attributes.
415
439
  #
416
440
  # You can't send custom metrics to the `AWS/RUM` namespace. You must
417
441
  # send custom metrics to a custom namespace that you define. The
@@ -453,9 +477,9 @@ module Aws::CloudWatchRUM
453
477
  # @option params [required, String] :destination
454
478
  # The destination to send the metrics to. Valid values are `CloudWatch`
455
479
  # and `Evidently`. If you specify `Evidently`, you must also specify the
456
- # ARN of the CloudWatchEvidently experiment that will receive the
457
- # metrics and an IAM role that has permission to write to the
458
- # experiment.
480
+ # Amazon Resource Name (ARN) of the CloudWatchEvidently experiment that
481
+ # will receive the metrics and an IAM role that has permission to write
482
+ # to the experiment.
459
483
  #
460
484
  # @option params [String] :destination_arn
461
485
  # This parameter is required if `Destination` is `Evidently`. If
@@ -694,7 +718,7 @@ module Aws::CloudWatchRUM
694
718
  #
695
719
  #
696
720
  #
697
- # [1]: https://docs.aws.amazon.com/monitoring/CloudWatch-RUM-get-started-authorization.html
721
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-RUM-get-started-authorization.html
698
722
  #
699
723
  # @option params [Types::CustomEvents] :custom_events
700
724
  # Specifies whether this app monitor allows the web client to define and
@@ -1177,12 +1201,22 @@ module Aws::CloudWatchRUM
1177
1201
  #
1178
1202
  # @option params [String] :iam_role_arn
1179
1203
  # This parameter is required if `Destination` is `Evidently`. If
1180
- # `Destination` is `CloudWatch`, do not use this parameter.
1204
+ # `Destination` is `CloudWatch`, don't use this parameter.
1181
1205
  #
1182
1206
  # This parameter specifies the ARN of an IAM role that RUM will assume
1183
1207
  # to write to the Evidently experiment that you are sending metrics to.
1184
1208
  # This role must have permission to write to that experiment.
1185
1209
  #
1210
+ # If you specify this parameter, you must be signed on to a role that
1211
+ # has [PassRole][1] permissions attached to it, to allow the role to be
1212
+ # passed. The [ CloudWatchAmazonCloudWatchRUMFullAccess][2] policy
1213
+ # doesn't include `PassRole` permissions.
1214
+ #
1215
+ #
1216
+ #
1217
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use_passrole.html
1218
+ # [2]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/auth-and-access-control-cw.html#managed-policies-cloudwatch-RUM
1219
+ #
1186
1220
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1187
1221
  #
1188
1222
  # @example Request syntax with placeholder values
@@ -1314,7 +1348,7 @@ module Aws::CloudWatchRUM
1314
1348
  #
1315
1349
  #
1316
1350
  #
1317
- # [1]: https://docs.aws.amazon.com/monitoring/CloudWatch-RUM-get-started-authorization.html
1351
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-RUM-get-started-authorization.html
1318
1352
  #
1319
1353
  # @option params [Types::CustomEvents] :custom_events
1320
1354
  # Specifies whether this app monitor allows the web client to define and
@@ -1454,7 +1488,7 @@ module Aws::CloudWatchRUM
1454
1488
  params: params,
1455
1489
  config: config)
1456
1490
  context[:gem_name] = 'aws-sdk-cloudwatchrum'
1457
- context[:gem_version] = '1.19.0'
1491
+ context[:gem_version] = '1.21.0'
1458
1492
  Seahorse::Client::Request.new(handlers, context)
1459
1493
  end
1460
1494
 
@@ -32,7 +32,7 @@ module Aws::CloudWatchRUM
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://rum-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -139,6 +139,28 @@ module Aws::CloudWatchRUM
139
139
  # @!attribute [rw] guest_role_arn
140
140
  # The ARN of the guest IAM role that is attached to the Amazon Cognito
141
141
  # identity pool that is used to authorize the sending of data to RUM.
142
+ #
143
+ # <note markdown="1"> It is possible that an app monitor does not have a value for
144
+ # `GuestRoleArn`. For example, this can happen when you use the
145
+ # console to create an app monitor and you allow CloudWatch RUM to
146
+ # create a new identity pool for Authorization. In this case,
147
+ # `GuestRoleArn` is not present in the [GetAppMonitor][1] response
148
+ # because it is not stored by the service.
149
+ #
150
+ # If this issue affects you, you can take one of the following steps:
151
+ #
152
+ # * Use the Cloud Development Kit (CDK) to create an identity pool and
153
+ # the associated IAM role, and use that for your app monitor.
154
+ #
155
+ # * Make a separate [GetIdentityPoolRoles][2] call to Amazon Cognito
156
+ # to retrieve the `GuestRoleArn`.
157
+ #
158
+ # </note>
159
+ #
160
+ #
161
+ #
162
+ # [1]: https://docs.aws.amazon.com/cloudwatchrum/latest/APIReference/API_GetAppMonitor.html
163
+ # [2]: https://docs.aws.amazon.com/cognitoidentity/latest/APIReference/API_GetIdentityPoolRoles.html
142
164
  # @return [String]
143
165
  #
144
166
  # @!attribute [rw] identity_pool_id
@@ -295,9 +317,9 @@ module Aws::CloudWatchRUM
295
317
  # @!attribute [rw] destination
296
318
  # The destination to send the metrics to. Valid values are
297
319
  # `CloudWatch` and `Evidently`. If you specify `Evidently`, you must
298
- # also specify the ARN of the CloudWatchEvidently experiment that will
299
- # receive the metrics and an IAM role that has permission to write to
300
- # the experiment.
320
+ # also specify the Amazon Resource Name (ARN) of the
321
+ # CloudWatchEvidently experiment that will receive the metrics and an
322
+ # IAM role that has permission to write to the experiment.
301
323
  # @return [String]
302
324
  #
303
325
  # @!attribute [rw] destination_arn
@@ -530,7 +552,7 @@ module Aws::CloudWatchRUM
530
552
  #
531
553
  #
532
554
  #
533
- # [1]: https://docs.aws.amazon.com/monitoring/CloudWatch-RUM-get-started-authorization.html
555
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-RUM-get-started-authorization.html
534
556
  # @return [Types::AppMonitorConfiguration]
535
557
  #
536
558
  # @!attribute [rw] custom_events
@@ -997,8 +1019,8 @@ module Aws::CloudWatchRUM
997
1019
 
998
1020
  # Use this structure to define one extended metric or custom metric that
999
1021
  # RUM will send to CloudWatch or CloudWatch Evidently. For more
1000
- # information, see [ Additional metrics that you can send to CloudWatch
1001
- # and CloudWatch Evidently][1].
1022
+ # information, see [ Custom metrics and extended metrics that you can
1023
+ # send to CloudWatch and CloudWatch Evidently][1].
1002
1024
  #
1003
1025
  # This structure is validated differently for extended metrics and
1004
1026
  # custom metrics. For extended metrics that are sent to the `AWS/RUM`
@@ -1008,8 +1030,8 @@ module Aws::CloudWatchRUM
1008
1030
  #
1009
1031
  # * Only certain combinations of values for `Name`, `ValueKey`, and
1010
1032
  # `EventPattern` are valid. In addition to what is displayed in the
1011
- # list below, the `EventPattern` can also include information used by
1012
- # the `DimensionKeys` field.
1033
+ # following list, the `EventPattern` can also include information used
1034
+ # by the `DimensionKeys` field.
1013
1035
  #
1014
1036
  # * If `Name` is `PerformanceNavigationDuration`, then `ValueKey`must
1015
1037
  # be `event_details.duration` and the `EventPattern` must include
@@ -1060,6 +1082,20 @@ module Aws::CloudWatchRUM
1060
1082
  # `EventPattern` must include
1061
1083
  # `\{"event_type":["com.amazon.rum.session_start_event"]\}`
1062
1084
  #
1085
+ # * If `Name` is `PageViewCount`, then `ValueKey`must be null and the
1086
+ # `EventPattern` must include
1087
+ # `\{"event_type":["com.amazon.rum.page_view_event"]\}`
1088
+ #
1089
+ # * If `Name` is `Http4xxCount`, then `ValueKey`must be null and the
1090
+ # `EventPattern` must include `\{"event_type":
1091
+ # ["com.amazon.rum.http_event"],"event_details":\{"response":\{"status":[\{"numeric":[">=",400,"<",500]\}]\}\}\}
1092
+ # \}`
1093
+ #
1094
+ # * If `Name` is `Http5xxCount`, then `ValueKey`must be null and the
1095
+ # `EventPattern` must include `\{"event_type":
1096
+ # ["com.amazon.rum.http_event"],"event_details":\{"response":\{"status":[\{"numeric":[">=",500,"<=",599]\}]\}\}\}
1097
+ # \}`
1098
+ #
1063
1099
  # For custom metrics, the following validation rules apply:
1064
1100
  #
1065
1101
  # * The namespace can't be omitted and can't be `AWS/RUM`. You can use
@@ -1123,7 +1159,7 @@ module Aws::CloudWatchRUM
1123
1159
  #
1124
1160
  #
1125
1161
  #
1126
- # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-RUM-vended-metrics.html
1162
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-RUM-custom-and-extended-metrics.html
1127
1163
  # [2]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-RUM-datacollected.html#CloudWatch-RUM-datacollected-eventDetails
1128
1164
  #
1129
1165
  # @!attribute [rw] dimension_keys
@@ -1175,7 +1211,7 @@ module Aws::CloudWatchRUM
1175
1211
  # "event_details": \{ "duration": [\{ "numeric": [ ">=", 2000, "<",
1176
1212
  # 8000 ] \}] \} \}'`
1177
1213
  #
1178
- # If the metrics destination' is `CloudWatch` and the event also
1214
+ # If the metrics destination is `CloudWatch` and the event also
1179
1215
  # matches a value in `DimensionKeys`, then the metric is published
1180
1216
  # with the specified dimensions.
1181
1217
  # @return [String]
@@ -1228,12 +1264,12 @@ module Aws::CloudWatchRUM
1228
1264
  # from.
1229
1265
  #
1230
1266
  # If you omit this field, a hardcoded value of 1 is pushed as the
1231
- # metric value. This is useful if you just want to count the number of
1267
+ # metric value. This is useful if you want to count the number of
1232
1268
  # events that the filter catches.
1233
1269
  #
1234
1270
  # If this metric is sent to CloudWatch Evidently, this field will be
1235
- # passed to Evidently raw and Evidently will handle data extraction
1236
- # from the event.
1271
+ # passed to Evidently raw. Evidently will handle data extraction from
1272
+ # the event.
1237
1273
  # @return [String]
1238
1274
  #
1239
1275
  # @see http://docs.aws.amazon.com/goto/WebAPI/rum-2018-05-10/MetricDefinitionRequest AWS API Documentation
@@ -1336,11 +1372,21 @@ module Aws::CloudWatchRUM
1336
1372
  #
1337
1373
  # @!attribute [rw] iam_role_arn
1338
1374
  # This parameter is required if `Destination` is `Evidently`. If
1339
- # `Destination` is `CloudWatch`, do not use this parameter.
1375
+ # `Destination` is `CloudWatch`, don't use this parameter.
1340
1376
  #
1341
1377
  # This parameter specifies the ARN of an IAM role that RUM will assume
1342
1378
  # to write to the Evidently experiment that you are sending metrics
1343
1379
  # to. This role must have permission to write to that experiment.
1380
+ #
1381
+ # If you specify this parameter, you must be signed on to a role that
1382
+ # has [PassRole][1] permissions attached to it, to allow the role to
1383
+ # be passed. The [ CloudWatchAmazonCloudWatchRUMFullAccess][2] policy
1384
+ # doesn't include `PassRole` permissions.
1385
+ #
1386
+ #
1387
+ #
1388
+ # [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_use_passrole.html
1389
+ # [2]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/auth-and-access-control-cw.html#managed-policies-cloudwatch-RUM
1344
1390
  # @return [String]
1345
1391
  #
1346
1392
  # @see http://docs.aws.amazon.com/goto/WebAPI/rum-2018-05-10/PutRumMetricsDestinationRequest AWS API Documentation
@@ -1573,7 +1619,7 @@ module Aws::CloudWatchRUM
1573
1619
  #
1574
1620
  #
1575
1621
  #
1576
- # [1]: https://docs.aws.amazon.com/monitoring/CloudWatch-RUM-get-started-authorization.html
1622
+ # [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-RUM-get-started-authorization.html
1577
1623
  # @return [Types::AppMonitorConfiguration]
1578
1624
  #
1579
1625
  # @!attribute [rw] custom_events
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-cloudwatchrum/customizations'
52
52
  # @!group service
53
53
  module Aws::CloudWatchRUM
54
54
 
55
- GEM_VERSION = '1.19.0'
55
+ GEM_VERSION = '1.21.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudwatchrum
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.19.0
4
+ version: 1.21.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: 2024-01-26 00:00:00.000000000 Z
11
+ date: 2024-04-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.191.0
22
+ version: 3.193.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement