aws-sdk-xray 1.39.0 → 1.43.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: 2bdfbb14a9fa010e3b48260f4457733d2ba8e68ccadc6e11eb83092073cd287c
4
- data.tar.gz: 9747c13e97bce39b5ad86508656b900920e8c48ff474c9361925e8eda43ea718
3
+ metadata.gz: 3fbb49ba8ea8aaadbcf14e09dc67b6235e66e06ac047532d5b35ad1cc0ab93d7
4
+ data.tar.gz: e001bf20ebbab27985922de5f55304f2513686c6da54d956248f83d776db39e5
5
5
  SHA512:
6
- metadata.gz: 0d32887fbfcd42759748b1a50f99a8b2927e93335ef1f9a87c35a7d4ff557b092adf63175248979ba840c3d5ca715c567f4988e949fd4160fff14f54e531a8a6
7
- data.tar.gz: 0a417f0dba7bca9aaaee33bdf5088c7db2c1e2a9fda43a8a5f638f5649956d3ed636702bf09e49d14eba2daf3c103d0a612f6b5f31864e93db4be397c816e940
6
+ metadata.gz: 28a9e67c7825855dee78146067de31c72243ad2363ec8154248b2147ff481eee32d641da5da4741b6f477bfeb304b48d5a430c16834b966eca8ec2a71e460cfb
7
+ data.tar.gz: 49f87f0aff23c61d6fd3a2b5004a100a67acaf558b7b9cdcf36f3ea0c10f1425ab1dc3b655ad7ea6367f46e164b90188eb4b3d252d191a7de10cadbd75770fbe
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.43.0 (2021-11-04)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.42.0 (2021-10-18)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.41.0 (2021-09-07)
15
+ ------------------
16
+
17
+ * Feature - Updated references to AWS KMS keys and customer managed keys to reflect current terminology.
18
+
19
+ 1.40.0 (2021-09-01)
20
+ ------------------
21
+
22
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
23
+
4
24
  1.39.0 (2021-07-30)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.39.0
1
+ 1.43.0
@@ -275,6 +275,15 @@ module Aws::XRay
275
275
  # ** Please note ** When response stubbing is enabled, no HTTP
276
276
  # requests are made, and retries are disabled.
277
277
  #
278
+ # @option options [Boolean] :use_dualstack_endpoint
279
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
280
+ # will be used if available.
281
+ #
282
+ # @option options [Boolean] :use_fips_endpoint
283
+ # When set to `true`, fips compatible endpoints will be used if available.
284
+ # When a `fips` region is used, the region is normalized and this config
285
+ # is set to `true`.
286
+ #
278
287
  # @option options [Boolean] :validate_params (true)
279
288
  # When `true`, request parameters are validated before
280
289
  # sending the request.
@@ -396,7 +405,8 @@ module Aws::XRay
396
405
  # @option params [Array<Types::Tag>] :tags
397
406
  # A map that contains one or more tag keys and tag values to attach to
398
407
  # an X-Ray group. For more information about ways to use tags, see
399
- # [Tagging AWS resources][1] in the *AWS General Reference*.
408
+ # [Tagging Amazon Web Services resources][1] in the *Amazon Web Services
409
+ # General Reference*.
400
410
  #
401
411
  # The following restrictions apply to tags:
402
412
  #
@@ -411,7 +421,8 @@ module Aws::XRay
411
421
  #
412
422
  # * Tag keys and values are case sensitive.
413
423
  #
414
- # * Don't use `aws:` as a prefix for keys; it's reserved for AWS use.
424
+ # * Don't use `aws:` as a prefix for keys; it's reserved for Amazon
425
+ # Web Services use.
415
426
  #
416
427
  #
417
428
  #
@@ -456,21 +467,27 @@ module Aws::XRay
456
467
  end
457
468
 
458
469
  # Creates a rule to control sampling behavior for instrumented
459
- # applications. Services retrieve rules with GetSamplingRules, and
470
+ # applications. Services retrieve rules with [GetSamplingRules][1], and
460
471
  # evaluate each rule in ascending order of *priority* for each request.
461
472
  # If a rule matches, the service records a trace, borrowing it from the
462
473
  # reservoir size. After 10 seconds, the service reports back to X-Ray
463
- # with GetSamplingTargets to get updated versions of each in-use rule.
464
- # The updated rule contains a trace quota that the service can use
474
+ # with [GetSamplingTargets][2] to get updated versions of each in-use
475
+ # rule. The updated rule contains a trace quota that the service can use
465
476
  # instead of borrowing from the reservoir.
466
477
  #
478
+ #
479
+ #
480
+ # [1]: https://docs.aws.amazon.com/xray/latest/api/API_GetSamplingRules.html
481
+ # [2]: https://docs.aws.amazon.com/xray/latest/api/API_GetSamplingTargets.html
482
+ #
467
483
  # @option params [required, Types::SamplingRule] :sampling_rule
468
484
  # The rule definition.
469
485
  #
470
486
  # @option params [Array<Types::Tag>] :tags
471
487
  # A map that contains one or more tag keys and tag values to attach to
472
488
  # an X-Ray sampling rule. For more information about ways to use tags,
473
- # see [Tagging AWS resources][1] in the *AWS General Reference*.
489
+ # see [Tagging Amazon Web Services resources][1] in the *Amazon Web
490
+ # Services General Reference*.
474
491
  #
475
492
  # The following restrictions apply to tags:
476
493
  #
@@ -485,7 +502,8 @@ module Aws::XRay
485
502
  #
486
503
  # * Tag keys and values are case sensitive.
487
504
  #
488
- # * Don't use `aws:` as a prefix for keys; it's reserved for AWS use.
505
+ # * Don't use `aws:` as a prefix for keys; it's reserved for Amazon
506
+ # Web Services use.
489
507
  #
490
508
  #
491
509
  #
@@ -1130,9 +1148,9 @@ module Aws::XRay
1130
1148
  # Retrieves a document that describes services that process incoming
1131
1149
  # requests, and downstream services that they call as a result. Root
1132
1150
  # services process incoming requests and make calls to downstream
1133
- # services. Root services are applications that use the [AWS X-Ray
1134
- # SDK][1]. Downstream services can be other applications, AWS resources,
1135
- # HTTP web APIs, or SQL databases.
1151
+ # services. Root services are applications that use the [Amazon Web
1152
+ # Services X-Ray SDK][1]. Downstream services can be other applications,
1153
+ # Amazon Web Services resources, HTTP web APIs, or SQL databases.
1136
1154
  #
1137
1155
  #
1138
1156
  #
@@ -1422,8 +1440,8 @@ module Aws::XRay
1422
1440
  # `annotation.account = "12345"`
1423
1441
  #
1424
1442
  # For a full list of indexed fields and keywords that you can use in
1425
- # filter expressions, see [Using Filter Expressions][1] in the *AWS
1426
- # X-Ray Developer Guide*.
1443
+ # filter expressions, see [Using Filter Expressions][1] in the *Amazon
1444
+ # Web Services X-Ray Developer Guide*.
1427
1445
  #
1428
1446
  #
1429
1447
  #
@@ -1587,8 +1605,8 @@ module Aws::XRay
1587
1605
  req.send_request(options)
1588
1606
  end
1589
1607
 
1590
- # Returns a list of tags that are applied to the specified AWS X-Ray
1591
- # group or sampling rule.
1608
+ # Returns a list of tags that are applied to the specified Amazon Web
1609
+ # Services X-Ray group or sampling rule.
1592
1610
  #
1593
1611
  # @option params [required, String] :resource_arn
1594
1612
  # The Amazon Resource Number (ARN) of an X-Ray group or sampling rule.
@@ -1629,13 +1647,13 @@ module Aws::XRay
1629
1647
  # Updates the encryption configuration for X-Ray data.
1630
1648
  #
1631
1649
  # @option params [String] :key_id
1632
- # An AWS KMS customer master key (CMK) in one of the following formats:
1650
+ # An Amazon Web Services KMS key in one of the following formats:
1633
1651
  #
1634
1652
  # * **Alias** - The name of the key. For example, `alias/MyKey`.
1635
1653
  #
1636
1654
  # * **Key ID** - The KMS key ID of the key. For example,
1637
- # `ae4aa6d49-a4d8-9df9-a475-4ff6d7898456`. AWS X-Ray does not support
1638
- # asymmetric CMKs.
1655
+ # `ae4aa6d49-a4d8-9df9-a475-4ff6d7898456`. Amazon Web Services X-Ray
1656
+ # does not support asymmetric KMS keys.
1639
1657
  #
1640
1658
  # * **ARN** - The full Amazon Resource Name of the key ID or alias. For
1641
1659
  # example,
@@ -1674,7 +1692,7 @@ module Aws::XRay
1674
1692
  req.send_request(options)
1675
1693
  end
1676
1694
 
1677
- # Used by the AWS X-Ray daemon to upload telemetry.
1695
+ # Used by the Amazon Web Services X-Ray daemon to upload telemetry.
1678
1696
  #
1679
1697
  # @option params [required, Array<Types::TelemetryRecord>] :telemetry_records
1680
1698
  #
@@ -1720,14 +1738,14 @@ module Aws::XRay
1720
1738
  req.send_request(options)
1721
1739
  end
1722
1740
 
1723
- # Uploads segment documents to AWS X-Ray. The [X-Ray SDK][1] generates
1724
- # segment documents and sends them to the X-Ray daemon, which uploads
1725
- # them in batches. A segment document can be a completed segment, an
1726
- # in-progress segment, or an array of subsegments.
1741
+ # Uploads segment documents to Amazon Web Services X-Ray. The [X-Ray
1742
+ # SDK][1] generates segment documents and sends them to the X-Ray
1743
+ # daemon, which uploads them in batches. A segment document can be a
1744
+ # completed segment, an in-progress segment, or an array of subsegments.
1727
1745
  #
1728
1746
  # Segments must include the following fields. For the full segment
1729
- # document schema, see [AWS X-Ray Segment Documents][2] in the *AWS
1730
- # X-Ray Developer Guide*.
1747
+ # document schema, see [Amazon Web Services X-Ray Segment Documents][2]
1748
+ # in the *Amazon Web Services X-Ray Developer Guide*.
1731
1749
  #
1732
1750
  # **Required segment document fields**
1733
1751
  #
@@ -1803,7 +1821,8 @@ module Aws::XRay
1803
1821
  req.send_request(options)
1804
1822
  end
1805
1823
 
1806
- # Applies tags to an existing AWS X-Ray group or sampling rule.
1824
+ # Applies tags to an existing Amazon Web Services X-Ray group or
1825
+ # sampling rule.
1807
1826
  #
1808
1827
  # @option params [required, String] :resource_arn
1809
1828
  # The Amazon Resource Number (ARN) of an X-Ray group or sampling rule.
@@ -1811,8 +1830,8 @@ module Aws::XRay
1811
1830
  # @option params [required, Array<Types::Tag>] :tags
1812
1831
  # A map that contains one or more tag keys and tag values to attach to
1813
1832
  # an X-Ray group or sampling rule. For more information about ways to
1814
- # use tags, see [Tagging AWS resources][1] in the *AWS General
1815
- # Reference*.
1833
+ # use tags, see [Tagging Amazon Web Services resources][1] in the
1834
+ # *Amazon Web Services General Reference*.
1816
1835
  #
1817
1836
  # The following restrictions apply to tags:
1818
1837
  #
@@ -1827,8 +1846,8 @@ module Aws::XRay
1827
1846
  #
1828
1847
  # * Tag keys and values are case sensitive.
1829
1848
  #
1830
- # * Don't use `aws:` as a prefix for keys; it's reserved for AWS use.
1831
- # You cannot edit or delete system tags.
1849
+ # * Don't use `aws:` as a prefix for keys; it's reserved for Amazon
1850
+ # Web Services use. You cannot edit or delete system tags.
1832
1851
  #
1833
1852
  #
1834
1853
  #
@@ -1857,8 +1876,8 @@ module Aws::XRay
1857
1876
  req.send_request(options)
1858
1877
  end
1859
1878
 
1860
- # Removes tags from an AWS X-Ray group or sampling rule. You cannot edit
1861
- # or delete system tags (those with an `aws:` prefix).
1879
+ # Removes tags from an Amazon Web Services X-Ray group or sampling rule.
1880
+ # You cannot edit or delete system tags (those with an `aws:` prefix).
1862
1881
  #
1863
1882
  # @option params [required, String] :resource_arn
1864
1883
  # The Amazon Resource Number (ARN) of an X-Ray group or sampling rule.
@@ -2011,7 +2030,7 @@ module Aws::XRay
2011
2030
  params: params,
2012
2031
  config: config)
2013
2032
  context[:gem_name] = 'aws-sdk-xray'
2014
- context[:gem_version] = '1.39.0'
2033
+ context[:gem_version] = '1.43.0'
2015
2034
  Seahorse::Client::Request.new(handlers, context)
2016
2035
  end
2017
2036
 
@@ -218,7 +218,8 @@ module Aws::XRay
218
218
  # @!attribute [rw] tags
219
219
  # A map that contains one or more tag keys and tag values to attach to
220
220
  # an X-Ray group. For more information about ways to use tags, see
221
- # [Tagging AWS resources][1] in the *AWS General Reference*.
221
+ # [Tagging Amazon Web Services resources][1] in the *Amazon Web
222
+ # Services General Reference*.
222
223
  #
223
224
  # The following restrictions apply to tags:
224
225
  #
@@ -233,8 +234,8 @@ module Aws::XRay
233
234
  #
234
235
  # * Tag keys and values are case sensitive.
235
236
  #
236
- # * Don't use `aws:` as a prefix for keys; it's reserved for AWS
237
- # use.
237
+ # * Don't use `aws:` as a prefix for keys; it's reserved for Amazon
238
+ # Web Services use.
238
239
  #
239
240
  #
240
241
  #
@@ -303,7 +304,8 @@ module Aws::XRay
303
304
  # @!attribute [rw] tags
304
305
  # A map that contains one or more tag keys and tag values to attach to
305
306
  # an X-Ray sampling rule. For more information about ways to use tags,
306
- # see [Tagging AWS resources][1] in the *AWS General Reference*.
307
+ # see [Tagging Amazon Web Services resources][1] in the *Amazon Web
308
+ # Services General Reference*.
307
309
  #
308
310
  # The following restrictions apply to tags:
309
311
  #
@@ -318,8 +320,8 @@ module Aws::XRay
318
320
  #
319
321
  # * Tag keys and values are case sensitive.
320
322
  #
321
- # * Don't use `aws:` as a prefix for keys; it's reserved for AWS
322
- # use.
323
+ # * Don't use `aws:` as a prefix for keys; it's reserved for Amazon
324
+ # Web Services use.
323
325
  #
324
326
  #
325
327
  #
@@ -496,8 +498,7 @@ module Aws::XRay
496
498
  # settings.
497
499
  #
498
500
  # @!attribute [rw] key_id
499
- # The ID of the customer master key (CMK) used for encryption, if
500
- # applicable.
501
+ # The ID of the KMS key used for encryption, if applicable.
501
502
  # @return [String]
502
503
  #
503
504
  # @!attribute [rw] status
@@ -506,8 +507,8 @@ module Aws::XRay
506
507
  # @return [String]
507
508
  #
508
509
  # @!attribute [rw] type
509
- # The type of encryption. Set to `KMS` for encryption with CMKs. Set
510
- # to `NONE` for default encryption.
510
+ # The type of encryption. Set to `KMS` for encryption with KMS keys.
511
+ # Set to `NONE` for default encryption.
511
512
  # @return [String]
512
513
  #
513
514
  # @see http://docs.aws.amazon.com/goto/WebAPI/xray-2016-04-12/EncryptionConfig AWS API Documentation
@@ -971,7 +972,8 @@ module Aws::XRay
971
972
  # @return [Time]
972
973
  #
973
974
  # @!attribute [rw] services
974
- # The AWS instrumented services related to the insight.
975
+ # The Amazon Web Services instrumented services related to the
976
+ # insight.
975
977
  # @return [Array<Types::InsightImpactGraphService>]
976
978
  #
977
979
  # @!attribute [rw] next_token
@@ -1211,13 +1213,21 @@ module Aws::XRay
1211
1213
  # @!attribute [rw] last_rule_modification
1212
1214
  # The last time a user changed the sampling rule configuration. If the
1213
1215
  # sampling rule configuration changed since the service last retrieved
1214
- # it, the service should call GetSamplingRules to get the latest
1216
+ # it, the service should call [GetSamplingRules][1] to get the latest
1215
1217
  # version.
1218
+ #
1219
+ #
1220
+ #
1221
+ # [1]: https://docs.aws.amazon.com/xray/latest/api/API_GetSamplingRules.html
1216
1222
  # @return [Time]
1217
1223
  #
1218
1224
  # @!attribute [rw] unprocessed_statistics
1219
- # Information about SamplingStatisticsDocument that X-Ray could not
1220
- # process.
1225
+ # Information about [SamplingStatisticsDocument][1] that X-Ray could
1226
+ # not process.
1227
+ #
1228
+ #
1229
+ #
1230
+ # [1]: https://docs.aws.amazon.com/xray/latest/api/API_SamplingStatisticsDocument.html
1221
1231
  # @return [Array<Types::UnprocessedStatistics>]
1222
1232
  #
1223
1233
  # @see http://docs.aws.amazon.com/goto/WebAPI/xray-2016-04-12/GetSamplingTargetsResult AWS API Documentation
@@ -1557,7 +1567,7 @@ module Aws::XRay
1557
1567
  # * The InsightsEnabled boolean can be set to true to enable insights
1558
1568
  # for the group or false to disable insights for the group.
1559
1569
  #
1560
- # * The NotifcationsEnabled boolean can be set to true to enable
1570
+ # * The NotificationsEnabled boolean can be set to true to enable
1561
1571
  # insights notifications through Amazon EventBridge for the group.
1562
1572
  # @return [Types::InsightsConfiguration]
1563
1573
  #
@@ -1804,18 +1814,18 @@ module Aws::XRay
1804
1814
  # @!attribute [rw] type
1805
1815
  # Identifier for the service. Unique within the service map.
1806
1816
  #
1807
- # * AWS Resource - The type of an AWS resource. For example,
1808
- # AWS::EC2::Instance for an application running on Amazon EC2 or
1809
- # AWS::DynamoDB::Table for an Amazon DynamoDB table that the
1810
- # application used.
1817
+ # * Amazon Web Services Resource - The type of an Amazon Web Services
1818
+ # resource. For example, AWS::EC2::Instance for an application
1819
+ # running on Amazon EC2 or AWS::DynamoDB::Table for an Amazon
1820
+ # DynamoDB table that the application used.
1811
1821
  #
1812
- # * AWS Service - The type of an AWS service. For example,
1813
- # AWS::DynamoDB for downstream calls to Amazon DynamoDB that didn't
1814
- # target a specific table.
1822
+ # * Amazon Web Services Service - The type of an Amazon Web Services
1823
+ # service. For example, AWS::DynamoDB for downstream calls to Amazon
1824
+ # DynamoDB that didn't target a specific table.
1815
1825
  #
1816
- # * AWS Service - The type of an AWS service. For example,
1817
- # AWS::DynamoDB for downstream calls to Amazon DynamoDB that didn't
1818
- # target a specific table.
1826
+ # * Amazon Web Services Service - The type of an Amazon Web Services
1827
+ # service. For example, AWS::DynamoDB for downstream calls to Amazon
1828
+ # DynamoDB that didn't target a specific table.
1819
1829
  #
1820
1830
  # * remote - A downstream service of indeterminate type.
1821
1831
  # @return [String]
@@ -1829,7 +1839,8 @@ module Aws::XRay
1829
1839
  # @return [Array<String>]
1830
1840
  #
1831
1841
  # @!attribute [rw] account_id
1832
- # Identifier of the AWS account in which the service runs.
1842
+ # Identifier of the Amazon Web Services account in which the service
1843
+ # runs.
1833
1844
  # @return [String]
1834
1845
  #
1835
1846
  # @!attribute [rw] edges
@@ -2042,14 +2053,13 @@ module Aws::XRay
2042
2053
  # }
2043
2054
  #
2044
2055
  # @!attribute [rw] key_id
2045
- # An AWS KMS customer master key (CMK) in one of the following
2046
- # formats:
2056
+ # An Amazon Web Services KMS key in one of the following formats:
2047
2057
  #
2048
2058
  # * **Alias** - The name of the key. For example, `alias/MyKey`.
2049
2059
  #
2050
2060
  # * **Key ID** - The KMS key ID of the key. For example,
2051
- # `ae4aa6d49-a4d8-9df9-a475-4ff6d7898456`. AWS X-Ray does not
2052
- # support asymmetric CMKs.
2061
+ # `ae4aa6d49-a4d8-9df9-a475-4ff6d7898456`. Amazon Web Services X-Ray
2062
+ # does not support asymmetric KMS keys.
2053
2063
  #
2054
2064
  # * **ARN** - The full Amazon Resource Name of the key ID or alias.
2055
2065
  # For example,
@@ -2381,7 +2391,8 @@ module Aws::XRay
2381
2391
  # @return [String]
2382
2392
  #
2383
2393
  # @!attribute [rw] resource_arn
2384
- # Matches the ARN of the AWS resource on which the service runs.
2394
+ # Matches the ARN of the Amazon Web Services resource on which the
2395
+ # service runs.
2385
2396
  # @return [String]
2386
2397
  #
2387
2398
  # @!attribute [rw] priority
@@ -2449,7 +2460,11 @@ module Aws::XRay
2449
2460
  include Aws::Structure
2450
2461
  end
2451
2462
 
2452
- # A SamplingRule and its metadata.
2463
+ # A [SamplingRule][1] and its metadata.
2464
+ #
2465
+ #
2466
+ #
2467
+ # [1]: https://docs.aws.amazon.com/xray/latest/api/API_SamplingRule.html
2453
2468
  #
2454
2469
  # @!attribute [rw] sampling_rule
2455
2470
  # The sampling rule.
@@ -2506,7 +2521,8 @@ module Aws::XRay
2506
2521
  # @return [String]
2507
2522
  #
2508
2523
  # @!attribute [rw] resource_arn
2509
- # Matches the ARN of the AWS resource on which the service runs.
2524
+ # Matches the ARN of the Amazon Web Services resource on which the
2525
+ # service runs.
2510
2526
  # @return [String]
2511
2527
  #
2512
2528
  # @!attribute [rw] priority
@@ -2606,7 +2622,11 @@ module Aws::XRay
2606
2622
 
2607
2623
  # Request sampling results for a single rule from a service. Results are
2608
2624
  # for the last 10 seconds unless the service has been assigned a longer
2609
- # reporting interval after a previous call to GetSamplingTargets.
2625
+ # reporting interval after a previous call to [GetSamplingTargets][1].
2626
+ #
2627
+ #
2628
+ #
2629
+ # [1]: https://docs.aws.amazon.com/xray/latest/api/API_GetSamplingTargets.html
2610
2630
  #
2611
2631
  # @note When making an API call, you may pass SamplingStatisticsDocument
2612
2632
  # data as a hash:
@@ -2687,7 +2707,11 @@ module Aws::XRay
2687
2707
  # Temporary changes to a sampling rule configuration. To meet the global
2688
2708
  # sampling target for a rule, X-Ray calculates a new reservoir for each
2689
2709
  # service based on the recent sampling results of all services that
2690
- # called GetSamplingTargets.
2710
+ # called [GetSamplingTargets][1].
2711
+ #
2712
+ #
2713
+ #
2714
+ # [1]: https://docs.aws.amazon.com/xray/latest/api/API_GetSamplingTargets.html
2691
2715
  #
2692
2716
  # @!attribute [rw] rule_name
2693
2717
  # The name of the sampling rule.
@@ -2726,15 +2750,18 @@ module Aws::XRay
2726
2750
 
2727
2751
  # A segment from a trace that has been ingested by the X-Ray service.
2728
2752
  # The segment can be compiled from documents uploaded with
2729
- # PutTraceSegments, or an `inferred` segment for a downstream service,
2730
- # generated from a subsegment sent by the service that called it.
2753
+ # [PutTraceSegments][1], or an `inferred` segment for a downstream
2754
+ # service, generated from a subsegment sent by the service that called
2755
+ # it.
2731
2756
  #
2732
- # For the full segment document schema, see [AWS X-Ray Segment
2733
- # Documents][1] in the *AWS X-Ray Developer Guide*.
2757
+ # For the full segment document schema, see [Amazon Web Services X-Ray
2758
+ # Segment Documents][2] in the *Amazon Web Services X-Ray Developer
2759
+ # Guide*.
2734
2760
  #
2735
2761
  #
2736
2762
  #
2737
- # [1]: https://docs.aws.amazon.com/xray/latest/devguide/xray-api-segmentdocuments.html
2763
+ # [1]: https://docs.aws.amazon.com/xray/latest/api/API_PutTraceSegments.html
2764
+ # [2]: https://docs.aws.amazon.com/xray/latest/devguide/xray-api-segmentdocuments.html
2738
2765
  #
2739
2766
  # @!attribute [rw] id
2740
2767
  # The segment's ID.
@@ -2775,20 +2802,21 @@ module Aws::XRay
2775
2802
  # @return [Boolean]
2776
2803
  #
2777
2804
  # @!attribute [rw] account_id
2778
- # Identifier of the AWS account in which the service runs.
2805
+ # Identifier of the Amazon Web Services account in which the service
2806
+ # runs.
2779
2807
  # @return [String]
2780
2808
  #
2781
2809
  # @!attribute [rw] type
2782
2810
  # The type of service.
2783
2811
  #
2784
- # * AWS Resource - The type of an AWS resource. For example,
2785
- # `AWS::EC2::Instance` for an application running on Amazon EC2 or
2786
- # `AWS::DynamoDB::Table` for an Amazon DynamoDB table that the
2787
- # application used.
2812
+ # * Amazon Web Services Resource - The type of an Amazon Web Services
2813
+ # resource. For example, `AWS::EC2::Instance` for an application
2814
+ # running on Amazon EC2 or `AWS::DynamoDB::Table` for an Amazon
2815
+ # DynamoDB table that the application used.
2788
2816
  #
2789
- # * AWS Service - The type of an AWS service. For example,
2790
- # `AWS::DynamoDB` for downstream calls to Amazon DynamoDB that
2791
- # didn't target a specific table.
2817
+ # * Amazon Web Services Service - The type of an Amazon Web Services
2818
+ # service. For example, `AWS::DynamoDB` for downstream calls to
2819
+ # Amazon DynamoDB that didn't target a specific table.
2792
2820
  #
2793
2821
  # * `client` - Represents the clients that sent requests to a root
2794
2822
  # service.
@@ -2904,9 +2932,10 @@ module Aws::XRay
2904
2932
  include Aws::Structure
2905
2933
  end
2906
2934
 
2907
- # A map that contains tag keys and tag values to attach to an AWS X-Ray
2908
- # group or sampling rule. For more information about ways to use tags,
2909
- # see [Tagging AWS resources][1] in the *AWS General Reference*.
2935
+ # A map that contains tag keys and tag values to attach to an Amazon Web
2936
+ # Services X-Ray group or sampling rule. For more information about ways
2937
+ # to use tags, see [Tagging Amazon Web Services resources][1] in the
2938
+ # *Amazon Web Services General Reference*.
2910
2939
  #
2911
2940
  # The following restrictions apply to tags:
2912
2941
  #
@@ -2914,8 +2943,8 @@ module Aws::XRay
2914
2943
  #
2915
2944
  # * Tag keys and values are case sensitive.
2916
2945
  #
2917
- # * Don't use `aws:` as a prefix for keys; it's reserved for AWS use.
2918
- # You cannot edit or delete system tags.
2946
+ # * Don't use `aws:` as a prefix for keys; it's reserved for Amazon
2947
+ # Web Services use. You cannot edit or delete system tags.
2919
2948
  #
2920
2949
  #
2921
2950
  #
@@ -2972,8 +3001,8 @@ module Aws::XRay
2972
3001
  # @!attribute [rw] tags
2973
3002
  # A map that contains one or more tag keys and tag values to attach to
2974
3003
  # an X-Ray group or sampling rule. For more information about ways to
2975
- # use tags, see [Tagging AWS resources][1] in the *AWS General
2976
- # Reference*.
3004
+ # use tags, see [Tagging Amazon Web Services resources][1] in the
3005
+ # *Amazon Web Services General Reference*.
2977
3006
  #
2978
3007
  # The following restrictions apply to tags:
2979
3008
  #
@@ -2988,8 +3017,8 @@ module Aws::XRay
2988
3017
  #
2989
3018
  # * Tag keys and values are case sensitive.
2990
3019
  #
2991
- # * Don't use `aws:` as a prefix for keys; it's reserved for AWS
2992
- # use. You cannot edit or delete system tags.
3020
+ # * Don't use `aws:` as a prefix for keys; it's reserved for Amazon
3021
+ # Web Services use. You cannot edit or delete system tags.
2993
3022
  #
2994
3023
  #
2995
3024
  #
@@ -3138,8 +3167,8 @@ module Aws::XRay
3138
3167
  #
3139
3168
  # @!attribute [rw] limit_exceeded
3140
3169
  # LimitExceeded is set to true when the trace has exceeded one of the
3141
- # defined quotas. For more information about quotas, see [AWS X-Ray
3142
- # endpoints and quotas][1].
3170
+ # defined quotas. For more information about quotas, see [Amazon Web
3171
+ # Services X-Ray endpoints and quotas][1].
3143
3172
  #
3144
3173
  #
3145
3174
  #
@@ -3302,8 +3331,12 @@ module Aws::XRay
3302
3331
  include Aws::Structure
3303
3332
  end
3304
3333
 
3305
- # Sampling statistics from a call to GetSamplingTargets that X-Ray could
3306
- # not process.
3334
+ # Sampling statistics from a call to [GetSamplingTargets][1] that X-Ray
3335
+ # could not process.
3336
+ #
3337
+ #
3338
+ #
3339
+ # [1]: https://docs.aws.amazon.com/xray/latest/api/API_GetSamplingTargets.html
3307
3340
  #
3308
3341
  # @!attribute [rw] rule_name
3309
3342
  # The name of the sampling rule.
data/lib/aws-sdk-xray.rb CHANGED
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-xray/customizations'
48
48
  # @!group service
49
49
  module Aws::XRay
50
50
 
51
- GEM_VERSION = '1.39.0'
51
+ GEM_VERSION = '1.43.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-xray
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.39.0
4
+ version: 1.43.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: 2021-07-30 00:00:00.000000000 Z
11
+ date: 2021-11-04 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.119.0
22
+ version: 3.122.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.119.0
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -76,7 +76,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
76
76
  requirements:
77
77
  - - ">="
78
78
  - !ruby/object:Gem::Version
79
- version: '0'
79
+ version: '2.3'
80
80
  required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  requirements:
82
82
  - - ">="