aws-sdk-securityhub 1.41.0 → 1.42.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: aec2426cb06259f49e69624449e92158cade7445d1ff408cabc75d523707a6c0
4
- data.tar.gz: 1592e2f4ac145f7f89bcf78f9df8e8c5d908a8393b9d952fb8462ea711319ad2
3
+ metadata.gz: 0f2f2a1fde785227f7324ab354e65859aa46c3ab358ef321a6a7fac77465439b
4
+ data.tar.gz: bd97f3cd9a048cdb91e6e8adbc11f8782e28ef6cefcbc43e1036b72ba14d6ec4
5
5
  SHA512:
6
- metadata.gz: dc14be97fbb32b69850b289522a054c17a3f1170930412538e7f862f8797a1b7a7ecd2733955ec5e8a910be5b8371083df6f328a26e064de0c22b4871e6c0402
7
- data.tar.gz: e98f60c208184afc452a03bda45bc80f22ed3b03dd6e27ea8114ad3aac0b70b6b868f6bc6f168484be7de038878ea8b370de3fd1243afa0f98bd634a9aa62f7c
6
+ metadata.gz: 407ee1d153d67489edb960792731e2c0e2e65abcb4e18c12c85dcdcdca883d99953e22ebdfb19d5370988599fdc7643695734c77daf8ea34c2d87242579e10dd
7
+ data.tar.gz: 073a12420ee2fa9e0e2bc8eeee49214185d4207cf849341117c2b74ed63469411a934f2ee60a4c10b6b1b029b75ef72adc0bcdc4733e7913549971a95b367982
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.42.0 (2021-03-18)
5
+ ------------------
6
+
7
+ * Feature - New object for separate provider and customer values. New objects track S3 Public Access Block configuration and identify sensitive data. BatchImportFinding requests are limited to 100 findings.
8
+
4
9
  1.41.0 (2021-03-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.41.0
1
+ 1.42.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-securityhub/customizations'
48
48
  # @!group service
49
49
  module Aws::SecurityHub
50
50
 
51
- GEM_VERSION = '1.41.0'
51
+ GEM_VERSION = '1.42.0'
52
52
 
53
53
  end
@@ -452,9 +452,9 @@ module Aws::SecurityHub
452
452
  req.send_request(options)
453
453
  end
454
454
 
455
- # Imports security findings generated from an integrated third-party
456
- # product into Security Hub. This action is requested by the integrated
457
- # product to import its findings into Security Hub.
455
+ # Imports security findings generated from an integrated product into
456
+ # Security Hub. This action is requested by the integrated product to
457
+ # import its findings into Security Hub.
458
458
  #
459
459
  # The maximum allowed size for a finding is 240 Kb. An error is returned
460
460
  # for any finding larger than 240 Kb.
@@ -471,11 +471,8 @@ module Aws::SecurityHub
471
471
  #
472
472
  # * `Workflow`
473
473
  #
474
- # `BatchImportFindings` can be used to update the following finding
475
- # fields and objects only if they have not been updated using
476
- # `BatchUpdateFindings`. After they are updated using
477
- # `BatchUpdateFindings`, these fields cannot be updated using
478
- # `BatchImportFindings`.
474
+ # Finding providers also should not use `BatchImportFindings` to update
475
+ # the following attributes.
479
476
  #
480
477
  # * `Confidence`
481
478
  #
@@ -487,6 +484,9 @@ module Aws::SecurityHub
487
484
  #
488
485
  # * `Types`
489
486
  #
487
+ # Instead, finding providers use `FindingProviderFields` to provide
488
+ # values for these attributes.
489
+ #
490
490
  # @option params [required, Array<Types::AwsSecurityFinding>] :findings
491
491
  # A list of findings to import. To successfully import a finding, it
492
492
  # must follow the [AWS Security Finding Format][1]. Maximum of 100
@@ -512,12 +512,12 @@ module Aws::SecurityHub
512
512
  # product_arn: "NonEmptyString", # required
513
513
  # generator_id: "NonEmptyString", # required
514
514
  # aws_account_id: "NonEmptyString", # required
515
- # types: ["NonEmptyString"], # required
515
+ # types: ["NonEmptyString"],
516
516
  # first_observed_at: "NonEmptyString",
517
517
  # last_observed_at: "NonEmptyString",
518
518
  # created_at: "NonEmptyString", # required
519
519
  # updated_at: "NonEmptyString", # required
520
- # severity: { # required
520
+ # severity: {
521
521
  # product: 1.0,
522
522
  # label: "INFORMATIONAL", # accepts INFORMATIONAL, LOW, MEDIUM, HIGH, CRITICAL
523
523
  # normalized: 1,
@@ -641,6 +641,130 @@ module Aws::SecurityHub
641
641
  # tags: {
642
642
  # "NonEmptyString" => "NonEmptyString",
643
643
  # },
644
+ # data_classification: {
645
+ # detailed_results_location: "NonEmptyString",
646
+ # result: {
647
+ # mime_type: "NonEmptyString",
648
+ # size_classified: 1,
649
+ # additional_occurrences: false,
650
+ # status: {
651
+ # code: "NonEmptyString",
652
+ # reason: "NonEmptyString",
653
+ # },
654
+ # sensitive_data: [
655
+ # {
656
+ # category: "NonEmptyString",
657
+ # detections: [
658
+ # {
659
+ # count: 1,
660
+ # type: "NonEmptyString",
661
+ # occurrences: {
662
+ # line_ranges: [
663
+ # {
664
+ # start: 1,
665
+ # end: 1,
666
+ # start_column: 1,
667
+ # },
668
+ # ],
669
+ # offset_ranges: [
670
+ # {
671
+ # start: 1,
672
+ # end: 1,
673
+ # start_column: 1,
674
+ # },
675
+ # ],
676
+ # pages: [
677
+ # {
678
+ # page_number: 1,
679
+ # line_range: {
680
+ # start: 1,
681
+ # end: 1,
682
+ # start_column: 1,
683
+ # },
684
+ # offset_range: {
685
+ # start: 1,
686
+ # end: 1,
687
+ # start_column: 1,
688
+ # },
689
+ # },
690
+ # ],
691
+ # records: [
692
+ # {
693
+ # json_path: "NonEmptyString",
694
+ # record_index: 1,
695
+ # },
696
+ # ],
697
+ # cells: [
698
+ # {
699
+ # column: 1,
700
+ # row: 1,
701
+ # column_name: "NonEmptyString",
702
+ # cell_reference: "NonEmptyString",
703
+ # },
704
+ # ],
705
+ # },
706
+ # },
707
+ # ],
708
+ # total_count: 1,
709
+ # },
710
+ # ],
711
+ # custom_data_identifiers: {
712
+ # detections: [
713
+ # {
714
+ # count: 1,
715
+ # arn: "NonEmptyString",
716
+ # name: "NonEmptyString",
717
+ # occurrences: {
718
+ # line_ranges: [
719
+ # {
720
+ # start: 1,
721
+ # end: 1,
722
+ # start_column: 1,
723
+ # },
724
+ # ],
725
+ # offset_ranges: [
726
+ # {
727
+ # start: 1,
728
+ # end: 1,
729
+ # start_column: 1,
730
+ # },
731
+ # ],
732
+ # pages: [
733
+ # {
734
+ # page_number: 1,
735
+ # line_range: {
736
+ # start: 1,
737
+ # end: 1,
738
+ # start_column: 1,
739
+ # },
740
+ # offset_range: {
741
+ # start: 1,
742
+ # end: 1,
743
+ # start_column: 1,
744
+ # },
745
+ # },
746
+ # ],
747
+ # records: [
748
+ # {
749
+ # json_path: "NonEmptyString",
750
+ # record_index: 1,
751
+ # },
752
+ # ],
753
+ # cells: [
754
+ # {
755
+ # column: 1,
756
+ # row: 1,
757
+ # column_name: "NonEmptyString",
758
+ # cell_reference: "NonEmptyString",
759
+ # },
760
+ # ],
761
+ # },
762
+ # },
763
+ # ],
764
+ # total_count: 1,
765
+ # },
766
+ # },
767
+ # },
644
768
  # details: {
645
769
  # aws_auto_scaling_auto_scaling_group: {
646
770
  # launch_configuration_name: "NonEmptyString",
@@ -942,6 +1066,18 @@ module Aws::SecurityHub
942
1066
  # },
943
1067
  # ],
944
1068
  # },
1069
+ # public_access_block_configuration: {
1070
+ # block_public_acls: false,
1071
+ # block_public_policy: false,
1072
+ # ignore_public_acls: false,
1073
+ # restrict_public_buckets: false,
1074
+ # },
1075
+ # },
1076
+ # aws_s3_account_public_access_block: {
1077
+ # block_public_acls: false,
1078
+ # block_public_policy: false,
1079
+ # ignore_public_acls: false,
1080
+ # restrict_public_buckets: false,
945
1081
  # },
946
1082
  # aws_s3_object: {
947
1083
  # last_modified: "NonEmptyString",
@@ -2172,6 +2308,21 @@ module Aws::SecurityHub
2172
2308
  # blocked: false,
2173
2309
  # },
2174
2310
  # },
2311
+ # finding_provider_fields: {
2312
+ # confidence: 1,
2313
+ # criticality: 1,
2314
+ # related_findings: [
2315
+ # {
2316
+ # product_arn: "NonEmptyString", # required
2317
+ # id: "NonEmptyString", # required
2318
+ # },
2319
+ # ],
2320
+ # severity: {
2321
+ # label: "INFORMATIONAL", # accepts INFORMATIONAL, LOW, MEDIUM, HIGH, CRITICAL
2322
+ # original: "NonEmptyString",
2323
+ # },
2324
+ # types: ["NonEmptyString"],
2325
+ # },
2175
2326
  # },
2176
2327
  # ],
2177
2328
  # })
@@ -2989,6 +3140,50 @@ module Aws::SecurityHub
2989
3140
  # value: "NonEmptyString",
2990
3141
  # },
2991
3142
  # ],
3143
+ # finding_provider_fields_confidence: [
3144
+ # {
3145
+ # gte: 1.0,
3146
+ # lte: 1.0,
3147
+ # eq: 1.0,
3148
+ # },
3149
+ # ],
3150
+ # finding_provider_fields_criticality: [
3151
+ # {
3152
+ # gte: 1.0,
3153
+ # lte: 1.0,
3154
+ # eq: 1.0,
3155
+ # },
3156
+ # ],
3157
+ # finding_provider_fields_related_findings_id: [
3158
+ # {
3159
+ # value: "NonEmptyString",
3160
+ # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
3161
+ # },
3162
+ # ],
3163
+ # finding_provider_fields_related_findings_product_arn: [
3164
+ # {
3165
+ # value: "NonEmptyString",
3166
+ # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
3167
+ # },
3168
+ # ],
3169
+ # finding_provider_fields_severity_label: [
3170
+ # {
3171
+ # value: "NonEmptyString",
3172
+ # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
3173
+ # },
3174
+ # ],
3175
+ # finding_provider_fields_severity_original: [
3176
+ # {
3177
+ # value: "NonEmptyString",
3178
+ # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
3179
+ # },
3180
+ # ],
3181
+ # finding_provider_fields_types: [
3182
+ # {
3183
+ # value: "NonEmptyString",
3184
+ # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
3185
+ # },
3186
+ # ],
2992
3187
  # },
2993
3188
  # group_by_attribute: "NonEmptyString", # required
2994
3189
  # })
@@ -4403,6 +4598,50 @@ module Aws::SecurityHub
4403
4598
  # value: "NonEmptyString",
4404
4599
  # },
4405
4600
  # ],
4601
+ # finding_provider_fields_confidence: [
4602
+ # {
4603
+ # gte: 1.0,
4604
+ # lte: 1.0,
4605
+ # eq: 1.0,
4606
+ # },
4607
+ # ],
4608
+ # finding_provider_fields_criticality: [
4609
+ # {
4610
+ # gte: 1.0,
4611
+ # lte: 1.0,
4612
+ # eq: 1.0,
4613
+ # },
4614
+ # ],
4615
+ # finding_provider_fields_related_findings_id: [
4616
+ # {
4617
+ # value: "NonEmptyString",
4618
+ # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
4619
+ # },
4620
+ # ],
4621
+ # finding_provider_fields_related_findings_product_arn: [
4622
+ # {
4623
+ # value: "NonEmptyString",
4624
+ # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
4625
+ # },
4626
+ # ],
4627
+ # finding_provider_fields_severity_label: [
4628
+ # {
4629
+ # value: "NonEmptyString",
4630
+ # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
4631
+ # },
4632
+ # ],
4633
+ # finding_provider_fields_severity_original: [
4634
+ # {
4635
+ # value: "NonEmptyString",
4636
+ # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
4637
+ # },
4638
+ # ],
4639
+ # finding_provider_fields_types: [
4640
+ # {
4641
+ # value: "NonEmptyString",
4642
+ # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
4643
+ # },
4644
+ # ],
4406
4645
  # },
4407
4646
  # sort_criteria: [
4408
4647
  # {
@@ -4507,6 +4746,71 @@ module Aws::SecurityHub
4507
4746
  # resp.findings[0].resources[0].resource_role #=> String
4508
4747
  # resp.findings[0].resources[0].tags #=> Hash
4509
4748
  # resp.findings[0].resources[0].tags["NonEmptyString"] #=> String
4749
+ # resp.findings[0].resources[0].data_classification.detailed_results_location #=> String
4750
+ # resp.findings[0].resources[0].data_classification.result.mime_type #=> String
4751
+ # resp.findings[0].resources[0].data_classification.result.size_classified #=> Integer
4752
+ # resp.findings[0].resources[0].data_classification.result.additional_occurrences #=> Boolean
4753
+ # resp.findings[0].resources[0].data_classification.result.status.code #=> String
4754
+ # resp.findings[0].resources[0].data_classification.result.status.reason #=> String
4755
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data #=> Array
4756
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].category #=> String
4757
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections #=> Array
4758
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].count #=> Integer
4759
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].type #=> String
4760
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.line_ranges #=> Array
4761
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.line_ranges[0].start #=> Integer
4762
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.line_ranges[0].end #=> Integer
4763
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.line_ranges[0].start_column #=> Integer
4764
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.offset_ranges #=> Array
4765
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.offset_ranges[0].start #=> Integer
4766
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.offset_ranges[0].end #=> Integer
4767
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.offset_ranges[0].start_column #=> Integer
4768
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.pages #=> Array
4769
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.pages[0].page_number #=> Integer
4770
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.pages[0].line_range.start #=> Integer
4771
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.pages[0].line_range.end #=> Integer
4772
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.pages[0].line_range.start_column #=> Integer
4773
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.pages[0].offset_range.start #=> Integer
4774
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.pages[0].offset_range.end #=> Integer
4775
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.pages[0].offset_range.start_column #=> Integer
4776
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.records #=> Array
4777
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.records[0].json_path #=> String
4778
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.records[0].record_index #=> Integer
4779
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.cells #=> Array
4780
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.cells[0].column #=> Integer
4781
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.cells[0].row #=> Integer
4782
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.cells[0].column_name #=> String
4783
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].detections[0].occurrences.cells[0].cell_reference #=> String
4784
+ # resp.findings[0].resources[0].data_classification.result.sensitive_data[0].total_count #=> Integer
4785
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections #=> Array
4786
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].count #=> Integer
4787
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].arn #=> String
4788
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].name #=> String
4789
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.line_ranges #=> Array
4790
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.line_ranges[0].start #=> Integer
4791
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.line_ranges[0].end #=> Integer
4792
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.line_ranges[0].start_column #=> Integer
4793
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.offset_ranges #=> Array
4794
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.offset_ranges[0].start #=> Integer
4795
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.offset_ranges[0].end #=> Integer
4796
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.offset_ranges[0].start_column #=> Integer
4797
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.pages #=> Array
4798
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.pages[0].page_number #=> Integer
4799
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.pages[0].line_range.start #=> Integer
4800
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.pages[0].line_range.end #=> Integer
4801
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.pages[0].line_range.start_column #=> Integer
4802
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.pages[0].offset_range.start #=> Integer
4803
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.pages[0].offset_range.end #=> Integer
4804
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.pages[0].offset_range.start_column #=> Integer
4805
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.records #=> Array
4806
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.records[0].json_path #=> String
4807
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.records[0].record_index #=> Integer
4808
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.cells #=> Array
4809
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.cells[0].column #=> Integer
4810
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.cells[0].row #=> Integer
4811
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.cells[0].column_name #=> String
4812
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.detections[0].occurrences.cells[0].cell_reference #=> String
4813
+ # resp.findings[0].resources[0].data_classification.result.custom_data_identifiers.total_count #=> Integer
4510
4814
  # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.launch_configuration_name #=> String
4511
4815
  # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.load_balancer_names #=> Array
4512
4816
  # resp.findings[0].resources[0].details.aws_auto_scaling_auto_scaling_group.load_balancer_names[0] #=> String
@@ -4690,6 +4994,14 @@ module Aws::SecurityHub
4690
4994
  # resp.findings[0].resources[0].details.aws_s3_bucket.server_side_encryption_configuration.rules #=> Array
4691
4995
  # resp.findings[0].resources[0].details.aws_s3_bucket.server_side_encryption_configuration.rules[0].apply_server_side_encryption_by_default.sse_algorithm #=> String
4692
4996
  # resp.findings[0].resources[0].details.aws_s3_bucket.server_side_encryption_configuration.rules[0].apply_server_side_encryption_by_default.kms_master_key_id #=> String
4997
+ # resp.findings[0].resources[0].details.aws_s3_bucket.public_access_block_configuration.block_public_acls #=> Boolean
4998
+ # resp.findings[0].resources[0].details.aws_s3_bucket.public_access_block_configuration.block_public_policy #=> Boolean
4999
+ # resp.findings[0].resources[0].details.aws_s3_bucket.public_access_block_configuration.ignore_public_acls #=> Boolean
5000
+ # resp.findings[0].resources[0].details.aws_s3_bucket.public_access_block_configuration.restrict_public_buckets #=> Boolean
5001
+ # resp.findings[0].resources[0].details.aws_s3_account_public_access_block.block_public_acls #=> Boolean
5002
+ # resp.findings[0].resources[0].details.aws_s3_account_public_access_block.block_public_policy #=> Boolean
5003
+ # resp.findings[0].resources[0].details.aws_s3_account_public_access_block.ignore_public_acls #=> Boolean
5004
+ # resp.findings[0].resources[0].details.aws_s3_account_public_access_block.restrict_public_buckets #=> Boolean
4693
5005
  # resp.findings[0].resources[0].details.aws_s3_object.last_modified #=> String
4694
5006
  # resp.findings[0].resources[0].details.aws_s3_object.etag #=> String
4695
5007
  # resp.findings[0].resources[0].details.aws_s3_object.version_id #=> String
@@ -5536,6 +5848,15 @@ module Aws::SecurityHub
5536
5848
  # resp.findings[0].action.port_probe_action.port_probe_details[0].remote_ip_details.geo_location.lon #=> Float
5537
5849
  # resp.findings[0].action.port_probe_action.port_probe_details[0].remote_ip_details.geo_location.lat #=> Float
5538
5850
  # resp.findings[0].action.port_probe_action.blocked #=> Boolean
5851
+ # resp.findings[0].finding_provider_fields.confidence #=> Integer
5852
+ # resp.findings[0].finding_provider_fields.criticality #=> Integer
5853
+ # resp.findings[0].finding_provider_fields.related_findings #=> Array
5854
+ # resp.findings[0].finding_provider_fields.related_findings[0].product_arn #=> String
5855
+ # resp.findings[0].finding_provider_fields.related_findings[0].id #=> String
5856
+ # resp.findings[0].finding_provider_fields.severity.label #=> String, one of "INFORMATIONAL", "LOW", "MEDIUM", "HIGH", "CRITICAL"
5857
+ # resp.findings[0].finding_provider_fields.severity.original #=> String
5858
+ # resp.findings[0].finding_provider_fields.types #=> Array
5859
+ # resp.findings[0].finding_provider_fields.types[0] #=> String
5539
5860
  # resp.next_token #=> String
5540
5861
  #
5541
5862
  # @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetFindings AWS API Documentation
@@ -5897,6 +6218,29 @@ module Aws::SecurityHub
5897
6218
  # resp.insights[0].filters.note_updated_by[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
5898
6219
  # resp.insights[0].filters.keyword #=> Array
5899
6220
  # resp.insights[0].filters.keyword[0].value #=> String
6221
+ # resp.insights[0].filters.finding_provider_fields_confidence #=> Array
6222
+ # resp.insights[0].filters.finding_provider_fields_confidence[0].gte #=> Float
6223
+ # resp.insights[0].filters.finding_provider_fields_confidence[0].lte #=> Float
6224
+ # resp.insights[0].filters.finding_provider_fields_confidence[0].eq #=> Float
6225
+ # resp.insights[0].filters.finding_provider_fields_criticality #=> Array
6226
+ # resp.insights[0].filters.finding_provider_fields_criticality[0].gte #=> Float
6227
+ # resp.insights[0].filters.finding_provider_fields_criticality[0].lte #=> Float
6228
+ # resp.insights[0].filters.finding_provider_fields_criticality[0].eq #=> Float
6229
+ # resp.insights[0].filters.finding_provider_fields_related_findings_id #=> Array
6230
+ # resp.insights[0].filters.finding_provider_fields_related_findings_id[0].value #=> String
6231
+ # resp.insights[0].filters.finding_provider_fields_related_findings_id[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
6232
+ # resp.insights[0].filters.finding_provider_fields_related_findings_product_arn #=> Array
6233
+ # resp.insights[0].filters.finding_provider_fields_related_findings_product_arn[0].value #=> String
6234
+ # resp.insights[0].filters.finding_provider_fields_related_findings_product_arn[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
6235
+ # resp.insights[0].filters.finding_provider_fields_severity_label #=> Array
6236
+ # resp.insights[0].filters.finding_provider_fields_severity_label[0].value #=> String
6237
+ # resp.insights[0].filters.finding_provider_fields_severity_label[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
6238
+ # resp.insights[0].filters.finding_provider_fields_severity_original #=> Array
6239
+ # resp.insights[0].filters.finding_provider_fields_severity_original[0].value #=> String
6240
+ # resp.insights[0].filters.finding_provider_fields_severity_original[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
6241
+ # resp.insights[0].filters.finding_provider_fields_types #=> Array
6242
+ # resp.insights[0].filters.finding_provider_fields_types[0].value #=> String
6243
+ # resp.insights[0].filters.finding_provider_fields_types[0].comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS", "PREFIX_NOT_EQUALS"
5900
6244
  # resp.insights[0].group_by_attribute #=> String
5901
6245
  # resp.next_token #=> String
5902
6246
  #
@@ -6937,6 +7281,50 @@ module Aws::SecurityHub
6937
7281
  # value: "NonEmptyString",
6938
7282
  # },
6939
7283
  # ],
7284
+ # finding_provider_fields_confidence: [
7285
+ # {
7286
+ # gte: 1.0,
7287
+ # lte: 1.0,
7288
+ # eq: 1.0,
7289
+ # },
7290
+ # ],
7291
+ # finding_provider_fields_criticality: [
7292
+ # {
7293
+ # gte: 1.0,
7294
+ # lte: 1.0,
7295
+ # eq: 1.0,
7296
+ # },
7297
+ # ],
7298
+ # finding_provider_fields_related_findings_id: [
7299
+ # {
7300
+ # value: "NonEmptyString",
7301
+ # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
7302
+ # },
7303
+ # ],
7304
+ # finding_provider_fields_related_findings_product_arn: [
7305
+ # {
7306
+ # value: "NonEmptyString",
7307
+ # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
7308
+ # },
7309
+ # ],
7310
+ # finding_provider_fields_severity_label: [
7311
+ # {
7312
+ # value: "NonEmptyString",
7313
+ # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
7314
+ # },
7315
+ # ],
7316
+ # finding_provider_fields_severity_original: [
7317
+ # {
7318
+ # value: "NonEmptyString",
7319
+ # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
7320
+ # },
7321
+ # ],
7322
+ # finding_provider_fields_types: [
7323
+ # {
7324
+ # value: "NonEmptyString",
7325
+ # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
7326
+ # },
7327
+ # ],
6940
7328
  # },
6941
7329
  # note: {
6942
7330
  # text: "NonEmptyString", # required
@@ -7530,6 +7918,50 @@ module Aws::SecurityHub
7530
7918
  # value: "NonEmptyString",
7531
7919
  # },
7532
7920
  # ],
7921
+ # finding_provider_fields_confidence: [
7922
+ # {
7923
+ # gte: 1.0,
7924
+ # lte: 1.0,
7925
+ # eq: 1.0,
7926
+ # },
7927
+ # ],
7928
+ # finding_provider_fields_criticality: [
7929
+ # {
7930
+ # gte: 1.0,
7931
+ # lte: 1.0,
7932
+ # eq: 1.0,
7933
+ # },
7934
+ # ],
7935
+ # finding_provider_fields_related_findings_id: [
7936
+ # {
7937
+ # value: "NonEmptyString",
7938
+ # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
7939
+ # },
7940
+ # ],
7941
+ # finding_provider_fields_related_findings_product_arn: [
7942
+ # {
7943
+ # value: "NonEmptyString",
7944
+ # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
7945
+ # },
7946
+ # ],
7947
+ # finding_provider_fields_severity_label: [
7948
+ # {
7949
+ # value: "NonEmptyString",
7950
+ # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
7951
+ # },
7952
+ # ],
7953
+ # finding_provider_fields_severity_original: [
7954
+ # {
7955
+ # value: "NonEmptyString",
7956
+ # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
7957
+ # },
7958
+ # ],
7959
+ # finding_provider_fields_types: [
7960
+ # {
7961
+ # value: "NonEmptyString",
7962
+ # comparison: "EQUALS", # accepts EQUALS, PREFIX, NOT_EQUALS, PREFIX_NOT_EQUALS
7963
+ # },
7964
+ # ],
7533
7965
  # },
7534
7966
  # group_by_attribute: "NonEmptyString",
7535
7967
  # })
@@ -7645,7 +8077,7 @@ module Aws::SecurityHub
7645
8077
  params: params,
7646
8078
  config: config)
7647
8079
  context[:gem_name] = 'aws-sdk-securityhub'
7648
- context[:gem_version] = '1.41.0'
8080
+ context[:gem_version] = '1.42.0'
7649
8081
  Seahorse::Client::Request.new(handlers, context)
7650
8082
  end
7651
8083