aws-sdk-cloudwatchrum 1.8.0 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudwatchrum/client.rb +49 -22
- data/lib/aws-sdk-cloudwatchrum/client_api.rb +13 -5
- data/lib/aws-sdk-cloudwatchrum/endpoint_provider.rb +27 -24
- data/lib/aws-sdk-cloudwatchrum/types.rb +140 -50
- data/lib/aws-sdk-cloudwatchrum.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5391924bd2289ce6f8a6649d33e1e9c5fbe61f90b3c8b1de5edf84204d55ee6b
|
|
4
|
+
data.tar.gz: bf92864d012e4a35fb7f00aced710f6a8d04b0437a17bcbc4edaee27733c3ab6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 14dd8592baa4dbbb37e7d968425ffe6c3277883d47e4dcb774347d5b2e1185816d5844edbc94af9608651c3535b73d526c9318eb6fd58060d4834fe84c18ed4f
|
|
7
|
+
data.tar.gz: c15878c576c1c9c90d0cc432d36b64f87bcb8ff928bdaed909691abd579ea0fb387a7124d0ef15d9d13f5f0fd49bf6980642606e2c2ce8920ab0c865a90896ca
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.10.0 (2023-05-31)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.9.0 (2023-02-22)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - CloudWatch RUM now supports CloudWatch Custom Metrics
|
|
13
|
+
|
|
4
14
|
1.8.0 (2023-01-18)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.10.0
|
|
@@ -275,6 +275,11 @@ module Aws::CloudWatchRUM
|
|
|
275
275
|
# in the future.
|
|
276
276
|
#
|
|
277
277
|
#
|
|
278
|
+
# @option options [String] :sdk_ua_app_id
|
|
279
|
+
# A unique and opaque application ID that is appended to the
|
|
280
|
+
# User-Agent header as app/<sdk_ua_app_id>. It should have a
|
|
281
|
+
# maximum length of 50.
|
|
282
|
+
#
|
|
278
283
|
# @option options [String] :secret_access_key
|
|
279
284
|
#
|
|
280
285
|
# @option options [String] :session_token
|
|
@@ -368,21 +373,37 @@ module Aws::CloudWatchRUM
|
|
|
368
373
|
|
|
369
374
|
# @!group API Operations
|
|
370
375
|
|
|
371
|
-
# Specifies the extended metrics that you want a
|
|
372
|
-
# monitor to send to a destination. Valid
|
|
373
|
-
# CloudWatch and Evidently.
|
|
376
|
+
# Specifies the extended metrics and custom metrics that you want a
|
|
377
|
+
# CloudWatch RUM app monitor to send to a destination. Valid
|
|
378
|
+
# destinations include CloudWatch and Evidently.
|
|
374
379
|
#
|
|
375
380
|
# By default, RUM app monitors send some metrics to CloudWatch. These
|
|
376
381
|
# default metrics are listed in [CloudWatch metrics that you can collect
|
|
377
382
|
# with CloudWatch RUM][1].
|
|
378
383
|
#
|
|
379
|
-
#
|
|
380
|
-
#
|
|
381
|
-
#
|
|
382
|
-
#
|
|
383
|
-
#
|
|
384
|
-
#
|
|
385
|
-
#
|
|
384
|
+
# In addition to these default metrics, you can choose to send extended
|
|
385
|
+
# metrics or custom metrics or both.
|
|
386
|
+
#
|
|
387
|
+
# * Extended metrics enable you to send metrics with additional
|
|
388
|
+
# dimensions not included in the default metrics. You can also send
|
|
389
|
+
# extended metrics to Evidently as well as CloudWatch. The valid
|
|
390
|
+
# dimension names for the additional dimensions for extended metrics
|
|
391
|
+
# are `BrowserName`, `CountryCode`, `DeviceType`, `FileType`,
|
|
392
|
+
# `OSName`, and `PageId`. For more information, see [ Extended metrics
|
|
393
|
+
# that you can send to CloudWatch and CloudWatch Evidently][2].
|
|
394
|
+
#
|
|
395
|
+
# * Custom metrics are metrics that you define. You can send custom
|
|
396
|
+
# metrics to CloudWatch or to CloudWatch Evidently or to both. With
|
|
397
|
+
# custom metrics, you can use any metric name and namespace, and to
|
|
398
|
+
# derive the metrics you can use any custom events, built-in events,
|
|
399
|
+
# custom attributes, or default attributes.
|
|
400
|
+
#
|
|
401
|
+
# You can't send custom metrics to the `AWS/RUM` namespace. You must
|
|
402
|
+
# send custom metrics to a custom namespace that you define. The
|
|
403
|
+
# namespace that you use can't start with `AWS/`. CloudWatch RUM
|
|
404
|
+
# prepends `RUM/CustomMetrics/` to the custom namespace that you
|
|
405
|
+
# define, so the final namespace for your metrics in CloudWatch is
|
|
406
|
+
# `RUM/CustomMetrics/your-custom-namespace `.
|
|
386
407
|
#
|
|
387
408
|
# The maximum number of metric definitions that you can specify in one
|
|
388
409
|
# `BatchCreateRumMetricDefinitions` operation is 200.
|
|
@@ -390,10 +411,10 @@ module Aws::CloudWatchRUM
|
|
|
390
411
|
# The maximum number of metric definitions that one destination can
|
|
391
412
|
# contain is 2000.
|
|
392
413
|
#
|
|
393
|
-
# Extended metrics sent
|
|
394
|
-
#
|
|
395
|
-
# a custom metric. For more
|
|
396
|
-
# Pricing][3].
|
|
414
|
+
# Extended metrics sent to CloudWatch and RUM custom metrics are charged
|
|
415
|
+
# as CloudWatch custom metrics. Each combination of additional dimension
|
|
416
|
+
# name and dimension value counts as a custom metric. For more
|
|
417
|
+
# information, see [Amazon CloudWatch Pricing][3].
|
|
397
418
|
#
|
|
398
419
|
# You must have already created a destination for the metrics before you
|
|
399
420
|
# send them. For more information, see [PutRumMetricsDestination][4].
|
|
@@ -455,6 +476,7 @@ module Aws::CloudWatchRUM
|
|
|
455
476
|
# },
|
|
456
477
|
# event_pattern: "EventPattern",
|
|
457
478
|
# name: "MetricName", # required
|
|
479
|
+
# namespace: "Namespace",
|
|
458
480
|
# unit_label: "UnitLabel",
|
|
459
481
|
# value_key: "ValueKey",
|
|
460
482
|
# },
|
|
@@ -470,6 +492,7 @@ module Aws::CloudWatchRUM
|
|
|
470
492
|
# resp.errors[0].metric_definition.dimension_keys["DimensionKey"] #=> String
|
|
471
493
|
# resp.errors[0].metric_definition.event_pattern #=> String
|
|
472
494
|
# resp.errors[0].metric_definition.name #=> String
|
|
495
|
+
# resp.errors[0].metric_definition.namespace #=> String
|
|
473
496
|
# resp.errors[0].metric_definition.unit_label #=> String
|
|
474
497
|
# resp.errors[0].metric_definition.value_key #=> String
|
|
475
498
|
# resp.metric_definitions #=> Array
|
|
@@ -478,6 +501,7 @@ module Aws::CloudWatchRUM
|
|
|
478
501
|
# resp.metric_definitions[0].event_pattern #=> String
|
|
479
502
|
# resp.metric_definitions[0].metric_definition_id #=> String
|
|
480
503
|
# resp.metric_definitions[0].name #=> String
|
|
504
|
+
# resp.metric_definitions[0].namespace #=> String
|
|
481
505
|
# resp.metric_definitions[0].unit_label #=> String
|
|
482
506
|
# resp.metric_definitions[0].value_key #=> String
|
|
483
507
|
#
|
|
@@ -609,6 +633,7 @@ module Aws::CloudWatchRUM
|
|
|
609
633
|
# resp.metric_definitions[0].event_pattern #=> String
|
|
610
634
|
# resp.metric_definitions[0].metric_definition_id #=> String
|
|
611
635
|
# resp.metric_definitions[0].name #=> String
|
|
636
|
+
# resp.metric_definitions[0].namespace #=> String
|
|
612
637
|
# resp.metric_definitions[0].unit_label #=> String
|
|
613
638
|
# resp.metric_definitions[0].value_key #=> String
|
|
614
639
|
# resp.next_token #=> String
|
|
@@ -1083,20 +1108,20 @@ module Aws::CloudWatchRUM
|
|
|
1083
1108
|
# name: "String",
|
|
1084
1109
|
# version: "String",
|
|
1085
1110
|
# },
|
|
1086
|
-
# batch_id: "
|
|
1087
|
-
# id: "
|
|
1111
|
+
# batch_id: "PutRumEventsRequestBatchIdString", # required
|
|
1112
|
+
# id: "PutRumEventsRequestIdString", # required
|
|
1088
1113
|
# rum_events: [ # required
|
|
1089
1114
|
# {
|
|
1090
1115
|
# details: "JsonValue", # required
|
|
1091
|
-
# id: "
|
|
1116
|
+
# id: "RumEventIdString", # required
|
|
1092
1117
|
# metadata: "JsonValue",
|
|
1093
1118
|
# timestamp: Time.now, # required
|
|
1094
1119
|
# type: "String", # required
|
|
1095
1120
|
# },
|
|
1096
1121
|
# ],
|
|
1097
1122
|
# user_details: { # required
|
|
1098
|
-
# session_id: "
|
|
1099
|
-
# user_id: "
|
|
1123
|
+
# session_id: "UserDetailsSessionIdString",
|
|
1124
|
+
# user_id: "UserDetailsUserIdString",
|
|
1100
1125
|
# },
|
|
1101
1126
|
# })
|
|
1102
1127
|
#
|
|
@@ -1113,11 +1138,12 @@ module Aws::CloudWatchRUM
|
|
|
1113
1138
|
# CloudWatch RUM. You can send extended metrics to CloudWatch or to a
|
|
1114
1139
|
# CloudWatch Evidently experiment.
|
|
1115
1140
|
#
|
|
1116
|
-
# For more information about extended metrics, see
|
|
1141
|
+
# For more information about extended metrics, see
|
|
1142
|
+
# [BatchCreateRumMetricDefinitions][1].
|
|
1117
1143
|
#
|
|
1118
1144
|
#
|
|
1119
1145
|
#
|
|
1120
|
-
# [1]: https://docs.aws.amazon.com/cloudwatchrum/latest/APIReference/
|
|
1146
|
+
# [1]: https://docs.aws.amazon.com/cloudwatchrum/latest/APIReference/API_BatchCreateRumMetricDefinitions.html
|
|
1121
1147
|
#
|
|
1122
1148
|
# @option params [required, String] :app_monitor_name
|
|
1123
1149
|
# The name of the CloudWatch RUM app monitor that will send the metrics.
|
|
@@ -1384,6 +1410,7 @@ module Aws::CloudWatchRUM
|
|
|
1384
1410
|
# },
|
|
1385
1411
|
# event_pattern: "EventPattern",
|
|
1386
1412
|
# name: "MetricName", # required
|
|
1413
|
+
# namespace: "Namespace",
|
|
1387
1414
|
# unit_label: "UnitLabel",
|
|
1388
1415
|
# value_key: "ValueKey",
|
|
1389
1416
|
# },
|
|
@@ -1412,7 +1439,7 @@ module Aws::CloudWatchRUM
|
|
|
1412
1439
|
params: params,
|
|
1413
1440
|
config: config)
|
|
1414
1441
|
context[:gem_name] = 'aws-sdk-cloudwatchrum'
|
|
1415
|
-
context[:gem_version] = '1.
|
|
1442
|
+
context[:gem_version] = '1.10.0'
|
|
1416
1443
|
Seahorse::Client::Request.new(handlers, context)
|
|
1417
1444
|
end
|
|
1418
1445
|
|
|
@@ -81,8 +81,11 @@ module Aws::CloudWatchRUM
|
|
|
81
81
|
MetricDestinationSummary = Shapes::StructureShape.new(name: 'MetricDestinationSummary')
|
|
82
82
|
MetricDestinationSummaryList = Shapes::ListShape.new(name: 'MetricDestinationSummaryList')
|
|
83
83
|
MetricName = Shapes::StringShape.new(name: 'MetricName')
|
|
84
|
+
Namespace = Shapes::StringShape.new(name: 'Namespace')
|
|
84
85
|
Pages = Shapes::ListShape.new(name: 'Pages')
|
|
85
86
|
PutRumEventsRequest = Shapes::StructureShape.new(name: 'PutRumEventsRequest')
|
|
87
|
+
PutRumEventsRequestBatchIdString = Shapes::StringShape.new(name: 'PutRumEventsRequestBatchIdString')
|
|
88
|
+
PutRumEventsRequestIdString = Shapes::StringShape.new(name: 'PutRumEventsRequestIdString')
|
|
86
89
|
PutRumEventsResponse = Shapes::StructureShape.new(name: 'PutRumEventsResponse')
|
|
87
90
|
PutRumMetricsDestinationRequest = Shapes::StructureShape.new(name: 'PutRumMetricsDestinationRequest')
|
|
88
91
|
PutRumMetricsDestinationResponse = Shapes::StructureShape.new(name: 'PutRumMetricsDestinationResponse')
|
|
@@ -94,6 +97,7 @@ module Aws::CloudWatchRUM
|
|
|
94
97
|
QueryTimestamp = Shapes::IntegerShape.new(name: 'QueryTimestamp')
|
|
95
98
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
|
96
99
|
RumEvent = Shapes::StructureShape.new(name: 'RumEvent')
|
|
100
|
+
RumEventIdString = Shapes::StringShape.new(name: 'RumEventIdString')
|
|
97
101
|
RumEventList = Shapes::ListShape.new(name: 'RumEventList')
|
|
98
102
|
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
|
99
103
|
SessionSampleRate = Shapes::FloatShape.new(name: 'SessionSampleRate')
|
|
@@ -120,6 +124,8 @@ module Aws::CloudWatchRUM
|
|
|
120
124
|
UpdateRumMetricDefinitionResponse = Shapes::StructureShape.new(name: 'UpdateRumMetricDefinitionResponse')
|
|
121
125
|
Url = Shapes::StringShape.new(name: 'Url')
|
|
122
126
|
UserDetails = Shapes::StructureShape.new(name: 'UserDetails')
|
|
127
|
+
UserDetailsSessionIdString = Shapes::StringShape.new(name: 'UserDetailsSessionIdString')
|
|
128
|
+
UserDetailsUserIdString = Shapes::StringShape.new(name: 'UserDetailsUserIdString')
|
|
123
129
|
ValidationException = Shapes::StructureShape.new(name: 'ValidationException')
|
|
124
130
|
ValueKey = Shapes::StringShape.new(name: 'ValueKey')
|
|
125
131
|
|
|
@@ -302,6 +308,7 @@ module Aws::CloudWatchRUM
|
|
|
302
308
|
MetricDefinition.add_member(:event_pattern, Shapes::ShapeRef.new(shape: EventPattern, location_name: "EventPattern"))
|
|
303
309
|
MetricDefinition.add_member(:metric_definition_id, Shapes::ShapeRef.new(shape: MetricDefinitionId, required: true, location_name: "MetricDefinitionId"))
|
|
304
310
|
MetricDefinition.add_member(:name, Shapes::ShapeRef.new(shape: MetricName, required: true, location_name: "Name"))
|
|
311
|
+
MetricDefinition.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace, location_name: "Namespace"))
|
|
305
312
|
MetricDefinition.add_member(:unit_label, Shapes::ShapeRef.new(shape: UnitLabel, location_name: "UnitLabel"))
|
|
306
313
|
MetricDefinition.add_member(:value_key, Shapes::ShapeRef.new(shape: ValueKey, location_name: "ValueKey"))
|
|
307
314
|
MetricDefinition.struct_class = Types::MetricDefinition
|
|
@@ -311,6 +318,7 @@ module Aws::CloudWatchRUM
|
|
|
311
318
|
MetricDefinitionRequest.add_member(:dimension_keys, Shapes::ShapeRef.new(shape: DimensionKeysMap, location_name: "DimensionKeys"))
|
|
312
319
|
MetricDefinitionRequest.add_member(:event_pattern, Shapes::ShapeRef.new(shape: EventPattern, location_name: "EventPattern"))
|
|
313
320
|
MetricDefinitionRequest.add_member(:name, Shapes::ShapeRef.new(shape: MetricName, required: true, location_name: "Name"))
|
|
321
|
+
MetricDefinitionRequest.add_member(:namespace, Shapes::ShapeRef.new(shape: Namespace, location_name: "Namespace"))
|
|
314
322
|
MetricDefinitionRequest.add_member(:unit_label, Shapes::ShapeRef.new(shape: UnitLabel, location_name: "UnitLabel"))
|
|
315
323
|
MetricDefinitionRequest.add_member(:value_key, Shapes::ShapeRef.new(shape: ValueKey, location_name: "ValueKey"))
|
|
316
324
|
MetricDefinitionRequest.struct_class = Types::MetricDefinitionRequest
|
|
@@ -329,8 +337,8 @@ module Aws::CloudWatchRUM
|
|
|
329
337
|
Pages.member = Shapes::ShapeRef.new(shape: Url)
|
|
330
338
|
|
|
331
339
|
PutRumEventsRequest.add_member(:app_monitor_details, Shapes::ShapeRef.new(shape: AppMonitorDetails, required: true, location_name: "AppMonitorDetails"))
|
|
332
|
-
PutRumEventsRequest.add_member(:batch_id, Shapes::ShapeRef.new(shape:
|
|
333
|
-
PutRumEventsRequest.add_member(:id, Shapes::ShapeRef.new(shape:
|
|
340
|
+
PutRumEventsRequest.add_member(:batch_id, Shapes::ShapeRef.new(shape: PutRumEventsRequestBatchIdString, required: true, location_name: "BatchId"))
|
|
341
|
+
PutRumEventsRequest.add_member(:id, Shapes::ShapeRef.new(shape: PutRumEventsRequestIdString, required: true, location: "uri", location_name: "Id"))
|
|
334
342
|
PutRumEventsRequest.add_member(:rum_events, Shapes::ShapeRef.new(shape: RumEventList, required: true, location_name: "RumEvents"))
|
|
335
343
|
PutRumEventsRequest.add_member(:user_details, Shapes::ShapeRef.new(shape: UserDetails, required: true, location_name: "UserDetails"))
|
|
336
344
|
PutRumEventsRequest.struct_class = Types::PutRumEventsRequest
|
|
@@ -359,7 +367,7 @@ module Aws::CloudWatchRUM
|
|
|
359
367
|
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
|
360
368
|
|
|
361
369
|
RumEvent.add_member(:details, Shapes::ShapeRef.new(shape: JsonValue, required: true, location_name: "details", metadata: {"jsonvalue"=>true}))
|
|
362
|
-
RumEvent.add_member(:id, Shapes::ShapeRef.new(shape:
|
|
370
|
+
RumEvent.add_member(:id, Shapes::ShapeRef.new(shape: RumEventIdString, required: true, location_name: "id"))
|
|
363
371
|
RumEvent.add_member(:metadata, Shapes::ShapeRef.new(shape: JsonValue, location_name: "metadata", metadata: {"jsonvalue"=>true}))
|
|
364
372
|
RumEvent.add_member(:timestamp, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "timestamp"))
|
|
365
373
|
RumEvent.add_member(:type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "type"))
|
|
@@ -417,8 +425,8 @@ module Aws::CloudWatchRUM
|
|
|
417
425
|
|
|
418
426
|
UpdateRumMetricDefinitionResponse.struct_class = Types::UpdateRumMetricDefinitionResponse
|
|
419
427
|
|
|
420
|
-
UserDetails.add_member(:session_id, Shapes::ShapeRef.new(shape:
|
|
421
|
-
UserDetails.add_member(:user_id, Shapes::ShapeRef.new(shape:
|
|
428
|
+
UserDetails.add_member(:session_id, Shapes::ShapeRef.new(shape: UserDetailsSessionIdString, location_name: "sessionId"))
|
|
429
|
+
UserDetails.add_member(:user_id, Shapes::ShapeRef.new(shape: UserDetailsUserIdString, location_name: "userId"))
|
|
422
430
|
UserDetails.struct_class = Types::UserDetails
|
|
423
431
|
|
|
424
432
|
ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
|
@@ -14,36 +14,39 @@ module Aws::CloudWatchRUM
|
|
|
14
14
|
use_dual_stack = parameters.use_dual_stack
|
|
15
15
|
use_fips = parameters.use_fips
|
|
16
16
|
endpoint = parameters.endpoint
|
|
17
|
-
if
|
|
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://rum-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
|
|
17
|
+
if Aws::Endpoints::Matchers.set?(endpoint)
|
|
33
18
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
34
|
-
|
|
35
|
-
return Aws::Endpoints::Endpoint.new(url: "https://rum-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
36
|
-
end
|
|
37
|
-
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
|
19
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
|
38
20
|
end
|
|
39
21
|
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
40
|
-
|
|
41
|
-
|
|
22
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
|
23
|
+
end
|
|
24
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
|
25
|
+
end
|
|
26
|
+
if Aws::Endpoints::Matchers.set?(region)
|
|
27
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
29
|
+
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"))
|
|
30
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rum-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
31
|
+
end
|
|
32
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
|
33
|
+
end
|
|
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"))
|
|
36
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rum-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
37
|
+
end
|
|
38
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
|
39
|
+
end
|
|
40
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
41
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
|
42
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rum.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
43
|
+
end
|
|
44
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
|
42
45
|
end
|
|
43
|
-
|
|
46
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rum.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
44
47
|
end
|
|
45
|
-
return Aws::Endpoints::Endpoint.new(url: "https://rum.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
46
48
|
end
|
|
49
|
+
raise ArgumentError, "Invalid Configuration: Missing Region"
|
|
47
50
|
raise ArgumentError, 'No endpoint could be resolved'
|
|
48
51
|
|
|
49
52
|
end
|
|
@@ -965,6 +965,12 @@ module Aws::CloudWatchRUM
|
|
|
965
965
|
# The name of the metric that is defined in this structure.
|
|
966
966
|
# @return [String]
|
|
967
967
|
#
|
|
968
|
+
# @!attribute [rw] namespace
|
|
969
|
+
# If this metric definition is for a custom metric instead of an
|
|
970
|
+
# extended metric, this field displays the metric namespace that the
|
|
971
|
+
# custom metric is published to.
|
|
972
|
+
# @return [String]
|
|
973
|
+
#
|
|
968
974
|
# @!attribute [rw] unit_label
|
|
969
975
|
# Use this field only if you are sending this metric to CloudWatch. It
|
|
970
976
|
# defines the CloudWatch metric unit that this metric is measured in.
|
|
@@ -982,79 +988,151 @@ module Aws::CloudWatchRUM
|
|
|
982
988
|
:event_pattern,
|
|
983
989
|
:metric_definition_id,
|
|
984
990
|
:name,
|
|
991
|
+
:namespace,
|
|
985
992
|
:unit_label,
|
|
986
993
|
:value_key)
|
|
987
994
|
SENSITIVE = []
|
|
988
995
|
include Aws::Structure
|
|
989
996
|
end
|
|
990
997
|
|
|
991
|
-
# Use this structure to define one extended metric
|
|
992
|
-
# CloudWatch or CloudWatch Evidently. For more
|
|
993
|
-
# Additional metrics that you can send to CloudWatch
|
|
994
|
-
# Evidently][1].
|
|
998
|
+
# Use this structure to define one extended metric or custom metric that
|
|
999
|
+
# 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].
|
|
1002
|
+
#
|
|
1003
|
+
# This structure is validated differently for extended metrics and
|
|
1004
|
+
# custom metrics. For extended metrics that are sent to the `AWS/RUM`
|
|
1005
|
+
# namespace, the following validations apply:
|
|
1006
|
+
#
|
|
1007
|
+
# * The `Namespace` parameter must be omitted or set to `AWS/RUM`.
|
|
1008
|
+
#
|
|
1009
|
+
# * Only certain combinations of values for `Name`, `ValueKey`, and
|
|
1010
|
+
# `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.
|
|
1013
|
+
#
|
|
1014
|
+
# * If `Name` is `PerformanceNavigationDuration`, then `ValueKey`must
|
|
1015
|
+
# be `event_details.duration` and the `EventPattern` must include
|
|
1016
|
+
# `\{"event_type":["com.amazon.rum.performance_navigation_event"]\}`
|
|
1017
|
+
#
|
|
1018
|
+
# * If `Name` is `PerformanceResourceDuration`, then `ValueKey`must be
|
|
1019
|
+
# `event_details.duration` and the `EventPattern` must include
|
|
1020
|
+
# `\{"event_type":["com.amazon.rum.performance_resource_event"]\}`
|
|
1021
|
+
#
|
|
1022
|
+
# * If `Name` is `NavigationSatisfiedTransaction`, then `ValueKey`must
|
|
1023
|
+
# be null and the `EventPattern` must include `\{ "event_type":
|
|
1024
|
+
# ["com.amazon.rum.performance_navigation_event"], "event_details":
|
|
1025
|
+
# \{ "duration": [\{ "numeric": [">",2000] \}] \} \}`
|
|
1026
|
+
#
|
|
1027
|
+
# * If `Name` is `NavigationToleratedTransaction`, then `ValueKey`must
|
|
1028
|
+
# be null and the `EventPattern` must include `\{ "event_type":
|
|
1029
|
+
# ["com.amazon.rum.performance_navigation_event"], "event_details":
|
|
1030
|
+
# \{ "duration": [\{ "numeric": [">=",2000,"<"8000] \}] \} \}`
|
|
1031
|
+
#
|
|
1032
|
+
# * If `Name` is `NavigationFrustratedTransaction`, then
|
|
1033
|
+
# `ValueKey`must be null and the `EventPattern` must include `\{
|
|
1034
|
+
# "event_type": ["com.amazon.rum.performance_navigation_event"],
|
|
1035
|
+
# "event_details": \{ "duration": [\{ "numeric": [">=",8000] \}] \}
|
|
1036
|
+
# \}`
|
|
1037
|
+
#
|
|
1038
|
+
# * If `Name` is `WebVitalsCumulativeLayoutShift`, then `ValueKey`must
|
|
1039
|
+
# be `event_details.value` and the `EventPattern` must include
|
|
1040
|
+
# `\{"event_type":["com.amazon.rum.cumulative_layout_shift_event"]\}`
|
|
1041
|
+
#
|
|
1042
|
+
# * If `Name` is `WebVitalsFirstInputDelay`, then `ValueKey`must be
|
|
1043
|
+
# `event_details.value` and the `EventPattern` must include
|
|
1044
|
+
# `\{"event_type":["com.amazon.rum.first_input_delay_event"]\}`
|
|
1045
|
+
#
|
|
1046
|
+
# * If `Name` is `WebVitalsLargestContentfulPaint`, then
|
|
1047
|
+
# `ValueKey`must be `event_details.value` and the `EventPattern`
|
|
1048
|
+
# must include
|
|
1049
|
+
# `\{"event_type":["com.amazon.rum.largest_contentful_paint_event"]\}`
|
|
1050
|
+
#
|
|
1051
|
+
# * If `Name` is `JsErrorCount`, then `ValueKey`must be null and the
|
|
1052
|
+
# `EventPattern` must include
|
|
1053
|
+
# `\{"event_type":["com.amazon.rum.js_error_event"]\}`
|
|
1054
|
+
#
|
|
1055
|
+
# * If `Name` is `HttpErrorCount`, then `ValueKey`must be null and the
|
|
1056
|
+
# `EventPattern` must include
|
|
1057
|
+
# `\{"event_type":["com.amazon.rum.http_event"]\}`
|
|
1058
|
+
#
|
|
1059
|
+
# * If `Name` is `SessionCount`, then `ValueKey`must be null and the
|
|
1060
|
+
# `EventPattern` must include
|
|
1061
|
+
# `\{"event_type":["com.amazon.rum.session_start_event"]\}`
|
|
995
1062
|
#
|
|
996
|
-
#
|
|
997
|
-
# `EventPattern` are valid. In addition to what is displayed in the list
|
|
998
|
-
# below, the `EventPattern` can also include information used by the
|
|
999
|
-
# `DimensionKeys` field.
|
|
1063
|
+
# For custom metrics, the following validation rules apply:
|
|
1000
1064
|
#
|
|
1001
|
-
# *
|
|
1002
|
-
# `
|
|
1003
|
-
# `\{"event_type":["com.amazon.rum.performance_navigation_event"]\}`
|
|
1065
|
+
# * The namespace can't be omitted and can't be `AWS/RUM`. You can use
|
|
1066
|
+
# the `AWS/RUM` namespace only for extended metrics.
|
|
1004
1067
|
#
|
|
1005
|
-
# *
|
|
1006
|
-
#
|
|
1007
|
-
# `\{"event_type":["com.amazon.rum.performance_resource_event"]\}`
|
|
1068
|
+
# * All dimensions listed in the `DimensionKeys` field must be present
|
|
1069
|
+
# in the value of `EventPattern`.
|
|
1008
1070
|
#
|
|
1009
|
-
# *
|
|
1010
|
-
# be
|
|
1011
|
-
#
|
|
1012
|
-
#
|
|
1071
|
+
# * The values that you specify for `ValueKey`, `EventPattern`, and
|
|
1072
|
+
# `DimensionKeys` must be fields in RUM events, so all first-level
|
|
1073
|
+
# keys in these fields must be one of the keys in the list later in
|
|
1074
|
+
# this section.
|
|
1013
1075
|
#
|
|
1014
|
-
# * If
|
|
1015
|
-
# be null and the `EventPattern` must include `\{ "event_type":
|
|
1016
|
-
# ["com.amazon.rum.performance_navigation_event"], "event_details": \{
|
|
1017
|
-
# "duration": [\{ "numeric": [">=",2000,"<"8000] \}] \} \}`
|
|
1076
|
+
# * If you set a value for `EventPattern`, it must be a JSON object.
|
|
1018
1077
|
#
|
|
1019
|
-
# *
|
|
1020
|
-
#
|
|
1021
|
-
# ["com.amazon.rum.performance_navigation_event"], "event_details": \{
|
|
1022
|
-
# "duration": [\{ "numeric": [">=",8000] \}] \} \}`
|
|
1078
|
+
# * For every non-empty `event_details`, there must be a non-empty
|
|
1079
|
+
# `event_type`.
|
|
1023
1080
|
#
|
|
1024
|
-
# * If `
|
|
1025
|
-
#
|
|
1026
|
-
#
|
|
1081
|
+
# * If `EventPattern` contains an `event_details` field, it must also
|
|
1082
|
+
# contain an `event_type`. For every built-in `event_type` that you
|
|
1083
|
+
# use, you must use a value for `event_details` that corresponds to
|
|
1084
|
+
# that `event_type`. For information about event details that
|
|
1085
|
+
# correspond to event types, see [ RUM event details][2].
|
|
1027
1086
|
#
|
|
1028
|
-
# *
|
|
1029
|
-
# `event_details.value` and the `EventPattern` must include
|
|
1030
|
-
# `\{"event_type":["com.amazon.rum.first_input_delay_event"]\}`
|
|
1087
|
+
# * In `EventPattern`, any JSON array must contain only one value.
|
|
1031
1088
|
#
|
|
1032
|
-
#
|
|
1033
|
-
#
|
|
1034
|
-
# `\{"event_type":["com.amazon.rum.largest_contentful_paint_event"]\}`
|
|
1089
|
+
# Valid key values for first-level keys in the `ValueKey`,
|
|
1090
|
+
# `EventPattern`, and `DimensionKeys` fields:
|
|
1035
1091
|
#
|
|
1036
|
-
# *
|
|
1037
|
-
# `EventPattern` must include
|
|
1038
|
-
# `\{"event_type":["com.amazon.rum.js_error_event"]\}`
|
|
1092
|
+
# * `account_id`
|
|
1039
1093
|
#
|
|
1040
|
-
# *
|
|
1041
|
-
# `EventPattern` must include
|
|
1042
|
-
# `\{"event_type":["com.amazon.rum.http_event"]\}`
|
|
1094
|
+
# * `application_Id`
|
|
1043
1095
|
#
|
|
1044
|
-
# *
|
|
1045
|
-
#
|
|
1046
|
-
#
|
|
1096
|
+
# * `application_version`
|
|
1097
|
+
#
|
|
1098
|
+
# * `application_name`
|
|
1099
|
+
#
|
|
1100
|
+
# * `batch_id`
|
|
1101
|
+
#
|
|
1102
|
+
# * `event_details`
|
|
1103
|
+
#
|
|
1104
|
+
# * `event_id`
|
|
1105
|
+
#
|
|
1106
|
+
# * `event_interaction`
|
|
1107
|
+
#
|
|
1108
|
+
# * `event_timestamp`
|
|
1109
|
+
#
|
|
1110
|
+
# * `event_type`
|
|
1111
|
+
#
|
|
1112
|
+
# * `event_version`
|
|
1113
|
+
#
|
|
1114
|
+
# * `log_stream`
|
|
1115
|
+
#
|
|
1116
|
+
# * `metadata`
|
|
1117
|
+
#
|
|
1118
|
+
# * `sessionId`
|
|
1119
|
+
#
|
|
1120
|
+
# * `user_details`
|
|
1121
|
+
#
|
|
1122
|
+
# * `userId`
|
|
1047
1123
|
#
|
|
1048
1124
|
#
|
|
1049
1125
|
#
|
|
1050
1126
|
# [1]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-RUM-vended-metrics.html
|
|
1127
|
+
# [2]: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch-RUM-datacollected.html#CloudWatch-RUM-datacollected-eventDetails
|
|
1051
1128
|
#
|
|
1052
1129
|
# @!attribute [rw] dimension_keys
|
|
1053
1130
|
# Use this field only if you are sending the metric to CloudWatch.
|
|
1054
1131
|
#
|
|
1055
1132
|
# This field is a map of field paths to dimension names. It defines
|
|
1056
|
-
# the dimensions to associate with this metric in CloudWatch.
|
|
1057
|
-
# values for the entries in this field are the
|
|
1133
|
+
# the dimensions to associate with this metric in CloudWatch. For
|
|
1134
|
+
# extended metrics, valid values for the entries in this field are the
|
|
1135
|
+
# following:
|
|
1058
1136
|
#
|
|
1059
1137
|
# * `"metadata.pageId": "PageId"`
|
|
1060
1138
|
#
|
|
@@ -1068,8 +1146,8 @@ module Aws::CloudWatchRUM
|
|
|
1068
1146
|
#
|
|
1069
1147
|
# * `"event_details.fileType": "FileType"`
|
|
1070
1148
|
#
|
|
1071
|
-
#
|
|
1072
|
-
# `EventPattern`.
|
|
1149
|
+
# For both extended metrics and custom metrics, all dimensions listed
|
|
1150
|
+
# in this field must also be included in `EventPattern`.
|
|
1073
1151
|
# @return [Hash<String,String>]
|
|
1074
1152
|
#
|
|
1075
1153
|
# @!attribute [rw] event_pattern
|
|
@@ -1103,8 +1181,9 @@ module Aws::CloudWatchRUM
|
|
|
1103
1181
|
# @return [String]
|
|
1104
1182
|
#
|
|
1105
1183
|
# @!attribute [rw] name
|
|
1106
|
-
# The name for the metric that is defined in this structure.
|
|
1107
|
-
#
|
|
1184
|
+
# The name for the metric that is defined in this structure. For
|
|
1185
|
+
# custom metrics, you can specify any name that you like. For extended
|
|
1186
|
+
# metrics, valid values are the following:
|
|
1108
1187
|
#
|
|
1109
1188
|
# * `PerformanceNavigationDuration`
|
|
1110
1189
|
#
|
|
@@ -1129,6 +1208,16 @@ module Aws::CloudWatchRUM
|
|
|
1129
1208
|
# * `SessionCount`
|
|
1130
1209
|
# @return [String]
|
|
1131
1210
|
#
|
|
1211
|
+
# @!attribute [rw] namespace
|
|
1212
|
+
# If this structure is for a custom metric instead of an extended
|
|
1213
|
+
# metrics, use this parameter to define the metric namespace for that
|
|
1214
|
+
# custom metric. Do not specify this parameter if this structure is
|
|
1215
|
+
# for an extended metric.
|
|
1216
|
+
#
|
|
1217
|
+
# You cannot use any string that starts with `AWS/` for your
|
|
1218
|
+
# namespace.
|
|
1219
|
+
# @return [String]
|
|
1220
|
+
#
|
|
1132
1221
|
# @!attribute [rw] unit_label
|
|
1133
1222
|
# The CloudWatch metric unit to use for this metric. If you omit this
|
|
1134
1223
|
# field, the metric is recorded with no unit.
|
|
@@ -1153,6 +1242,7 @@ module Aws::CloudWatchRUM
|
|
|
1153
1242
|
:dimension_keys,
|
|
1154
1243
|
:event_pattern,
|
|
1155
1244
|
:name,
|
|
1245
|
+
:namespace,
|
|
1156
1246
|
:unit_label,
|
|
1157
1247
|
:value_key)
|
|
1158
1248
|
SENSITIVE = []
|
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.
|
|
4
|
+
version: 1.10.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: 2023-
|
|
11
|
+
date: 2023-05-31 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.
|
|
22
|
+
version: 3.174.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.
|
|
32
|
+
version: 3.174.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|