aws-sdk-securityhub 1.93.0 → 1.95.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-securityhub/client.rb +1 -1
- data/lib/aws-sdk-securityhub/client_api.rb +207 -0
- data/lib/aws-sdk-securityhub/types.rb +916 -3
- data/lib/aws-sdk-securityhub.rb +1 -1
- metadata +5 -5
@@ -5104,6 +5104,297 @@ module Aws::SecurityHub
|
|
5104
5104
|
include Aws::Structure
|
5105
5105
|
end
|
5106
5106
|
|
5107
|
+
# Provides details about an Database Migration Service (DMS) endpoint.
|
5108
|
+
# An endpoint provides connection, data store type, and location
|
5109
|
+
# information about your data store.
|
5110
|
+
#
|
5111
|
+
# @!attribute [rw] certificate_arn
|
5112
|
+
# The Amazon Resource Name (ARN) for the SSL certificate that encrypts
|
5113
|
+
# connections between the DMS endpoint and the replication instance.
|
5114
|
+
# @return [String]
|
5115
|
+
#
|
5116
|
+
# @!attribute [rw] database_name
|
5117
|
+
# The name of the endpoint database.
|
5118
|
+
# @return [String]
|
5119
|
+
#
|
5120
|
+
# @!attribute [rw] endpoint_arn
|
5121
|
+
# The Amazon Resource Name (ARN) of the endpoint.
|
5122
|
+
# @return [String]
|
5123
|
+
#
|
5124
|
+
# @!attribute [rw] endpoint_identifier
|
5125
|
+
# The database endpoint identifier.
|
5126
|
+
# @return [String]
|
5127
|
+
#
|
5128
|
+
# @!attribute [rw] endpoint_type
|
5129
|
+
# The type of endpoint. Valid values are source and target.
|
5130
|
+
# @return [String]
|
5131
|
+
#
|
5132
|
+
# @!attribute [rw] engine_name
|
5133
|
+
# The type of engine for the endpoint, depending on the `EndpointType`
|
5134
|
+
# value.
|
5135
|
+
# @return [String]
|
5136
|
+
#
|
5137
|
+
# @!attribute [rw] external_id
|
5138
|
+
# A value that can be used for cross-account validation.
|
5139
|
+
# @return [String]
|
5140
|
+
#
|
5141
|
+
# @!attribute [rw] extra_connection_attributes
|
5142
|
+
# Additional attributes associated with the connection.
|
5143
|
+
# @return [String]
|
5144
|
+
#
|
5145
|
+
# @!attribute [rw] kms_key_id
|
5146
|
+
# An DMS key identifier that is used to encrypt the connection
|
5147
|
+
# parameters for the endpoint. If you don't specify a value for the
|
5148
|
+
# `KmsKeyId` parameter, then DMS uses your default encryption key. KMS
|
5149
|
+
# creates the default encryption key for your Amazon Web Services
|
5150
|
+
# account. Your Amazon Web Services account has a different default
|
5151
|
+
# encryption key for each Amazon Web Services Region.
|
5152
|
+
# @return [String]
|
5153
|
+
#
|
5154
|
+
# @!attribute [rw] port
|
5155
|
+
# The port used to access the endpoint.
|
5156
|
+
# @return [Integer]
|
5157
|
+
#
|
5158
|
+
# @!attribute [rw] server_name
|
5159
|
+
# The name of the server where the endpoint database resides.
|
5160
|
+
# @return [String]
|
5161
|
+
#
|
5162
|
+
# @!attribute [rw] ssl_mode
|
5163
|
+
# The SSL mode used to connect to the endpoint. The default is none.
|
5164
|
+
# @return [String]
|
5165
|
+
#
|
5166
|
+
# @!attribute [rw] username
|
5167
|
+
# The user name to be used to log in to the endpoint database.
|
5168
|
+
# @return [String]
|
5169
|
+
#
|
5170
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsDmsEndpointDetails AWS API Documentation
|
5171
|
+
#
|
5172
|
+
class AwsDmsEndpointDetails < Struct.new(
|
5173
|
+
:certificate_arn,
|
5174
|
+
:database_name,
|
5175
|
+
:endpoint_arn,
|
5176
|
+
:endpoint_identifier,
|
5177
|
+
:endpoint_type,
|
5178
|
+
:engine_name,
|
5179
|
+
:external_id,
|
5180
|
+
:extra_connection_attributes,
|
5181
|
+
:kms_key_id,
|
5182
|
+
:port,
|
5183
|
+
:server_name,
|
5184
|
+
:ssl_mode,
|
5185
|
+
:username)
|
5186
|
+
SENSITIVE = []
|
5187
|
+
include Aws::Structure
|
5188
|
+
end
|
5189
|
+
|
5190
|
+
# Provides details about an Database Migration Service (DMS) replication
|
5191
|
+
# instance. DMS uses a replication instance to connect to your source
|
5192
|
+
# data store, read the source data, and format the data for consumption
|
5193
|
+
# by the target data store.
|
5194
|
+
#
|
5195
|
+
# @!attribute [rw] allocated_storage
|
5196
|
+
# The amount of storage (in gigabytes) that is allocated for the
|
5197
|
+
# replication instance.
|
5198
|
+
# @return [Integer]
|
5199
|
+
#
|
5200
|
+
# @!attribute [rw] auto_minor_version_upgrade
|
5201
|
+
# Indicates whether minor engine upgrades are applied automatically to
|
5202
|
+
# the replication instance during the maintenance window.
|
5203
|
+
# @return [Boolean]
|
5204
|
+
#
|
5205
|
+
# @!attribute [rw] availability_zone
|
5206
|
+
# The Availability Zone that the replication instance is created in.
|
5207
|
+
# The default value is a random, system-chosen Availability Zone in
|
5208
|
+
# the endpoint's Amazon Web Services Region, such as `us-east-1d`.
|
5209
|
+
# @return [String]
|
5210
|
+
#
|
5211
|
+
# @!attribute [rw] engine_version
|
5212
|
+
# The engine version number of the replication instance. If an engine
|
5213
|
+
# version number is not specified when a replication instance is
|
5214
|
+
# created, the default is the latest engine version available.
|
5215
|
+
# @return [String]
|
5216
|
+
#
|
5217
|
+
# @!attribute [rw] kms_key_id
|
5218
|
+
# An KMS key identifier that is used to encrypt the data on the
|
5219
|
+
# replication instance. If you don't specify a value for the
|
5220
|
+
# `KmsKeyId` parameter, DMS uses your default encryption key. KMS
|
5221
|
+
# creates the default encryption key for your Amazon Web Services
|
5222
|
+
# account. Your Amazon Web Services account has a different default
|
5223
|
+
# encryption key for each Amazon Web Services Region.
|
5224
|
+
# @return [String]
|
5225
|
+
#
|
5226
|
+
# @!attribute [rw] multi_az
|
5227
|
+
# Specifies whether the replication instance is deployed across
|
5228
|
+
# multiple Availability Zones (AZs). You can't set the
|
5229
|
+
# `AvailabilityZone` parameter if the `MultiAZ` parameter is set to
|
5230
|
+
# `true`.
|
5231
|
+
# @return [Boolean]
|
5232
|
+
#
|
5233
|
+
# @!attribute [rw] preferred_maintenance_window
|
5234
|
+
# The maintenance window times for the replication instance. Upgrades
|
5235
|
+
# to the replication instance are performed during this time.
|
5236
|
+
# @return [String]
|
5237
|
+
#
|
5238
|
+
# @!attribute [rw] publicly_accessible
|
5239
|
+
# Specifies the accessibility options for the replication instance. A
|
5240
|
+
# value of `true` represents an instance with a public IP address. A
|
5241
|
+
# value of `false` represents an instance with a private IP address.
|
5242
|
+
# The default value is `true`.
|
5243
|
+
# @return [Boolean]
|
5244
|
+
#
|
5245
|
+
# @!attribute [rw] replication_instance_class
|
5246
|
+
# The compute and memory capacity of the replication instance as
|
5247
|
+
# defined for the specified replication instance class.
|
5248
|
+
# @return [String]
|
5249
|
+
#
|
5250
|
+
# @!attribute [rw] replication_instance_identifier
|
5251
|
+
# The replication instance identifier.
|
5252
|
+
# @return [String]
|
5253
|
+
#
|
5254
|
+
# @!attribute [rw] replication_subnet_group
|
5255
|
+
# The subnet group for the replication instance.
|
5256
|
+
# @return [Types::AwsDmsReplicationInstanceReplicationSubnetGroupDetails]
|
5257
|
+
#
|
5258
|
+
# @!attribute [rw] vpc_security_groups
|
5259
|
+
# The virtual private cloud (VPC) security group for the replication
|
5260
|
+
# instance.
|
5261
|
+
# @return [Array<Types::AwsDmsReplicationInstanceVpcSecurityGroupsDetails>]
|
5262
|
+
#
|
5263
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsDmsReplicationInstanceDetails AWS API Documentation
|
5264
|
+
#
|
5265
|
+
class AwsDmsReplicationInstanceDetails < Struct.new(
|
5266
|
+
:allocated_storage,
|
5267
|
+
:auto_minor_version_upgrade,
|
5268
|
+
:availability_zone,
|
5269
|
+
:engine_version,
|
5270
|
+
:kms_key_id,
|
5271
|
+
:multi_az,
|
5272
|
+
:preferred_maintenance_window,
|
5273
|
+
:publicly_accessible,
|
5274
|
+
:replication_instance_class,
|
5275
|
+
:replication_instance_identifier,
|
5276
|
+
:replication_subnet_group,
|
5277
|
+
:vpc_security_groups)
|
5278
|
+
SENSITIVE = []
|
5279
|
+
include Aws::Structure
|
5280
|
+
end
|
5281
|
+
|
5282
|
+
# Provides details about the replication subnet group.
|
5283
|
+
#
|
5284
|
+
# @!attribute [rw] replication_subnet_group_identifier
|
5285
|
+
# The identifier of the replication subnet group.
|
5286
|
+
# @return [String]
|
5287
|
+
#
|
5288
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsDmsReplicationInstanceReplicationSubnetGroupDetails AWS API Documentation
|
5289
|
+
#
|
5290
|
+
class AwsDmsReplicationInstanceReplicationSubnetGroupDetails < Struct.new(
|
5291
|
+
:replication_subnet_group_identifier)
|
5292
|
+
SENSITIVE = []
|
5293
|
+
include Aws::Structure
|
5294
|
+
end
|
5295
|
+
|
5296
|
+
# Provides details about the virtual private cloud (VPC) security group
|
5297
|
+
# that’s associated with the replication instance.
|
5298
|
+
#
|
5299
|
+
# @!attribute [rw] vpc_security_group_id
|
5300
|
+
# The identifier of the VPC security group that’s associated with the
|
5301
|
+
# replication instance.
|
5302
|
+
# @return [String]
|
5303
|
+
#
|
5304
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsDmsReplicationInstanceVpcSecurityGroupsDetails AWS API Documentation
|
5305
|
+
#
|
5306
|
+
class AwsDmsReplicationInstanceVpcSecurityGroupsDetails < Struct.new(
|
5307
|
+
:vpc_security_group_id)
|
5308
|
+
SENSITIVE = []
|
5309
|
+
include Aws::Structure
|
5310
|
+
end
|
5311
|
+
|
5312
|
+
# Provides details about an Database Migration Service (DMS) replication
|
5313
|
+
# task. A replication task moves a set of data from the source endpoint
|
5314
|
+
# to the target endpoint.
|
5315
|
+
#
|
5316
|
+
# @!attribute [rw] cdc_start_position
|
5317
|
+
# Indicates when you want a change data capture (CDC) operation to
|
5318
|
+
# start. `CCdcStartPosition` or `CCdcStartTime` specifies when you
|
5319
|
+
# want a CDC operation to start. Only a value for one of these fields
|
5320
|
+
# is included.
|
5321
|
+
# @return [String]
|
5322
|
+
#
|
5323
|
+
# @!attribute [rw] cdc_start_time
|
5324
|
+
# Indicates the start time for a CDC operation. `CdcStartPosition` or
|
5325
|
+
# `CCdcStartTime` specifies when you want a CDC operation to start.
|
5326
|
+
# Only a value for one of these fields is included.
|
5327
|
+
# @return [String]
|
5328
|
+
#
|
5329
|
+
# @!attribute [rw] cdc_stop_position
|
5330
|
+
# Indicates when you want a CDC operation to stop. The value can be
|
5331
|
+
# either server time or commit time.
|
5332
|
+
# @return [String]
|
5333
|
+
#
|
5334
|
+
# @!attribute [rw] migration_type
|
5335
|
+
# The migration type.
|
5336
|
+
# @return [String]
|
5337
|
+
#
|
5338
|
+
# @!attribute [rw] id
|
5339
|
+
# The identifier of the replication task.
|
5340
|
+
# @return [String]
|
5341
|
+
#
|
5342
|
+
# @!attribute [rw] resource_identifier
|
5343
|
+
# A display name for the resource identifier at the end of the
|
5344
|
+
# `EndpointArn` response parameter. If you don't specify a
|
5345
|
+
# `ResourceIdentifier` value, DMS generates a default identifier value
|
5346
|
+
# for the end of `EndpointArn`.
|
5347
|
+
# @return [String]
|
5348
|
+
#
|
5349
|
+
# @!attribute [rw] replication_instance_arn
|
5350
|
+
# The Amazon Resource Name (ARN) of a replication instance.
|
5351
|
+
# @return [String]
|
5352
|
+
#
|
5353
|
+
# @!attribute [rw] replication_task_identifier
|
5354
|
+
# The user-defined replication task identifier or name.
|
5355
|
+
# @return [String]
|
5356
|
+
#
|
5357
|
+
# @!attribute [rw] replication_task_settings
|
5358
|
+
# The settings for the replication task.
|
5359
|
+
# @return [String]
|
5360
|
+
#
|
5361
|
+
# @!attribute [rw] source_endpoint_arn
|
5362
|
+
# The ARN of the source endpoint.
|
5363
|
+
# @return [String]
|
5364
|
+
#
|
5365
|
+
# @!attribute [rw] table_mappings
|
5366
|
+
# The table mappings for the replication task, in JSON format.
|
5367
|
+
# @return [String]
|
5368
|
+
#
|
5369
|
+
# @!attribute [rw] target_endpoint_arn
|
5370
|
+
# The ARN of the target endpoint.
|
5371
|
+
# @return [String]
|
5372
|
+
#
|
5373
|
+
# @!attribute [rw] task_data
|
5374
|
+
# Supplemental information that the task requires to migrate the data
|
5375
|
+
# for certain source and target endpoints.
|
5376
|
+
# @return [String]
|
5377
|
+
#
|
5378
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsDmsReplicationTaskDetails AWS API Documentation
|
5379
|
+
#
|
5380
|
+
class AwsDmsReplicationTaskDetails < Struct.new(
|
5381
|
+
:cdc_start_position,
|
5382
|
+
:cdc_start_time,
|
5383
|
+
:cdc_stop_position,
|
5384
|
+
:migration_type,
|
5385
|
+
:id,
|
5386
|
+
:resource_identifier,
|
5387
|
+
:replication_instance_arn,
|
5388
|
+
:replication_task_identifier,
|
5389
|
+
:replication_task_settings,
|
5390
|
+
:source_endpoint_arn,
|
5391
|
+
:table_mappings,
|
5392
|
+
:target_endpoint_arn,
|
5393
|
+
:task_data)
|
5394
|
+
SENSITIVE = []
|
5395
|
+
include Aws::Structure
|
5396
|
+
end
|
5397
|
+
|
5107
5398
|
# Contains a definition of an attribute for the table.
|
5108
5399
|
#
|
5109
5400
|
# @!attribute [rw] attribute_name
|
@@ -10222,6 +10513,10 @@ module Aws::SecurityHub
|
|
10222
10513
|
# The data volume definitions for the task.
|
10223
10514
|
# @return [Array<Types::AwsEcsTaskDefinitionVolumesDetails>]
|
10224
10515
|
#
|
10516
|
+
# @!attribute [rw] status
|
10517
|
+
# The status of the task definition.
|
10518
|
+
# @return [String]
|
10519
|
+
#
|
10225
10520
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsEcsTaskDefinitionDetails AWS API Documentation
|
10226
10521
|
#
|
10227
10522
|
class AwsEcsTaskDefinitionDetails < Struct.new(
|
@@ -10238,7 +10533,8 @@ module Aws::SecurityHub
|
|
10238
10533
|
:proxy_configuration,
|
10239
10534
|
:requires_compatibilities,
|
10240
10535
|
:task_role_arn,
|
10241
|
-
:volumes
|
10536
|
+
:volumes,
|
10537
|
+
:status)
|
10242
10538
|
SENSITIVE = []
|
10243
10539
|
include Aws::Structure
|
10244
10540
|
end
|
@@ -12027,6 +12323,207 @@ module Aws::SecurityHub
|
|
12027
12323
|
include Aws::Structure
|
12028
12324
|
end
|
12029
12325
|
|
12326
|
+
# Provides details about an Amazon EventBridge global endpoint. The
|
12327
|
+
# endpoint can improve your application’s availability by making it
|
12328
|
+
# Regional-fault tolerant.
|
12329
|
+
#
|
12330
|
+
# @!attribute [rw] arn
|
12331
|
+
# The Amazon Resource Name (ARN) of the endpoint.
|
12332
|
+
# @return [String]
|
12333
|
+
#
|
12334
|
+
# @!attribute [rw] description
|
12335
|
+
# A description of the endpoint.
|
12336
|
+
# @return [String]
|
12337
|
+
#
|
12338
|
+
# @!attribute [rw] endpoint_id
|
12339
|
+
# The URL subdomain of the endpoint. For example, if `EndpointUrl` is
|
12340
|
+
# `https://abcde.veo.endpoints.event.amazonaws.com`, then the
|
12341
|
+
# `EndpointId` is `abcde.veo`.
|
12342
|
+
# @return [String]
|
12343
|
+
#
|
12344
|
+
# @!attribute [rw] endpoint_url
|
12345
|
+
# The URL of the endpoint.
|
12346
|
+
# @return [String]
|
12347
|
+
#
|
12348
|
+
# @!attribute [rw] event_buses
|
12349
|
+
# The event buses being used by the endpoint.
|
12350
|
+
# @return [Array<Types::AwsEventsEndpointEventBusesDetails>]
|
12351
|
+
#
|
12352
|
+
# @!attribute [rw] name
|
12353
|
+
# The name of the endpoint.
|
12354
|
+
# @return [String]
|
12355
|
+
#
|
12356
|
+
# @!attribute [rw] replication_config
|
12357
|
+
# Whether event replication was enabled or disabled for this endpoint.
|
12358
|
+
# The default state is `ENABLED`, which means you must supply a
|
12359
|
+
# `RoleArn`. If you don't have a `RoleArn` or you don't want event
|
12360
|
+
# replication enabled, set the state to `DISABLED`.
|
12361
|
+
# @return [Types::AwsEventsEndpointReplicationConfigDetails]
|
12362
|
+
#
|
12363
|
+
# @!attribute [rw] role_arn
|
12364
|
+
# The ARN of the role used by event replication for the endpoint.
|
12365
|
+
# @return [String]
|
12366
|
+
#
|
12367
|
+
# @!attribute [rw] routing_config
|
12368
|
+
# The routing configuration of the endpoint.
|
12369
|
+
# @return [Types::AwsEventsEndpointRoutingConfigDetails]
|
12370
|
+
#
|
12371
|
+
# @!attribute [rw] state
|
12372
|
+
# The current state of the endpoint.
|
12373
|
+
# @return [String]
|
12374
|
+
#
|
12375
|
+
# @!attribute [rw] state_reason
|
12376
|
+
# The reason the endpoint is in its current state.
|
12377
|
+
# @return [String]
|
12378
|
+
#
|
12379
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsEventsEndpointDetails AWS API Documentation
|
12380
|
+
#
|
12381
|
+
class AwsEventsEndpointDetails < Struct.new(
|
12382
|
+
:arn,
|
12383
|
+
:description,
|
12384
|
+
:endpoint_id,
|
12385
|
+
:endpoint_url,
|
12386
|
+
:event_buses,
|
12387
|
+
:name,
|
12388
|
+
:replication_config,
|
12389
|
+
:role_arn,
|
12390
|
+
:routing_config,
|
12391
|
+
:state,
|
12392
|
+
:state_reason)
|
12393
|
+
SENSITIVE = []
|
12394
|
+
include Aws::Structure
|
12395
|
+
end
|
12396
|
+
|
12397
|
+
# Provides details about the Amazon EventBridge event buses that the
|
12398
|
+
# endpoint is associated with.
|
12399
|
+
#
|
12400
|
+
# @!attribute [rw] event_bus_arn
|
12401
|
+
# The Amazon Resource Name (ARN) of the event bus that the endpoint is
|
12402
|
+
# associated with.
|
12403
|
+
# @return [String]
|
12404
|
+
#
|
12405
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsEventsEndpointEventBusesDetails AWS API Documentation
|
12406
|
+
#
|
12407
|
+
class AwsEventsEndpointEventBusesDetails < Struct.new(
|
12408
|
+
:event_bus_arn)
|
12409
|
+
SENSITIVE = []
|
12410
|
+
include Aws::Structure
|
12411
|
+
end
|
12412
|
+
|
12413
|
+
# Indicates whether replication is enabled or disabled for the endpoint.
|
12414
|
+
# If enabled, the endpoint can replicate all events to a secondary
|
12415
|
+
# Amazon Web Services Region.
|
12416
|
+
#
|
12417
|
+
# @!attribute [rw] state
|
12418
|
+
# The state of event replication.
|
12419
|
+
# @return [String]
|
12420
|
+
#
|
12421
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsEventsEndpointReplicationConfigDetails AWS API Documentation
|
12422
|
+
#
|
12423
|
+
class AwsEventsEndpointReplicationConfigDetails < Struct.new(
|
12424
|
+
:state)
|
12425
|
+
SENSITIVE = []
|
12426
|
+
include Aws::Structure
|
12427
|
+
end
|
12428
|
+
|
12429
|
+
# Provides details about the routing configuration of the endpoint.
|
12430
|
+
#
|
12431
|
+
# @!attribute [rw] failover_config
|
12432
|
+
# The failover configuration for an endpoint. This includes what
|
12433
|
+
# triggers failover and what happens when it's triggered.
|
12434
|
+
# @return [Types::AwsEventsEndpointRoutingConfigFailoverConfigDetails]
|
12435
|
+
#
|
12436
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsEventsEndpointRoutingConfigDetails AWS API Documentation
|
12437
|
+
#
|
12438
|
+
class AwsEventsEndpointRoutingConfigDetails < Struct.new(
|
12439
|
+
:failover_config)
|
12440
|
+
SENSITIVE = []
|
12441
|
+
include Aws::Structure
|
12442
|
+
end
|
12443
|
+
|
12444
|
+
# The failover configuration for an endpoint. This includes what
|
12445
|
+
# triggers failover and what happens when it's triggered.
|
12446
|
+
#
|
12447
|
+
# @!attribute [rw] primary
|
12448
|
+
# The main Region of the endpoint.
|
12449
|
+
# @return [Types::AwsEventsEndpointRoutingConfigFailoverConfigPrimaryDetails]
|
12450
|
+
#
|
12451
|
+
# @!attribute [rw] secondary
|
12452
|
+
# The Region that events are routed to when failover is triggered or
|
12453
|
+
# event replication is enabled.
|
12454
|
+
# @return [Types::AwsEventsEndpointRoutingConfigFailoverConfigSecondaryDetails]
|
12455
|
+
#
|
12456
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsEventsEndpointRoutingConfigFailoverConfigDetails AWS API Documentation
|
12457
|
+
#
|
12458
|
+
class AwsEventsEndpointRoutingConfigFailoverConfigDetails < Struct.new(
|
12459
|
+
:primary,
|
12460
|
+
:secondary)
|
12461
|
+
SENSITIVE = []
|
12462
|
+
include Aws::Structure
|
12463
|
+
end
|
12464
|
+
|
12465
|
+
# Provides details about the primary Amazon Web Services Region of the
|
12466
|
+
# endpoint.
|
12467
|
+
#
|
12468
|
+
# @!attribute [rw] health_check
|
12469
|
+
# The Amazon Resource Name (ARN) of the health check used by the
|
12470
|
+
# endpoint to determine whether failover is triggered.
|
12471
|
+
# @return [String]
|
12472
|
+
#
|
12473
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsEventsEndpointRoutingConfigFailoverConfigPrimaryDetails AWS API Documentation
|
12474
|
+
#
|
12475
|
+
class AwsEventsEndpointRoutingConfigFailoverConfigPrimaryDetails < Struct.new(
|
12476
|
+
:health_check)
|
12477
|
+
SENSITIVE = []
|
12478
|
+
include Aws::Structure
|
12479
|
+
end
|
12480
|
+
|
12481
|
+
# The Amazon Web Services Region that events are routed to when failover
|
12482
|
+
# is triggered or event replication is enabled.
|
12483
|
+
#
|
12484
|
+
# @!attribute [rw] route
|
12485
|
+
# Defines the secondary Region.
|
12486
|
+
# @return [String]
|
12487
|
+
#
|
12488
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsEventsEndpointRoutingConfigFailoverConfigSecondaryDetails AWS API Documentation
|
12489
|
+
#
|
12490
|
+
class AwsEventsEndpointRoutingConfigFailoverConfigSecondaryDetails < Struct.new(
|
12491
|
+
:route)
|
12492
|
+
SENSITIVE = []
|
12493
|
+
include Aws::Structure
|
12494
|
+
end
|
12495
|
+
|
12496
|
+
# Provides details about Amazon EventBridge event bus. An event bus is a
|
12497
|
+
# router that receives events and delivers them to zero or more
|
12498
|
+
# destinations, or targets. This can be a custom event bus which you can
|
12499
|
+
# use to receive events from your custom applications and services, or
|
12500
|
+
# it can be a partner event bus which can be matched to a partner event
|
12501
|
+
# source.
|
12502
|
+
#
|
12503
|
+
# @!attribute [rw] arn
|
12504
|
+
# The Amazon Resource Name (ARN) of the account permitted to write
|
12505
|
+
# events to the current account.
|
12506
|
+
# @return [String]
|
12507
|
+
#
|
12508
|
+
# @!attribute [rw] name
|
12509
|
+
# The name of the event bus.
|
12510
|
+
# @return [String]
|
12511
|
+
#
|
12512
|
+
# @!attribute [rw] policy
|
12513
|
+
# The policy that enables the external account to send events to your
|
12514
|
+
# account.
|
12515
|
+
# @return [String]
|
12516
|
+
#
|
12517
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsEventsEventbusDetails AWS API Documentation
|
12518
|
+
#
|
12519
|
+
class AwsEventsEventbusDetails < Struct.new(
|
12520
|
+
:arn,
|
12521
|
+
:name,
|
12522
|
+
:policy)
|
12523
|
+
SENSITIVE = []
|
12524
|
+
include Aws::Structure
|
12525
|
+
end
|
12526
|
+
|
12030
12527
|
# An object that contains information on the status of CloudTrail as a
|
12031
12528
|
# data source for the detector.
|
12032
12529
|
#
|
@@ -13373,6 +13870,226 @@ module Aws::SecurityHub
|
|
13373
13870
|
include Aws::Structure
|
13374
13871
|
end
|
13375
13872
|
|
13873
|
+
# Provides details about different modes of client authentication.
|
13874
|
+
#
|
13875
|
+
# @!attribute [rw] sasl
|
13876
|
+
# Provides details for client authentication using SASL.
|
13877
|
+
# @return [Types::AwsMskClusterClusterInfoClientAuthenticationSaslDetails]
|
13878
|
+
#
|
13879
|
+
# @!attribute [rw] unauthenticated
|
13880
|
+
# Provides details for allowing no client authentication.
|
13881
|
+
# @return [Types::AwsMskClusterClusterInfoClientAuthenticationUnauthenticatedDetails]
|
13882
|
+
#
|
13883
|
+
# @!attribute [rw] tls
|
13884
|
+
# Provides details for client authentication using TLS.
|
13885
|
+
# @return [Types::AwsMskClusterClusterInfoClientAuthenticationTlsDetails]
|
13886
|
+
#
|
13887
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsMskClusterClusterInfoClientAuthenticationDetails AWS API Documentation
|
13888
|
+
#
|
13889
|
+
class AwsMskClusterClusterInfoClientAuthenticationDetails < Struct.new(
|
13890
|
+
:sasl,
|
13891
|
+
:unauthenticated,
|
13892
|
+
:tls)
|
13893
|
+
SENSITIVE = []
|
13894
|
+
include Aws::Structure
|
13895
|
+
end
|
13896
|
+
|
13897
|
+
# Provides details for client authentication using SASL.
|
13898
|
+
#
|
13899
|
+
# @!attribute [rw] iam
|
13900
|
+
# Provides details for SASL client authentication using IAM.
|
13901
|
+
# @return [Types::AwsMskClusterClusterInfoClientAuthenticationSaslIamDetails]
|
13902
|
+
#
|
13903
|
+
# @!attribute [rw] scram
|
13904
|
+
# Details for SASL client authentication using SCRAM.
|
13905
|
+
# @return [Types::AwsMskClusterClusterInfoClientAuthenticationSaslScramDetails]
|
13906
|
+
#
|
13907
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsMskClusterClusterInfoClientAuthenticationSaslDetails AWS API Documentation
|
13908
|
+
#
|
13909
|
+
class AwsMskClusterClusterInfoClientAuthenticationSaslDetails < Struct.new(
|
13910
|
+
:iam,
|
13911
|
+
:scram)
|
13912
|
+
SENSITIVE = []
|
13913
|
+
include Aws::Structure
|
13914
|
+
end
|
13915
|
+
|
13916
|
+
# Details for SASL/IAM client authentication.
|
13917
|
+
#
|
13918
|
+
# @!attribute [rw] enabled
|
13919
|
+
# Indicates whether SASL/IAM authentication is enabled or not.
|
13920
|
+
# @return [Boolean]
|
13921
|
+
#
|
13922
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsMskClusterClusterInfoClientAuthenticationSaslIamDetails AWS API Documentation
|
13923
|
+
#
|
13924
|
+
class AwsMskClusterClusterInfoClientAuthenticationSaslIamDetails < Struct.new(
|
13925
|
+
:enabled)
|
13926
|
+
SENSITIVE = []
|
13927
|
+
include Aws::Structure
|
13928
|
+
end
|
13929
|
+
|
13930
|
+
# Details for SASL/SCRAM client authentication.
|
13931
|
+
#
|
13932
|
+
# @!attribute [rw] enabled
|
13933
|
+
# Indicates whether SASL/SCRAM authentication is enabled or not.
|
13934
|
+
# @return [Boolean]
|
13935
|
+
#
|
13936
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsMskClusterClusterInfoClientAuthenticationSaslScramDetails AWS API Documentation
|
13937
|
+
#
|
13938
|
+
class AwsMskClusterClusterInfoClientAuthenticationSaslScramDetails < Struct.new(
|
13939
|
+
:enabled)
|
13940
|
+
SENSITIVE = []
|
13941
|
+
include Aws::Structure
|
13942
|
+
end
|
13943
|
+
|
13944
|
+
# Provides details for client authentication using TLS.
|
13945
|
+
#
|
13946
|
+
# @!attribute [rw] certificate_authority_arn_list
|
13947
|
+
# List of Amazon Web Services Private CA Amazon Resource Names (ARNs).
|
13948
|
+
# Amazon Web Services Private CA enables creation of private
|
13949
|
+
# certificate authority (CA) hierarchies, including root and
|
13950
|
+
# subordinate CAs, without the investment and maintenance costs of
|
13951
|
+
# operating an on-premises CA.
|
13952
|
+
# @return [Array<String>]
|
13953
|
+
#
|
13954
|
+
# @!attribute [rw] enabled
|
13955
|
+
# Indicates whether TLS authentication is enabled or not.
|
13956
|
+
# @return [Boolean]
|
13957
|
+
#
|
13958
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsMskClusterClusterInfoClientAuthenticationTlsDetails AWS API Documentation
|
13959
|
+
#
|
13960
|
+
class AwsMskClusterClusterInfoClientAuthenticationTlsDetails < Struct.new(
|
13961
|
+
:certificate_authority_arn_list,
|
13962
|
+
:enabled)
|
13963
|
+
SENSITIVE = []
|
13964
|
+
include Aws::Structure
|
13965
|
+
end
|
13966
|
+
|
13967
|
+
# Provides details for allowing no client authentication.
|
13968
|
+
#
|
13969
|
+
# @!attribute [rw] enabled
|
13970
|
+
# Indicates whether unauthenticated is allowed or not.
|
13971
|
+
# @return [Boolean]
|
13972
|
+
#
|
13973
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsMskClusterClusterInfoClientAuthenticationUnauthenticatedDetails AWS API Documentation
|
13974
|
+
#
|
13975
|
+
class AwsMskClusterClusterInfoClientAuthenticationUnauthenticatedDetails < Struct.new(
|
13976
|
+
:enabled)
|
13977
|
+
SENSITIVE = []
|
13978
|
+
include Aws::Structure
|
13979
|
+
end
|
13980
|
+
|
13981
|
+
# Provide details about an Amazon MSK cluster.
|
13982
|
+
#
|
13983
|
+
# @!attribute [rw] encryption_info
|
13984
|
+
# Includes encryption-related information, such as the KMS key used
|
13985
|
+
# for encrypting data at rest and whether you want Amazon MSK to
|
13986
|
+
# encrypt your data in transit.
|
13987
|
+
# @return [Types::AwsMskClusterClusterInfoEncryptionInfoDetails]
|
13988
|
+
#
|
13989
|
+
# @!attribute [rw] current_version
|
13990
|
+
# The current version of the MSK cluster.
|
13991
|
+
# @return [String]
|
13992
|
+
#
|
13993
|
+
# @!attribute [rw] number_of_broker_nodes
|
13994
|
+
# The number of broker nodes in the cluster.
|
13995
|
+
# @return [Integer]
|
13996
|
+
#
|
13997
|
+
# @!attribute [rw] cluster_name
|
13998
|
+
# The name of the cluster.
|
13999
|
+
# @return [String]
|
14000
|
+
#
|
14001
|
+
# @!attribute [rw] client_authentication
|
14002
|
+
# Provides information for different modes of client authentication.
|
14003
|
+
# @return [Types::AwsMskClusterClusterInfoClientAuthenticationDetails]
|
14004
|
+
#
|
14005
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsMskClusterClusterInfoDetails AWS API Documentation
|
14006
|
+
#
|
14007
|
+
class AwsMskClusterClusterInfoDetails < Struct.new(
|
14008
|
+
:encryption_info,
|
14009
|
+
:current_version,
|
14010
|
+
:number_of_broker_nodes,
|
14011
|
+
:cluster_name,
|
14012
|
+
:client_authentication)
|
14013
|
+
SENSITIVE = []
|
14014
|
+
include Aws::Structure
|
14015
|
+
end
|
14016
|
+
|
14017
|
+
# Includes encryption-related information, such as the KMS key used for
|
14018
|
+
# encrypting data at rest and whether you want MSK to encrypt your data
|
14019
|
+
# in transit.
|
14020
|
+
#
|
14021
|
+
# @!attribute [rw] encryption_in_transit
|
14022
|
+
# The settings for encrypting data in transit.
|
14023
|
+
# @return [Types::AwsMskClusterClusterInfoEncryptionInfoEncryptionInTransitDetails]
|
14024
|
+
#
|
14025
|
+
# @!attribute [rw] encryption_at_rest
|
14026
|
+
# The data-volume encryption details. You can't update encryption at
|
14027
|
+
# rest settings for existing clusters.
|
14028
|
+
# @return [Types::AwsMskClusterClusterInfoEncryptionInfoEncryptionAtRestDetails]
|
14029
|
+
#
|
14030
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsMskClusterClusterInfoEncryptionInfoDetails AWS API Documentation
|
14031
|
+
#
|
14032
|
+
class AwsMskClusterClusterInfoEncryptionInfoDetails < Struct.new(
|
14033
|
+
:encryption_in_transit,
|
14034
|
+
:encryption_at_rest)
|
14035
|
+
SENSITIVE = []
|
14036
|
+
include Aws::Structure
|
14037
|
+
end
|
14038
|
+
|
14039
|
+
# The data-volume encryption details. You can't update encryption at
|
14040
|
+
# rest settings for existing clusters.
|
14041
|
+
#
|
14042
|
+
# @!attribute [rw] data_volume_kms_key_id
|
14043
|
+
# The Amazon Resource Name (ARN) of the KMS key for encrypting data at
|
14044
|
+
# rest. If you don't specify a KMS key, MSK creates one for you and
|
14045
|
+
# uses it.
|
14046
|
+
# @return [String]
|
14047
|
+
#
|
14048
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsMskClusterClusterInfoEncryptionInfoEncryptionAtRestDetails AWS API Documentation
|
14049
|
+
#
|
14050
|
+
class AwsMskClusterClusterInfoEncryptionInfoEncryptionAtRestDetails < Struct.new(
|
14051
|
+
:data_volume_kms_key_id)
|
14052
|
+
SENSITIVE = []
|
14053
|
+
include Aws::Structure
|
14054
|
+
end
|
14055
|
+
|
14056
|
+
# The settings for encrypting data in transit.
|
14057
|
+
#
|
14058
|
+
# @!attribute [rw] in_cluster
|
14059
|
+
# When set to `true`, it indicates that data communication among the
|
14060
|
+
# broker nodes of the cluster is encrypted. When set to `false`, the
|
14061
|
+
# communication happens in plain text. The default value is `true`.
|
14062
|
+
# @return [Boolean]
|
14063
|
+
#
|
14064
|
+
# @!attribute [rw] client_broker
|
14065
|
+
# Indicates the encryption setting for data in transit between clients
|
14066
|
+
# and brokers.
|
14067
|
+
# @return [String]
|
14068
|
+
#
|
14069
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsMskClusterClusterInfoEncryptionInfoEncryptionInTransitDetails AWS API Documentation
|
14070
|
+
#
|
14071
|
+
class AwsMskClusterClusterInfoEncryptionInfoEncryptionInTransitDetails < Struct.new(
|
14072
|
+
:in_cluster,
|
14073
|
+
:client_broker)
|
14074
|
+
SENSITIVE = []
|
14075
|
+
include Aws::Structure
|
14076
|
+
end
|
14077
|
+
|
14078
|
+
# Provides details about an Amazon Managed Streaming for Apache Kafka
|
14079
|
+
# (Amazon MSK) cluster.
|
14080
|
+
#
|
14081
|
+
# @!attribute [rw] cluster_info
|
14082
|
+
# Provides information about a cluster.
|
14083
|
+
# @return [Types::AwsMskClusterClusterInfoDetails]
|
14084
|
+
#
|
14085
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsMskClusterDetails AWS API Documentation
|
14086
|
+
#
|
14087
|
+
class AwsMskClusterDetails < Struct.new(
|
14088
|
+
:cluster_info)
|
14089
|
+
SENSITIVE = []
|
14090
|
+
include Aws::Structure
|
14091
|
+
end
|
14092
|
+
|
13376
14093
|
# Details about an Network Firewall firewall.
|
13377
14094
|
#
|
13378
14095
|
# @!attribute [rw] delete_protection
|
@@ -14208,6 +14925,11 @@ module Aws::SecurityHub
|
|
14208
14925
|
# Whether the mapping of IAM accounts to database accounts is enabled.
|
14209
14926
|
# @return [Boolean]
|
14210
14927
|
#
|
14928
|
+
# @!attribute [rw] auto_minor_version_upgrade
|
14929
|
+
# Indicates if minor version upgrades are automatically applied to the
|
14930
|
+
# cluster.
|
14931
|
+
# @return [Boolean]
|
14932
|
+
#
|
14211
14933
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsRdsDbClusterDetails AWS API Documentation
|
14212
14934
|
#
|
14213
14935
|
class AwsRdsDbClusterDetails < Struct.new(
|
@@ -14247,7 +14969,8 @@ module Aws::SecurityHub
|
|
14247
14969
|
:db_cluster_option_group_memberships,
|
14248
14970
|
:db_cluster_identifier,
|
14249
14971
|
:db_cluster_members,
|
14250
|
-
:iam_database_authentication_enabled
|
14972
|
+
:iam_database_authentication_enabled,
|
14973
|
+
:auto_minor_version_upgrade)
|
14251
14974
|
SENSITIVE = []
|
14252
14975
|
include Aws::Structure
|
14253
14976
|
end
|
@@ -16417,6 +17140,120 @@ module Aws::SecurityHub
|
|
16417
17140
|
include Aws::Structure
|
16418
17141
|
end
|
16419
17142
|
|
17143
|
+
# An object that contains an optional comment about your Amazon Route 53
|
17144
|
+
# hosted zone.
|
17145
|
+
#
|
17146
|
+
# @!attribute [rw] comment
|
17147
|
+
# Any comments that you include about the hosted zone.
|
17148
|
+
# @return [String]
|
17149
|
+
#
|
17150
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsRoute53HostedZoneConfigDetails AWS API Documentation
|
17151
|
+
#
|
17152
|
+
class AwsRoute53HostedZoneConfigDetails < Struct.new(
|
17153
|
+
:comment)
|
17154
|
+
SENSITIVE = []
|
17155
|
+
include Aws::Structure
|
17156
|
+
end
|
17157
|
+
|
17158
|
+
# Provides details about a specified Amazon Route 53 hosted zone,
|
17159
|
+
# including the four name servers assigned to the hosted zone. A hosted
|
17160
|
+
# zone represents a collection of records that can be managed together,
|
17161
|
+
# belonging to a single parent domain name.
|
17162
|
+
#
|
17163
|
+
# @!attribute [rw] hosted_zone
|
17164
|
+
# An object that contains information about the specified hosted zone.
|
17165
|
+
# @return [Types::AwsRoute53HostedZoneObjectDetails]
|
17166
|
+
#
|
17167
|
+
# @!attribute [rw] vpcs
|
17168
|
+
# An object that contains information about the Amazon Virtual Private
|
17169
|
+
# Clouds (Amazon VPCs) that are associated with the specified hosted
|
17170
|
+
# zone.
|
17171
|
+
# @return [Array<Types::AwsRoute53HostedZoneVpcDetails>]
|
17172
|
+
#
|
17173
|
+
# @!attribute [rw] name_servers
|
17174
|
+
# An object that contains a list of the authoritative name servers for
|
17175
|
+
# a hosted zone or for a reusable delegation set.
|
17176
|
+
# @return [Array<String>]
|
17177
|
+
#
|
17178
|
+
# @!attribute [rw] query_logging_config
|
17179
|
+
# An array that contains one `QueryLoggingConfig` element for each DNS
|
17180
|
+
# query logging configuration that is associated with the current
|
17181
|
+
# Amazon Web Services account.
|
17182
|
+
# @return [Types::AwsRoute53QueryLoggingConfigDetails]
|
17183
|
+
#
|
17184
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsRoute53HostedZoneDetails AWS API Documentation
|
17185
|
+
#
|
17186
|
+
class AwsRoute53HostedZoneDetails < Struct.new(
|
17187
|
+
:hosted_zone,
|
17188
|
+
:vpcs,
|
17189
|
+
:name_servers,
|
17190
|
+
:query_logging_config)
|
17191
|
+
SENSITIVE = []
|
17192
|
+
include Aws::Structure
|
17193
|
+
end
|
17194
|
+
|
17195
|
+
# An object that contains information about an Amazon Route 53 hosted
|
17196
|
+
# zone.
|
17197
|
+
#
|
17198
|
+
# @!attribute [rw] id
|
17199
|
+
# The ID that Route 53 assigns to the hosted zone when you create it.
|
17200
|
+
# @return [String]
|
17201
|
+
#
|
17202
|
+
# @!attribute [rw] name
|
17203
|
+
# The name of the domain. For public hosted zones, this is the name
|
17204
|
+
# that you have registered with your DNS registrar.
|
17205
|
+
# @return [String]
|
17206
|
+
#
|
17207
|
+
# @!attribute [rw] config
|
17208
|
+
# An object that includes the `Comment` element.
|
17209
|
+
# @return [Types::AwsRoute53HostedZoneConfigDetails]
|
17210
|
+
#
|
17211
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsRoute53HostedZoneObjectDetails AWS API Documentation
|
17212
|
+
#
|
17213
|
+
class AwsRoute53HostedZoneObjectDetails < Struct.new(
|
17214
|
+
:id,
|
17215
|
+
:name,
|
17216
|
+
:config)
|
17217
|
+
SENSITIVE = []
|
17218
|
+
include Aws::Structure
|
17219
|
+
end
|
17220
|
+
|
17221
|
+
# For private hosted zones, this is a complex type that contains
|
17222
|
+
# information about an Amazon VPC.
|
17223
|
+
#
|
17224
|
+
# @!attribute [rw] id
|
17225
|
+
# The identifier of an Amazon VPC.
|
17226
|
+
# @return [String]
|
17227
|
+
#
|
17228
|
+
# @!attribute [rw] region
|
17229
|
+
# The Amazon Web Services Region that an Amazon VPC was created in.
|
17230
|
+
# @return [String]
|
17231
|
+
#
|
17232
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsRoute53HostedZoneVpcDetails AWS API Documentation
|
17233
|
+
#
|
17234
|
+
class AwsRoute53HostedZoneVpcDetails < Struct.new(
|
17235
|
+
:id,
|
17236
|
+
:region)
|
17237
|
+
SENSITIVE = []
|
17238
|
+
include Aws::Structure
|
17239
|
+
end
|
17240
|
+
|
17241
|
+
# Provides details about a specified Amazon Route 53 configuration for
|
17242
|
+
# DNS query logging.
|
17243
|
+
#
|
17244
|
+
# @!attribute [rw] cloud_watch_logs_log_group_arn
|
17245
|
+
# The Amazon Resource Name (ARN) of the Amazon CloudWatch Logs log
|
17246
|
+
# group that Route 53 is publishing logs to.
|
17247
|
+
# @return [Types::CloudWatchLogsLogGroupArnConfigDetails]
|
17248
|
+
#
|
17249
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsRoute53QueryLoggingConfigDetails AWS API Documentation
|
17250
|
+
#
|
17251
|
+
class AwsRoute53QueryLoggingConfigDetails < Struct.new(
|
17252
|
+
:cloud_watch_logs_log_group_arn)
|
17253
|
+
SENSITIVE = []
|
17254
|
+
include Aws::Structure
|
17255
|
+
end
|
17256
|
+
|
16420
17257
|
# provides information about the Amazon S3 Public Access Block
|
16421
17258
|
# configuration for accounts.
|
16422
17259
|
#
|
@@ -20746,6 +21583,33 @@ module Aws::SecurityHub
|
|
20746
21583
|
include Aws::Structure
|
20747
21584
|
end
|
20748
21585
|
|
21586
|
+
# The Amazon Resource Name (ARN) and other details of the Amazon
|
21587
|
+
# CloudWatch Logs log group that Amazon Route 53 is publishing logs to.
|
21588
|
+
#
|
21589
|
+
# @!attribute [rw] cloud_watch_logs_log_group_arn
|
21590
|
+
# The ARN of the CloudWatch Logs log group that Route 53 is publishing
|
21591
|
+
# logs to.
|
21592
|
+
# @return [String]
|
21593
|
+
#
|
21594
|
+
# @!attribute [rw] hosted_zone_id
|
21595
|
+
# The ID of the hosted zone that CloudWatch Logs is logging queries
|
21596
|
+
# for.
|
21597
|
+
# @return [String]
|
21598
|
+
#
|
21599
|
+
# @!attribute [rw] id
|
21600
|
+
# The ID for a DNS query logging configuration.
|
21601
|
+
# @return [String]
|
21602
|
+
#
|
21603
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/CloudWatchLogsLogGroupArnConfigDetails AWS API Documentation
|
21604
|
+
#
|
21605
|
+
class CloudWatchLogsLogGroupArnConfigDetails < Struct.new(
|
21606
|
+
:cloud_watch_logs_log_group_arn,
|
21607
|
+
:hosted_zone_id,
|
21608
|
+
:id)
|
21609
|
+
SENSITIVE = []
|
21610
|
+
include Aws::Structure
|
21611
|
+
end
|
21612
|
+
|
20749
21613
|
# Provides details about where a code vulnerability is located in your
|
20750
21614
|
# Lambda function.
|
20751
21615
|
#
|
@@ -24975,6 +25839,48 @@ module Aws::SecurityHub
|
|
24975
25839
|
# helps you set limits on data processing and track costs.
|
24976
25840
|
# @return [Types::AwsAthenaWorkGroupDetails]
|
24977
25841
|
#
|
25842
|
+
# @!attribute [rw] aws_events_eventbus
|
25843
|
+
# Provides details about Amazon EventBridge event bus for an endpoint.
|
25844
|
+
# An event bus is a router that receives events and delivers them to
|
25845
|
+
# zero or more destinations, or targets.
|
25846
|
+
# @return [Types::AwsEventsEventbusDetails]
|
25847
|
+
#
|
25848
|
+
# @!attribute [rw] aws_dms_endpoint
|
25849
|
+
# Provides details about an Database Migration Service (DMS) endpoint.
|
25850
|
+
# An endpoint provides connection, data store type, and location
|
25851
|
+
# information about your data store.
|
25852
|
+
# @return [Types::AwsDmsEndpointDetails]
|
25853
|
+
#
|
25854
|
+
# @!attribute [rw] aws_events_endpoint
|
25855
|
+
# Provides details about an Amazon EventBridge global endpoint. The
|
25856
|
+
# endpoint can improve your application’s availability by making it
|
25857
|
+
# Regional-fault tolerant.
|
25858
|
+
# @return [Types::AwsEventsEndpointDetails]
|
25859
|
+
#
|
25860
|
+
# @!attribute [rw] aws_dms_replication_task
|
25861
|
+
# Provides details about an DMS replication task. A replication task
|
25862
|
+
# moves a set of data from the source endpoint to the target endpoint.
|
25863
|
+
# @return [Types::AwsDmsReplicationTaskDetails]
|
25864
|
+
#
|
25865
|
+
# @!attribute [rw] aws_dms_replication_instance
|
25866
|
+
# Provides details about an DMS replication instance. DMS uses a
|
25867
|
+
# replication instance to connect to your source data store, read the
|
25868
|
+
# source data, and format the data for consumption by the target data
|
25869
|
+
# store.
|
25870
|
+
# @return [Types::AwsDmsReplicationInstanceDetails]
|
25871
|
+
#
|
25872
|
+
# @!attribute [rw] aws_route_53_hosted_zone
|
25873
|
+
# Provides details about an Amazon Route 53 hosted zone, including the
|
25874
|
+
# four name servers assigned to the hosted zone. A hosted zone
|
25875
|
+
# represents a collection of records that can be managed together,
|
25876
|
+
# belonging to a single parent domain name.
|
25877
|
+
# @return [Types::AwsRoute53HostedZoneDetails]
|
25878
|
+
#
|
25879
|
+
# @!attribute [rw] aws_msk_cluster
|
25880
|
+
# Provides details about an Amazon Managed Streaming for Apache Kafka
|
25881
|
+
# (Amazon MSK) cluster.
|
25882
|
+
# @return [Types::AwsMskClusterDetails]
|
25883
|
+
#
|
24978
25884
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ResourceDetails AWS API Documentation
|
24979
25885
|
#
|
24980
25886
|
class ResourceDetails < Struct.new(
|
@@ -25067,7 +25973,14 @@ module Aws::SecurityHub
|
|
25067
25973
|
:aws_event_schemas_registry,
|
25068
25974
|
:aws_guard_duty_detector,
|
25069
25975
|
:aws_step_function_state_machine,
|
25070
|
-
:aws_athena_work_group
|
25976
|
+
:aws_athena_work_group,
|
25977
|
+
:aws_events_eventbus,
|
25978
|
+
:aws_dms_endpoint,
|
25979
|
+
:aws_events_endpoint,
|
25980
|
+
:aws_dms_replication_task,
|
25981
|
+
:aws_dms_replication_instance,
|
25982
|
+
:aws_route_53_hosted_zone,
|
25983
|
+
:aws_msk_cluster)
|
25071
25984
|
SENSITIVE = []
|
25072
25985
|
include Aws::Structure
|
25073
25986
|
end
|