aws-sdk-securityhub 1.102.0 → 1.103.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 853d18c7d64091277175693e98d65347b1f267274ab11a48fb81dfc7c6c5eb2c
4
- data.tar.gz: 600395dc5e31f7ac79154d7a4fc73d2703814c5bfb7080d0a15df460c73dd31a
3
+ metadata.gz: 0a78ea4ba60cd23828384c55b157f2edd5729a4152bff20d41ab945c0ec12590
4
+ data.tar.gz: fd293a2932b9744f85e10e155a519b510414538c669392a23d4d878ada75814e
5
5
  SHA512:
6
- metadata.gz: 49252005fb6e639e116f91a79c88cc05d47f80140fdbf129f94aef0b23b827f778b5f67062d8c6fb4d615afe4c9d4306e938183f3b3ae09e01851b24452057dc
7
- data.tar.gz: 6a6e485001338e1520e41e447cdc36035603bf593638f4e6a0d1384b540ecc07b0f3df3c3da1d2a42c9eccb06de7017c3f853e92932000c0726212b1a498cdb7
6
+ metadata.gz: 1b36231cce2f8094c6d5b9737acd822647e278a9e035909d9fefafd8b058326b446f6c09c3dad61b602e086b9b84152a554031b32c86c2096d43c133383dbd09
7
+ data.tar.gz: c719b72a8b2985e94be95317f62057ced3e0644dac3d60c2dd2d39b29fef01351e0c9f6a3231fb390c98e19867ec4df5dcd98fc8fb0a722bcd6b0c969bd1be15
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.103.0 (2024-04-02)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for AWS Security Hub
8
+
4
9
  1.102.0 (2024-03-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.102.0
1
+ 1.103.0
@@ -5311,52 +5311,80 @@ module Aws::SecurityHub
5311
5311
  # Identifies which finding to get the finding history for.
5312
5312
  #
5313
5313
  # @option params [Time,DateTime,Date,Integer,String] :start_time
5314
- # An ISO 8601-formatted timestamp that indicates the start time of the
5315
- # requested finding history. A correctly formatted example is
5316
- # `2020-05-21T20:16:34.724Z`. The value cannot contain spaces, and date
5317
- # and time should be separated by `T`. For more information, see [RFC
5318
- # 3339 section 5.6, Internet Date/Time Format][1].
5314
+ # A timestamp that indicates the start time of the requested finding
5315
+ # history.
5319
5316
  #
5320
5317
  # If you provide values for both `StartTime` and `EndTime`, Security Hub
5321
5318
  # returns finding history for the specified time period. If you provide
5322
5319
  # a value for `StartTime` but not for `EndTime`, Security Hub returns
5323
5320
  # finding history from the `StartTime` to the time at which the API is
5324
5321
  # called. If you provide a value for `EndTime` but not for `StartTime`,
5325
- # Security Hub returns finding history from the [CreatedAt][2] timestamp
5322
+ # Security Hub returns finding history from the [CreatedAt][1] timestamp
5326
5323
  # of the finding to the `EndTime`. If you provide neither `StartTime`
5327
5324
  # nor `EndTime`, Security Hub returns finding history from the CreatedAt
5328
5325
  # timestamp of the finding to the time at which the API is called. In
5329
5326
  # all of these scenarios, the response is limited to 100 results, and
5330
5327
  # the maximum time period is limited to 90 days.
5331
5328
  #
5329
+ # This field accepts only the specified formats. Timestamps can end with
5330
+ # `Z` or `("+" / "-") time-hour [":" time-minute]`. The time-secfrac
5331
+ # after seconds is limited to a maximum of 9 digits. The offset is
5332
+ # bounded by +/-18:00. Here are valid timestamp formats with examples:
5332
5333
  #
5334
+ # * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
5333
5335
  #
5334
- # [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
5335
- # [2]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_AwsSecurityFindingFilters.html#securityhub-Type-AwsSecurityFindingFilters-CreatedAt
5336
+ # * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
5337
+ # `2019-01-31T23:00:00.123456789Z`)
5338
+ #
5339
+ # * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
5340
+ # `2024-01-04T15:25:10+17:59`)
5341
+ #
5342
+ # * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example, `2024-01-04T15:25:10-1759`)
5343
+ #
5344
+ # * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
5345
+ # `2024-01-04T15:25:10.123456789+17:59`)
5346
+ #
5347
+ #
5348
+ #
5349
+ # [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_AwsSecurityFindingFilters.html#securityhub-Type-AwsSecurityFindingFilters-CreatedAt
5336
5350
  #
5337
5351
  # @option params [Time,DateTime,Date,Integer,String] :end_time
5338
5352
  # An ISO 8601-formatted timestamp that indicates the end time of the
5339
- # requested finding history. A correctly formatted example is
5340
- # `2020-05-21T20:16:34.724Z`. The value cannot contain spaces, and date
5341
- # and time should be separated by `T`. For more information, see [RFC
5342
- # 3339 section 5.6, Internet Date/Time Format][1].
5353
+ # requested finding history.
5343
5354
  #
5344
5355
  # If you provide values for both `StartTime` and `EndTime`, Security Hub
5345
5356
  # returns finding history for the specified time period. If you provide
5346
5357
  # a value for `StartTime` but not for `EndTime`, Security Hub returns
5347
5358
  # finding history from the `StartTime` to the time at which the API is
5348
5359
  # called. If you provide a value for `EndTime` but not for `StartTime`,
5349
- # Security Hub returns finding history from the [CreatedAt][2] timestamp
5360
+ # Security Hub returns finding history from the [CreatedAt][1] timestamp
5350
5361
  # of the finding to the `EndTime`. If you provide neither `StartTime`
5351
5362
  # nor `EndTime`, Security Hub returns finding history from the CreatedAt
5352
5363
  # timestamp of the finding to the time at which the API is called. In
5353
5364
  # all of these scenarios, the response is limited to 100 results, and
5354
5365
  # the maximum time period is limited to 90 days.
5355
5366
  #
5367
+ # This field accepts only the specified formats. Timestamps can end with
5368
+ # `Z` or `("+" / "-") time-hour [":" time-minute]`. The time-secfrac
5369
+ # after seconds is limited to a maximum of 9 digits. The offset is
5370
+ # bounded by +/-18:00. Here are valid timestamp formats with examples:
5371
+ #
5372
+ # * `YYYY-MM-DDTHH:MM:SSZ` (for example, `2019-01-31T23:00:00Z`)
5373
+ #
5374
+ # * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmmZ` (for example,
5375
+ # `2019-01-31T23:00:00.123456789Z`)
5376
+ #
5377
+ # * `YYYY-MM-DDTHH:MM:SS+HH:MM` (for example,
5378
+ # `2024-01-04T15:25:10+17:59`)
5379
+ #
5380
+ # * `YYYY-MM-DDTHH:MM:SS-HHMM` (for example, `2024-01-04T15:25:10-1759`)
5381
+ #
5382
+ # * `YYYY-MM-DDTHH:MM:SS.mmmmmmmmm+HH:MM` (for example,
5383
+ # `2024-01-04T15:25:10.123456789+17:59`)
5384
+ #
5356
5385
  #
5357
5386
  #
5358
- # [1]: https://www.rfc-editor.org/rfc/rfc3339#section-5.6
5359
- # [2]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_AwsSecurityFindingFilters.html#securityhub-Type-AwsSecurityFindingFilters-CreatedAt
5387
+ # [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_AwsSecurityFindingFilters.html#securityhub-Type-AwsSecurityFindingFilters-CreatedAt
5360
5388
  #
5361
5389
  # @option params [String] :next_token
5362
5390
  # A token for pagination purposes. Provide `NULL` as the initial value.
@@ -10348,7 +10376,7 @@ module Aws::SecurityHub
10348
10376
  params: params,
10349
10377
  config: config)
10350
10378
  context[:gem_name] = 'aws-sdk-securityhub'
10351
- context[:gem_version] = '1.102.0'
10379
+ context[:gem_version] = '1.103.0'
10352
10380
  Seahorse::Client::Request.new(handlers, context)
10353
10381
  end
10354
10382