aws-sdk-securityhub 1.78.0 → 1.80.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-securityhub/client.rb +1277 -9
- data/lib/aws-sdk-securityhub/client_api.rb +78 -0
- data/lib/aws-sdk-securityhub/types.rb +332 -16
- data/lib/aws-sdk-securityhub.rb +1 -1
- metadata +2 -2
@@ -329,6 +329,68 @@ module Aws::SecurityHub
|
|
329
329
|
include Aws::Structure
|
330
330
|
end
|
331
331
|
|
332
|
+
# The associations between a route table and one or more subnets or a
|
333
|
+
# gateway.
|
334
|
+
#
|
335
|
+
# @!attribute [rw] association_state
|
336
|
+
# The state of the association between a route table and a subnet or
|
337
|
+
# gateway.
|
338
|
+
# @return [Types::AssociationStateDetails]
|
339
|
+
#
|
340
|
+
# @!attribute [rw] gateway_id
|
341
|
+
# The ID of the internet gateway or virtual private gateway.
|
342
|
+
# @return [String]
|
343
|
+
#
|
344
|
+
# @!attribute [rw] main
|
345
|
+
# Indicates whether this is the main route table.
|
346
|
+
# @return [Boolean]
|
347
|
+
#
|
348
|
+
# @!attribute [rw] route_table_association_id
|
349
|
+
# The ID of the association.
|
350
|
+
# @return [String]
|
351
|
+
#
|
352
|
+
# @!attribute [rw] route_table_id
|
353
|
+
# The ID of the route table.
|
354
|
+
# @return [String]
|
355
|
+
#
|
356
|
+
# @!attribute [rw] subnet_id
|
357
|
+
# The ID of the subnet. A subnet ID is not returned for an implicit
|
358
|
+
# association.
|
359
|
+
# @return [String]
|
360
|
+
#
|
361
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AssociationSetDetails AWS API Documentation
|
362
|
+
#
|
363
|
+
class AssociationSetDetails < Struct.new(
|
364
|
+
:association_state,
|
365
|
+
:gateway_id,
|
366
|
+
:main,
|
367
|
+
:route_table_association_id,
|
368
|
+
:route_table_id,
|
369
|
+
:subnet_id)
|
370
|
+
SENSITIVE = []
|
371
|
+
include Aws::Structure
|
372
|
+
end
|
373
|
+
|
374
|
+
# Describes the state of an association between a route table and a
|
375
|
+
# subnet or gateway.
|
376
|
+
#
|
377
|
+
# @!attribute [rw] state
|
378
|
+
# The state of the association.
|
379
|
+
# @return [String]
|
380
|
+
#
|
381
|
+
# @!attribute [rw] status_message
|
382
|
+
# The status message, if applicable.
|
383
|
+
# @return [String]
|
384
|
+
#
|
385
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AssociationStateDetails AWS API Documentation
|
386
|
+
#
|
387
|
+
class AssociationStateDetails < Struct.new(
|
388
|
+
:state,
|
389
|
+
:status_message)
|
390
|
+
SENSITIVE = []
|
391
|
+
include Aws::Structure
|
392
|
+
end
|
393
|
+
|
332
394
|
# Information about an Availability Zone.
|
333
395
|
#
|
334
396
|
# @!attribute [rw] zone_name
|
@@ -4459,6 +4521,10 @@ module Aws::SecurityHub
|
|
4459
4521
|
# Details about the metadata options for the Amazon EC2 instance.
|
4460
4522
|
# @return [Types::AwsEc2InstanceMetadataOptions]
|
4461
4523
|
#
|
4524
|
+
# @!attribute [rw] monitoring
|
4525
|
+
# Describes the type of monitoring that’s turned on for an instance.
|
4526
|
+
# @return [Types::AwsEc2InstanceMonitoringDetails]
|
4527
|
+
#
|
4462
4528
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsEc2InstanceDetails AWS API Documentation
|
4463
4529
|
#
|
4464
4530
|
class AwsEc2InstanceDetails < Struct.new(
|
@@ -4473,7 +4539,8 @@ module Aws::SecurityHub
|
|
4473
4539
|
:launched_at,
|
4474
4540
|
:network_interfaces,
|
4475
4541
|
:virtualization_type,
|
4476
|
-
:metadata_options
|
4542
|
+
:metadata_options,
|
4543
|
+
:monitoring)
|
4477
4544
|
SENSITIVE = []
|
4478
4545
|
include Aws::Structure
|
4479
4546
|
end
|
@@ -4517,6 +4584,21 @@ module Aws::SecurityHub
|
|
4517
4584
|
include Aws::Structure
|
4518
4585
|
end
|
4519
4586
|
|
4587
|
+
# The type of monitoring that’s turned on for an Amazon EC2 instance.
|
4588
|
+
#
|
4589
|
+
# @!attribute [rw] state
|
4590
|
+
# Indicates whether detailed monitoring is turned on. Otherwise, basic
|
4591
|
+
# monitoring is turned on.
|
4592
|
+
# @return [String]
|
4593
|
+
#
|
4594
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsEc2InstanceMonitoringDetails AWS API Documentation
|
4595
|
+
#
|
4596
|
+
class AwsEc2InstanceMonitoringDetails < Struct.new(
|
4597
|
+
:state)
|
4598
|
+
SENSITIVE = []
|
4599
|
+
include Aws::Structure
|
4600
|
+
end
|
4601
|
+
|
4520
4602
|
# Identifies a network interface for the Amazon EC2 instance.
|
4521
4603
|
#
|
4522
4604
|
# @!attribute [rw] network_interface_id
|
@@ -6075,6 +6157,46 @@ module Aws::SecurityHub
|
|
6075
6157
|
include Aws::Structure
|
6076
6158
|
end
|
6077
6159
|
|
6160
|
+
# Provides details about a route table for the specified VPC.
|
6161
|
+
#
|
6162
|
+
# @!attribute [rw] association_set
|
6163
|
+
# The associations between a route table and one or more subnets or a
|
6164
|
+
# gateway.
|
6165
|
+
# @return [Array<Types::AssociationSetDetails>]
|
6166
|
+
#
|
6167
|
+
# @!attribute [rw] owner_id
|
6168
|
+
# The ID of the Amazon Web Services account that owns the route table.
|
6169
|
+
# @return [String]
|
6170
|
+
#
|
6171
|
+
# @!attribute [rw] propagating_vgw_set
|
6172
|
+
# Describes a virtual private gateway propagating route.
|
6173
|
+
# @return [Array<Types::PropagatingVgwSetDetails>]
|
6174
|
+
#
|
6175
|
+
# @!attribute [rw] route_table_id
|
6176
|
+
# The ID of the route table.
|
6177
|
+
# @return [String]
|
6178
|
+
#
|
6179
|
+
# @!attribute [rw] route_set
|
6180
|
+
# The routes in the route table.
|
6181
|
+
# @return [Array<Types::RouteSetDetails>]
|
6182
|
+
#
|
6183
|
+
# @!attribute [rw] vpc_id
|
6184
|
+
# The ID of the virtual private cloud (VPC).
|
6185
|
+
# @return [String]
|
6186
|
+
#
|
6187
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsEc2RouteTableDetails AWS API Documentation
|
6188
|
+
#
|
6189
|
+
class AwsEc2RouteTableDetails < Struct.new(
|
6190
|
+
:association_set,
|
6191
|
+
:owner_id,
|
6192
|
+
:propagating_vgw_set,
|
6193
|
+
:route_table_id,
|
6194
|
+
:route_set,
|
6195
|
+
:vpc_id)
|
6196
|
+
SENSITIVE = []
|
6197
|
+
include Aws::Structure
|
6198
|
+
end
|
6199
|
+
|
6078
6200
|
# Details about an Amazon EC2 security group.
|
6079
6201
|
#
|
6080
6202
|
# @!attribute [rw] group_name
|
@@ -8091,15 +8213,15 @@ module Aws::SecurityHub
|
|
8091
8213
|
#
|
8092
8214
|
# * ` user `
|
8093
8215
|
#
|
8094
|
-
# * ` user
|
8216
|
+
# * ` user `:` group `
|
8095
8217
|
#
|
8096
8218
|
# * ` uid `
|
8097
8219
|
#
|
8098
|
-
# * ` uid
|
8220
|
+
# * ` uid `:` gid `
|
8099
8221
|
#
|
8100
|
-
# * ` user
|
8222
|
+
# * ` user `:` gid `
|
8101
8223
|
#
|
8102
|
-
# * ` uid
|
8224
|
+
# * ` uid `:` group `
|
8103
8225
|
# @return [String]
|
8104
8226
|
#
|
8105
8227
|
# @!attribute [rw] volumes_from
|
@@ -9426,11 +9548,19 @@ module Aws::SecurityHub
|
|
9426
9548
|
# The subnets that are associated with the cluster.
|
9427
9549
|
# @return [Array<String>]
|
9428
9550
|
#
|
9551
|
+
# @!attribute [rw] endpoint_public_access
|
9552
|
+
# Indicates whether the Amazon EKS public API server endpoint is
|
9553
|
+
# turned on. If the Amazon EKS public API server endpoint is turned
|
9554
|
+
# off, your cluster's Kubernetes API server can only receive requests
|
9555
|
+
# that originate from within the cluster VPC.
|
9556
|
+
# @return [Boolean]
|
9557
|
+
#
|
9429
9558
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsEksClusterResourcesVpcConfigDetails AWS API Documentation
|
9430
9559
|
#
|
9431
9560
|
class AwsEksClusterResourcesVpcConfigDetails < Struct.new(
|
9432
9561
|
:security_group_ids,
|
9433
|
-
:subnet_ids
|
9562
|
+
:subnet_ids,
|
9563
|
+
:endpoint_public_access)
|
9434
9564
|
SENSITIVE = []
|
9435
9565
|
include Aws::Structure
|
9436
9566
|
end
|
@@ -15108,6 +15238,11 @@ module Aws::SecurityHub
|
|
15108
15238
|
# The versioning state of an S3 bucket.
|
15109
15239
|
# @return [Types::AwsS3BucketBucketVersioningConfiguration]
|
15110
15240
|
#
|
15241
|
+
# @!attribute [rw] object_lock_configuration
|
15242
|
+
# Specifies which rule Amazon S3 applies by default to every new
|
15243
|
+
# object placed in the specified bucket.
|
15244
|
+
# @return [Types::AwsS3BucketObjectLockConfiguration]
|
15245
|
+
#
|
15111
15246
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsS3BucketDetails AWS API Documentation
|
15112
15247
|
#
|
15113
15248
|
class AwsS3BucketDetails < Struct.new(
|
@@ -15122,7 +15257,8 @@ module Aws::SecurityHub
|
|
15122
15257
|
:bucket_logging_configuration,
|
15123
15258
|
:bucket_website_configuration,
|
15124
15259
|
:bucket_notification_configuration,
|
15125
|
-
:bucket_versioning_configuration
|
15260
|
+
:bucket_versioning_configuration,
|
15261
|
+
:object_lock_configuration)
|
15126
15262
|
SENSITIVE = []
|
15127
15263
|
include Aws::Structure
|
15128
15264
|
end
|
@@ -15248,6 +15384,73 @@ module Aws::SecurityHub
|
|
15248
15384
|
include Aws::Structure
|
15249
15385
|
end
|
15250
15386
|
|
15387
|
+
# The container element for S3 Object Lock configuration parameters. In
|
15388
|
+
# Amazon S3, Object Lock can help prevent objects from being deleted or
|
15389
|
+
# overwritten for a fixed amount of time or indefinitely.
|
15390
|
+
#
|
15391
|
+
# @!attribute [rw] object_lock_enabled
|
15392
|
+
# Indicates whether the bucket has an Object Lock configuration
|
15393
|
+
# enabled.
|
15394
|
+
# @return [String]
|
15395
|
+
#
|
15396
|
+
# @!attribute [rw] rule
|
15397
|
+
# Specifies the Object Lock rule for the specified object.
|
15398
|
+
# @return [Types::AwsS3BucketObjectLockConfigurationRuleDetails]
|
15399
|
+
#
|
15400
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsS3BucketObjectLockConfiguration AWS API Documentation
|
15401
|
+
#
|
15402
|
+
class AwsS3BucketObjectLockConfiguration < Struct.new(
|
15403
|
+
:object_lock_enabled,
|
15404
|
+
:rule)
|
15405
|
+
SENSITIVE = []
|
15406
|
+
include Aws::Structure
|
15407
|
+
end
|
15408
|
+
|
15409
|
+
# The default S3 Object Lock retention mode and period that you want to
|
15410
|
+
# apply to new objects placed in the specified Amazon S3 bucket.
|
15411
|
+
#
|
15412
|
+
# @!attribute [rw] days
|
15413
|
+
# The number of days that you want to specify for the default
|
15414
|
+
# retention period.
|
15415
|
+
# @return [Integer]
|
15416
|
+
#
|
15417
|
+
# @!attribute [rw] mode
|
15418
|
+
# The default Object Lock retention mode you want to apply to new
|
15419
|
+
# objects placed in the specified bucket.
|
15420
|
+
# @return [String]
|
15421
|
+
#
|
15422
|
+
# @!attribute [rw] years
|
15423
|
+
# The number of years that you want to specify for the default
|
15424
|
+
# retention period.
|
15425
|
+
# @return [Integer]
|
15426
|
+
#
|
15427
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsS3BucketObjectLockConfigurationRuleDefaultRetentionDetails AWS API Documentation
|
15428
|
+
#
|
15429
|
+
class AwsS3BucketObjectLockConfigurationRuleDefaultRetentionDetails < Struct.new(
|
15430
|
+
:days,
|
15431
|
+
:mode,
|
15432
|
+
:years)
|
15433
|
+
SENSITIVE = []
|
15434
|
+
include Aws::Structure
|
15435
|
+
end
|
15436
|
+
|
15437
|
+
# Specifies the S3 Object Lock rule for the specified object. In Amazon
|
15438
|
+
# S3, Object Lock can help prevent objects from being deleted or
|
15439
|
+
# overwritten for a fixed amount of time or indefinitely.
|
15440
|
+
#
|
15441
|
+
# @!attribute [rw] default_retention
|
15442
|
+
# The default Object Lock retention mode and period that you want to
|
15443
|
+
# apply to new objects placed in the specified bucket.
|
15444
|
+
# @return [Types::AwsS3BucketObjectLockConfigurationRuleDefaultRetentionDetails]
|
15445
|
+
#
|
15446
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsS3BucketObjectLockConfigurationRuleDetails AWS API Documentation
|
15447
|
+
#
|
15448
|
+
class AwsS3BucketObjectLockConfigurationRuleDetails < Struct.new(
|
15449
|
+
:default_retention)
|
15450
|
+
SENSITIVE = []
|
15451
|
+
include Aws::Structure
|
15452
|
+
end
|
15453
|
+
|
15251
15454
|
# Specifies the default server-side encryption to apply to new objects
|
15252
15455
|
# in the bucket.
|
15253
15456
|
#
|
@@ -16296,7 +16499,8 @@ module Aws::SecurityHub
|
|
16296
16499
|
# @return [Array<Types::NumberFilter>]
|
16297
16500
|
#
|
16298
16501
|
# @!attribute [rw] process_parent_pid
|
16299
|
-
# The parent process ID.
|
16502
|
+
# The parent process ID. This field accepts positive integers between
|
16503
|
+
# `O` and `2147483647`.
|
16300
16504
|
# @return [Array<Types::NumberFilter>]
|
16301
16505
|
#
|
16302
16506
|
# @!attribute [rw] process_launched_at
|
@@ -16505,7 +16709,7 @@ module Aws::SecurityHub
|
|
16505
16709
|
# owner.
|
16506
16710
|
#
|
16507
16711
|
# If one of the following occurs, the workflow status is changed
|
16508
|
-
# automatically from `NOTIFIED` to `NEW
|
16712
|
+
# automatically from `NOTIFIED` to `NEW`:
|
16509
16713
|
#
|
16510
16714
|
# * `RecordState` changes from `ARCHIVED` to `ACTIVE`.
|
16511
16715
|
#
|
@@ -19195,8 +19399,8 @@ module Aws::SecurityHub
|
|
19195
19399
|
end
|
19196
19400
|
|
19197
19401
|
# @!attribute [rw] account_ids
|
19198
|
-
# The list of account IDs for
|
19199
|
-
#
|
19402
|
+
# The list of prospective member account IDs for which to decline an
|
19403
|
+
# invitation.
|
19200
19404
|
# @return [Array<String>]
|
19201
19405
|
#
|
19202
19406
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DeclineInvitationsRequest AWS API Documentation
|
@@ -19288,7 +19492,8 @@ module Aws::SecurityHub
|
|
19288
19492
|
end
|
19289
19493
|
|
19290
19494
|
# @!attribute [rw] account_ids
|
19291
|
-
# The list of
|
19495
|
+
# The list of member account IDs that received the invitations you
|
19496
|
+
# want to delete.
|
19292
19497
|
# @return [Array<String>]
|
19293
19498
|
#
|
19294
19499
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DeleteInvitationsRequest AWS API Documentation
|
@@ -19430,7 +19635,7 @@ module Aws::SecurityHub
|
|
19430
19635
|
# The value for this field in a member account matches the value in
|
19431
19636
|
# the administrator account. For accounts that aren't part of an
|
19432
19637
|
# organization, the default value of this field is `SECURITY_CONTROL`
|
19433
|
-
# if you enabled Security Hub on or after February
|
19638
|
+
# if you enabled Security Hub on or after February 23, 2023.
|
19434
19639
|
# @return [String]
|
19435
19640
|
#
|
19436
19641
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DescribeHubResponse AWS API Documentation
|
@@ -19794,7 +19999,7 @@ module Aws::SecurityHub
|
|
19794
19999
|
# The value for this field in a member account matches the value in
|
19795
20000
|
# the administrator account. For accounts that aren't part of an
|
19796
20001
|
# organization, the default value of this field is `SECURITY_CONTROL`
|
19797
|
-
# if you enabled Security Hub on or after February
|
20002
|
+
# if you enabled Security Hub on or after February 23, 2023.
|
19798
20003
|
# @return [String]
|
19799
20004
|
#
|
19800
20005
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/EnableSecurityHubRequest AWS API Documentation
|
@@ -21753,7 +21958,8 @@ module Aws::SecurityHub
|
|
21753
21958
|
# @return [Integer]
|
21754
21959
|
#
|
21755
21960
|
# @!attribute [rw] parent_pid
|
21756
|
-
# The parent process ID.
|
21961
|
+
# The parent process ID. This field accepts positive integers between
|
21962
|
+
# `O` and `2147483647`.
|
21757
21963
|
# @return [Integer]
|
21758
21964
|
#
|
21759
21965
|
# @!attribute [rw] launched_at
|
@@ -21866,6 +22072,20 @@ module Aws::SecurityHub
|
|
21866
22072
|
include Aws::Structure
|
21867
22073
|
end
|
21868
22074
|
|
22075
|
+
# Describes a virtual private gateway propagating route.
|
22076
|
+
#
|
22077
|
+
# @!attribute [rw] gateway_id
|
22078
|
+
# The ID of the virtual private gateway.
|
22079
|
+
# @return [String]
|
22080
|
+
#
|
22081
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/PropagatingVgwSetDetails AWS API Documentation
|
22082
|
+
#
|
22083
|
+
class PropagatingVgwSetDetails < Struct.new(
|
22084
|
+
:gateway_id)
|
22085
|
+
SENSITIVE = []
|
22086
|
+
include Aws::Structure
|
22087
|
+
end
|
22088
|
+
|
21869
22089
|
# Identifies where the sensitive data begins and ends.
|
21870
22090
|
#
|
21871
22091
|
# @!attribute [rw] start
|
@@ -22425,6 +22645,12 @@ module Aws::SecurityHub
|
|
22425
22645
|
# Details about an WAFv2 rule group.
|
22426
22646
|
# @return [Types::AwsWafv2RuleGroupDetails]
|
22427
22647
|
#
|
22648
|
+
# @!attribute [rw] aws_ec2_route_table
|
22649
|
+
# Provides details about a route table. A route table contains a set
|
22650
|
+
# of rules, called routes, that determine where to direct network
|
22651
|
+
# traffic from your subnet or gateway.
|
22652
|
+
# @return [Types::AwsEc2RouteTableDetails]
|
22653
|
+
#
|
22428
22654
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ResourceDetails AWS API Documentation
|
22429
22655
|
#
|
22430
22656
|
class ResourceDetails < Struct.new(
|
@@ -22510,7 +22736,8 @@ module Aws::SecurityHub
|
|
22510
22736
|
:aws_ec2_launch_template,
|
22511
22737
|
:aws_sage_maker_notebook_instance,
|
22512
22738
|
:aws_wafv_2_web_acl,
|
22513
|
-
:aws_wafv_2_rule_group
|
22739
|
+
:aws_wafv_2_rule_group,
|
22740
|
+
:aws_ec2_route_table)
|
22514
22741
|
SENSITIVE = []
|
22515
22742
|
include Aws::Structure
|
22516
22743
|
end
|
@@ -22553,6 +22780,95 @@ module Aws::SecurityHub
|
|
22553
22780
|
include Aws::Structure
|
22554
22781
|
end
|
22555
22782
|
|
22783
|
+
# Provides details about the routes in the route table.
|
22784
|
+
#
|
22785
|
+
# @!attribute [rw] carrier_gateway_id
|
22786
|
+
# The ID of the carrier gateway.
|
22787
|
+
# @return [String]
|
22788
|
+
#
|
22789
|
+
# @!attribute [rw] core_network_arn
|
22790
|
+
# The Amazon Resource Name (ARN) of the core network.
|
22791
|
+
# @return [String]
|
22792
|
+
#
|
22793
|
+
# @!attribute [rw] destination_cidr_block
|
22794
|
+
# The IPv4 CIDR block used for the destination match.
|
22795
|
+
# @return [String]
|
22796
|
+
#
|
22797
|
+
# @!attribute [rw] destination_ipv_6_cidr_block
|
22798
|
+
# The IPv6 CIDR block used for the destination match.
|
22799
|
+
# @return [String]
|
22800
|
+
#
|
22801
|
+
# @!attribute [rw] destination_prefix_list_id
|
22802
|
+
# The prefix of the destination Amazon Web Service.
|
22803
|
+
# @return [String]
|
22804
|
+
#
|
22805
|
+
# @!attribute [rw] egress_only_internet_gateway_id
|
22806
|
+
# The ID of the egress-only internet gateway.
|
22807
|
+
# @return [String]
|
22808
|
+
#
|
22809
|
+
# @!attribute [rw] gateway_id
|
22810
|
+
# The ID of a gateway attached to your VPC.
|
22811
|
+
# @return [String]
|
22812
|
+
#
|
22813
|
+
# @!attribute [rw] instance_id
|
22814
|
+
# The ID of a NAT instance in your VPC.
|
22815
|
+
# @return [String]
|
22816
|
+
#
|
22817
|
+
# @!attribute [rw] instance_owner_id
|
22818
|
+
# The ID of the Amazon Web Services account that owns the instance.
|
22819
|
+
# @return [String]
|
22820
|
+
#
|
22821
|
+
# @!attribute [rw] local_gateway_id
|
22822
|
+
# The ID of the local gateway.
|
22823
|
+
# @return [String]
|
22824
|
+
#
|
22825
|
+
# @!attribute [rw] nat_gateway_id
|
22826
|
+
# The ID of a NAT gateway.
|
22827
|
+
# @return [String]
|
22828
|
+
#
|
22829
|
+
# @!attribute [rw] network_interface_id
|
22830
|
+
# The ID of the network interface.
|
22831
|
+
# @return [String]
|
22832
|
+
#
|
22833
|
+
# @!attribute [rw] origin
|
22834
|
+
# Describes how the route was created.
|
22835
|
+
# @return [String]
|
22836
|
+
#
|
22837
|
+
# @!attribute [rw] state
|
22838
|
+
# The state of the route.
|
22839
|
+
# @return [String]
|
22840
|
+
#
|
22841
|
+
# @!attribute [rw] transit_gateway_id
|
22842
|
+
# The ID of a transit gateway.
|
22843
|
+
# @return [String]
|
22844
|
+
#
|
22845
|
+
# @!attribute [rw] vpc_peering_connection_id
|
22846
|
+
# The ID of a VPC peering connection.
|
22847
|
+
# @return [String]
|
22848
|
+
#
|
22849
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/RouteSetDetails AWS API Documentation
|
22850
|
+
#
|
22851
|
+
class RouteSetDetails < Struct.new(
|
22852
|
+
:carrier_gateway_id,
|
22853
|
+
:core_network_arn,
|
22854
|
+
:destination_cidr_block,
|
22855
|
+
:destination_ipv_6_cidr_block,
|
22856
|
+
:destination_prefix_list_id,
|
22857
|
+
:egress_only_internet_gateway_id,
|
22858
|
+
:gateway_id,
|
22859
|
+
:instance_id,
|
22860
|
+
:instance_owner_id,
|
22861
|
+
:local_gateway_id,
|
22862
|
+
:nat_gateway_id,
|
22863
|
+
:network_interface_id,
|
22864
|
+
:origin,
|
22865
|
+
:state,
|
22866
|
+
:transit_gateway_id,
|
22867
|
+
:vpc_peering_connection_id)
|
22868
|
+
SENSITIVE = []
|
22869
|
+
include Aws::Structure
|
22870
|
+
end
|
22871
|
+
|
22556
22872
|
# Details about the rule group.
|
22557
22873
|
#
|
22558
22874
|
# @!attribute [rw] rule_variables
|
data/lib/aws-sdk-securityhub.rb
CHANGED
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.
|
4
|
+
version: 1.80.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-04-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|