aws-sdk-securityhub 1.109.0 → 1.110.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: c32b13d8cc8260a5aea7dd2ac8bc5c12f7fb9c2a9ea9180366fe5e5d8a2f750d
4
- data.tar.gz: f0dc4a8cb0e1355f767c76ba0912719fa06a9c0752d9ee72af784772a7a3799e
3
+ metadata.gz: f8ae6f4ed870d7bb61242ddc5fed2e93efd9f3975d294c053df05fe080486432
4
+ data.tar.gz: c7a96bbea123b428191921fa89da8425e0e090f01a36855e8c3a40e090288254
5
5
  SHA512:
6
- metadata.gz: b0cb3eb633e32d5f1ebf4f3b510bcb95a0a0000a6223292b9ebeef4a58f2ef03951eef15f2ae64de2f7c790c17d66fbde7575cd572db9e7ed6f1818af339f91d
7
- data.tar.gz: 5b88ccfed81ea0d1c9e2cae88925a759c2483b706ca8dc3a619f2890687f8c4b52480d683a40103ea8b846bfc8aef61dfd35c2df0d31bbd209137b1e4635d932
6
+ metadata.gz: 0c5bfac08b4bc97805052824c007e362edc5e745d2670a4f55da422d8b884e2e8e2aee52288548d7450c31b5d85107e46cc056ead7f5cb8f7c5422516fab33b3
7
+ data.tar.gz: 52775209b8c9a8142f80cf6966ed79ca26873fc618d71f7a1225d247a5e77ef323e60b497a4e0e36678d27a9b308d9a83fc89d9210ae7e8a63235d137e71e606
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.110.0 (2024-06-20)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for Security Hub
8
+
4
9
  1.109.0 (2024-06-05)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.109.0
1
+ 1.110.0
@@ -10407,7 +10407,7 @@ module Aws::SecurityHub
10407
10407
  params: params,
10408
10408
  config: config)
10409
10409
  context[:gem_name] = 'aws-sdk-securityhub'
10410
- context[:gem_version] = '1.109.0'
10410
+ context[:gem_version] = '1.110.0'
10411
10411
  Seahorse::Client::Request.new(handlers, context)
10412
10412
  end
10413
10413
 
@@ -6916,6 +6916,7 @@ module Aws::SecurityHub
6916
6916
 
6917
6917
  api.metadata = {
6918
6918
  "apiVersion" => "2018-10-26",
6919
+ "auth" => ["aws.auth#sigv4"],
6919
6920
  "endpointPrefix" => "securityhub",
6920
6921
  "jsonVersion" => "1.1",
6921
6922
  "protocol" => "rest-json",
@@ -24938,9 +24938,45 @@ module Aws::SecurityHub
24938
24938
  include Aws::Structure
24939
24939
  end
24940
24940
 
24941
- # In a `BatchImportFindings` request, finding providers use
24942
- # `FindingProviderFields` to provide and update values for confidence,
24943
- # criticality, related findings, severity, and types.
24941
+ # In a [ `BatchImportFindings` ][1] request, finding providers use
24942
+ # `FindingProviderFields` to provide and update values for the following
24943
+ # fields:
24944
+ #
24945
+ # * `Confidence`
24946
+ #
24947
+ # * `Criticality`
24948
+ #
24949
+ # * `RelatedFindings`
24950
+ #
24951
+ # * `Severity`
24952
+ #
24953
+ # * `Types`
24954
+ #
24955
+ # The preceding fields are nested under the `FindingProviderFields`
24956
+ # object, but also have analogues of the same name as top-level ASFF
24957
+ # fields. When a new finding is sent to Security Hub by a finding
24958
+ # provider, Security Hub populates the `FindingProviderFields` object
24959
+ # automatically, if it is empty, based on the corresponding top-level
24960
+ # fields.
24961
+ #
24962
+ # Finding providers can update `FindingProviderFields` only by using the
24963
+ # `BatchImportFindings` operation. Finding providers can't update this
24964
+ # object with the [ `BatchUpdateFindings` ][2] operation. Customers can
24965
+ # update the top-level fields by using the `BatchUpdateFindings`
24966
+ # operation. Customers can't update `FindingProviderFields`.
24967
+ #
24968
+ # For information about how Security Hub handles updates from
24969
+ # `BatchImportFindings` to `FindingProviderFields` and to the
24970
+ # corresponding top-level attributes, see [Using `FindingProviderFields`
24971
+ # ][3] in the *Security Hub User Guide*.
24972
+ #
24973
+ #
24974
+ #
24975
+ #
24976
+ #
24977
+ # [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_BatchImportFindings.html
24978
+ # [2]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_BatchUpdateFindings.html
24979
+ # [3]: https://docs.aws.amazon.com/securityhub/latest/userguide/finding-update-batchimportfindings.html#batchimportfindings-findingproviderfields
24944
24980
  #
24945
24981
  # @!attribute [rw] confidence
24946
24982
  # A finding's confidence. Confidence is defined as the likelihood
@@ -24989,7 +25025,39 @@ module Aws::SecurityHub
24989
25025
  include Aws::Structure
24990
25026
  end
24991
25027
 
24992
- # The severity assigned to the finding by the finding provider.
25028
+ # The severity assigned to a finding by the finding provider. This
25029
+ # object may include one or more of the following attributes:
25030
+ #
25031
+ # * `Label`
25032
+ #
25033
+ # * `Normalized`
25034
+ #
25035
+ # * `Original`
25036
+ #
25037
+ # * `Product`
25038
+ #
25039
+ # If a [ `BatchImportFindings` ][1] request for a new finding only
25040
+ # provides `Label` or only provides `Normalized`, Security Hub
25041
+ # automatically populates the value of the other field.
25042
+ #
25043
+ # The `Normalized` and `Product` attributes are included in the
25044
+ # `FindingProviderSeverity` structure to preserve the historical
25045
+ # information associated with the finding, even if the top-level
25046
+ # `Severity` object is later modified using the [ `BatchUpdateFindings`
25047
+ # ][2] operation.
25048
+ #
25049
+ # If the top-level `Finding.Severity` object is present, but
25050
+ # `Finding.FindingProviderFields` isn't present, Security Hub creates
25051
+ # the `FindingProviderFields.Severity` object and copies the entire
25052
+ # `Finding.Severity` object into it. This ensures that the original,
25053
+ # provider-supplied details are retained within the
25054
+ # `FindingProviderFields.Severity` object, even if the top-level
25055
+ # `Severity` object is overwritten.
25056
+ #
25057
+ #
25058
+ #
25059
+ # [1]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_BatchImportFindings.html
25060
+ # [2]: https://docs.aws.amazon.com/securityhub/1.0/APIReference/API_BatchUpdateFindings.html
24993
25061
  #
24994
25062
  # @!attribute [rw] label
24995
25063
  # The severity label assigned to the finding by the finding provider.
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-securityhub/customizations'
52
52
  # @!group service
53
53
  module Aws::SecurityHub
54
54
 
55
- GEM_VERSION = '1.109.0'
55
+ GEM_VERSION = '1.110.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-securityhub
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.109.0
4
+ version: 1.110.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-06-05 00:00:00.000000000 Z
11
+ date: 2024-06-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core