aws-sdk-securityhub 1.52.0 → 1.56.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-securityhub/client.rb +620 -9
- data/lib/aws-sdk-securityhub/client_api.rb +395 -0
- data/lib/aws-sdk-securityhub/types.rb +2852 -148
- data/lib/aws-sdk-securityhub.rb +1 -1
- metadata +4 -4
@@ -2439,6 +2439,15 @@ module Aws::SecurityHub
|
|
2439
2439
|
# },
|
2440
2440
|
# ],
|
2441
2441
|
# },
|
2442
|
+
# viewer_certificate: {
|
2443
|
+
# acm_certificate_arn: "NonEmptyString",
|
2444
|
+
# certificate: "NonEmptyString",
|
2445
|
+
# certificate_source: "NonEmptyString",
|
2446
|
+
# cloud_front_default_certificate: false,
|
2447
|
+
# iam_certificate_id: "NonEmptyString",
|
2448
|
+
# minimum_protocol_version: "NonEmptyString",
|
2449
|
+
# ssl_support_method: "NonEmptyString",
|
2450
|
+
# },
|
2442
2451
|
# status: "NonEmptyString",
|
2443
2452
|
# web_acl_id: "NonEmptyString",
|
2444
2453
|
# }
|
@@ -2494,6 +2503,11 @@ module Aws::SecurityHub
|
|
2494
2503
|
# Provides information about the origin groups in the distribution.
|
2495
2504
|
# @return [Types::AwsCloudFrontDistributionOriginGroups]
|
2496
2505
|
#
|
2506
|
+
# @!attribute [rw] viewer_certificate
|
2507
|
+
# Provides information about the TLS/SSL configuration that the
|
2508
|
+
# distribution uses to communicate with viewers.
|
2509
|
+
# @return [Types::AwsCloudFrontDistributionViewerCertificate]
|
2510
|
+
#
|
2497
2511
|
# @!attribute [rw] status
|
2498
2512
|
# Indicates the current status of the distribution.
|
2499
2513
|
# @return [String]
|
@@ -2515,6 +2529,7 @@ module Aws::SecurityHub
|
|
2515
2529
|
:logging,
|
2516
2530
|
:origins,
|
2517
2531
|
:origin_groups,
|
2532
|
+
:viewer_certificate,
|
2518
2533
|
:status,
|
2519
2534
|
:web_acl_id)
|
2520
2535
|
SENSITIVE = []
|
@@ -2774,6 +2789,74 @@ module Aws::SecurityHub
|
|
2774
2789
|
include Aws::Structure
|
2775
2790
|
end
|
2776
2791
|
|
2792
|
+
# Provides information about the TLS/SSL configuration that the
|
2793
|
+
# distribution uses to communicate with viewers.
|
2794
|
+
#
|
2795
|
+
# @note When making an API call, you may pass AwsCloudFrontDistributionViewerCertificate
|
2796
|
+
# data as a hash:
|
2797
|
+
#
|
2798
|
+
# {
|
2799
|
+
# acm_certificate_arn: "NonEmptyString",
|
2800
|
+
# certificate: "NonEmptyString",
|
2801
|
+
# certificate_source: "NonEmptyString",
|
2802
|
+
# cloud_front_default_certificate: false,
|
2803
|
+
# iam_certificate_id: "NonEmptyString",
|
2804
|
+
# minimum_protocol_version: "NonEmptyString",
|
2805
|
+
# ssl_support_method: "NonEmptyString",
|
2806
|
+
# }
|
2807
|
+
#
|
2808
|
+
# @!attribute [rw] acm_certificate_arn
|
2809
|
+
# The ARN of the ACM certificate. Used if the certificate is stored in
|
2810
|
+
# ACM. If you provide an ACM certificate ARN, you must also provide
|
2811
|
+
# `MinimumCertificateVersion` and `SslSupportMethod`.
|
2812
|
+
# @return [String]
|
2813
|
+
#
|
2814
|
+
# @!attribute [rw] certificate
|
2815
|
+
# The identifier of the certificate. Note that in CloudFront, this
|
2816
|
+
# attribute is deprecated.
|
2817
|
+
# @return [String]
|
2818
|
+
#
|
2819
|
+
# @!attribute [rw] certificate_source
|
2820
|
+
# The source of the certificate identified by `Certificate`. Note that
|
2821
|
+
# in CloudFront, this attribute is deprecated.
|
2822
|
+
# @return [String]
|
2823
|
+
#
|
2824
|
+
# @!attribute [rw] cloud_front_default_certificate
|
2825
|
+
# Whether the distribution uses the CloudFront domain name. If set to
|
2826
|
+
# `false`, then you provide either `AcmCertificateArn` or
|
2827
|
+
# `IamCertificateId`.
|
2828
|
+
# @return [Boolean]
|
2829
|
+
#
|
2830
|
+
# @!attribute [rw] iam_certificate_id
|
2831
|
+
# The identifier of the IAM certificate. Used if the certificate is
|
2832
|
+
# stored in IAM. If you provide `IamCertificateId`, then you also must
|
2833
|
+
# provide `MinimumProtocolVersion` and `SslSupportMethod`.
|
2834
|
+
# @return [String]
|
2835
|
+
#
|
2836
|
+
# @!attribute [rw] minimum_protocol_version
|
2837
|
+
# The security policy that CloudFront uses for HTTPS connections with
|
2838
|
+
# viewers. If `SslSupportMethod` is `sni-only`, then
|
2839
|
+
# `MinimumProtocolVersion` must be `TLSv1` or higher.
|
2840
|
+
# @return [String]
|
2841
|
+
#
|
2842
|
+
# @!attribute [rw] ssl_support_method
|
2843
|
+
# The viewers that the distribution accepts HTTPS connections from.
|
2844
|
+
# @return [String]
|
2845
|
+
#
|
2846
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsCloudFrontDistributionViewerCertificate AWS API Documentation
|
2847
|
+
#
|
2848
|
+
class AwsCloudFrontDistributionViewerCertificate < Struct.new(
|
2849
|
+
:acm_certificate_arn,
|
2850
|
+
:certificate,
|
2851
|
+
:certificate_source,
|
2852
|
+
:cloud_front_default_certificate,
|
2853
|
+
:iam_certificate_id,
|
2854
|
+
:minimum_protocol_version,
|
2855
|
+
:ssl_support_method)
|
2856
|
+
SENSITIVE = []
|
2857
|
+
include Aws::Structure
|
2858
|
+
end
|
2859
|
+
|
2777
2860
|
# Provides details about a CloudTrail trail.
|
2778
2861
|
#
|
2779
2862
|
# @note When making an API call, you may pass AwsCloudTrailTrailDetails
|
@@ -2886,6 +2969,85 @@ module Aws::SecurityHub
|
|
2886
2969
|
include Aws::Structure
|
2887
2970
|
end
|
2888
2971
|
|
2972
|
+
# Information about the build artifacts for the CodeBuild project.
|
2973
|
+
#
|
2974
|
+
# @note When making an API call, you may pass AwsCodeBuildProjectArtifactsDetails
|
2975
|
+
# data as a hash:
|
2976
|
+
#
|
2977
|
+
# {
|
2978
|
+
# artifact_identifier: "NonEmptyString",
|
2979
|
+
# encryption_disabled: false,
|
2980
|
+
# location: "NonEmptyString",
|
2981
|
+
# name: "NonEmptyString",
|
2982
|
+
# namespace_type: "NonEmptyString",
|
2983
|
+
# override_artifact_name: false,
|
2984
|
+
# packaging: "NonEmptyString",
|
2985
|
+
# path: "NonEmptyString",
|
2986
|
+
# type: "NonEmptyString",
|
2987
|
+
# }
|
2988
|
+
#
|
2989
|
+
# @!attribute [rw] artifact_identifier
|
2990
|
+
# An identifier for the artifact definition.
|
2991
|
+
# @return [String]
|
2992
|
+
#
|
2993
|
+
# @!attribute [rw] encryption_disabled
|
2994
|
+
# Indicates whether to disable encryption on the artifact. Only valid
|
2995
|
+
# when `Type` is `S3`.
|
2996
|
+
# @return [Boolean]
|
2997
|
+
#
|
2998
|
+
# @!attribute [rw] location
|
2999
|
+
# Only used when `Type` is `S3`. The name of the S3 bucket where the
|
3000
|
+
# artifact is located.
|
3001
|
+
# @return [String]
|
3002
|
+
#
|
3003
|
+
# @!attribute [rw] name
|
3004
|
+
# Only used when Type is S3. The name of the artifact. Used with
|
3005
|
+
# `NamepaceType` and `Path` to determine the pattern for storing the
|
3006
|
+
# artifact.
|
3007
|
+
# @return [String]
|
3008
|
+
#
|
3009
|
+
# @!attribute [rw] namespace_type
|
3010
|
+
# Only used when `Type` is `S3`. The value to use for the namespace.
|
3011
|
+
# Used with `Name` and `Path` to determine the pattern for storing the
|
3012
|
+
# artifact.
|
3013
|
+
# @return [String]
|
3014
|
+
#
|
3015
|
+
# @!attribute [rw] override_artifact_name
|
3016
|
+
# Whether the name specified in the buildspec file overrides the
|
3017
|
+
# artifact name.
|
3018
|
+
# @return [Boolean]
|
3019
|
+
#
|
3020
|
+
# @!attribute [rw] packaging
|
3021
|
+
# Only used when `Type` is `S3`. The type of output artifact to
|
3022
|
+
# create.
|
3023
|
+
# @return [String]
|
3024
|
+
#
|
3025
|
+
# @!attribute [rw] path
|
3026
|
+
# Only used when `Type` is `S3`. The path to the artifact. Used with
|
3027
|
+
# `Name` and `NamespaceType` to determine the pattern for storing the
|
3028
|
+
# artifact.
|
3029
|
+
# @return [String]
|
3030
|
+
#
|
3031
|
+
# @!attribute [rw] type
|
3032
|
+
# The type of build artifact.
|
3033
|
+
# @return [String]
|
3034
|
+
#
|
3035
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsCodeBuildProjectArtifactsDetails AWS API Documentation
|
3036
|
+
#
|
3037
|
+
class AwsCodeBuildProjectArtifactsDetails < Struct.new(
|
3038
|
+
:artifact_identifier,
|
3039
|
+
:encryption_disabled,
|
3040
|
+
:location,
|
3041
|
+
:name,
|
3042
|
+
:namespace_type,
|
3043
|
+
:override_artifact_name,
|
3044
|
+
:packaging,
|
3045
|
+
:path,
|
3046
|
+
:type)
|
3047
|
+
SENSITIVE = []
|
3048
|
+
include Aws::Structure
|
3049
|
+
end
|
3050
|
+
|
2889
3051
|
# Information about an CodeBuild project.
|
2890
3052
|
#
|
2891
3053
|
# @note When making an API call, you may pass AwsCodeBuildProjectDetails
|
@@ -2893,8 +3055,29 @@ module Aws::SecurityHub
|
|
2893
3055
|
#
|
2894
3056
|
# {
|
2895
3057
|
# encryption_key: "NonEmptyString",
|
3058
|
+
# artifacts: [
|
3059
|
+
# {
|
3060
|
+
# artifact_identifier: "NonEmptyString",
|
3061
|
+
# encryption_disabled: false,
|
3062
|
+
# location: "NonEmptyString",
|
3063
|
+
# name: "NonEmptyString",
|
3064
|
+
# namespace_type: "NonEmptyString",
|
3065
|
+
# override_artifact_name: false,
|
3066
|
+
# packaging: "NonEmptyString",
|
3067
|
+
# path: "NonEmptyString",
|
3068
|
+
# type: "NonEmptyString",
|
3069
|
+
# },
|
3070
|
+
# ],
|
2896
3071
|
# environment: {
|
2897
3072
|
# certificate: "NonEmptyString",
|
3073
|
+
# environment_variables: [
|
3074
|
+
# {
|
3075
|
+
# name: "NonEmptyString",
|
3076
|
+
# type: "NonEmptyString",
|
3077
|
+
# value: "NonEmptyString",
|
3078
|
+
# },
|
3079
|
+
# ],
|
3080
|
+
# privileged_mode: false,
|
2898
3081
|
# image_pull_credentials_type: "NonEmptyString",
|
2899
3082
|
# registry_credential: {
|
2900
3083
|
# credential: "NonEmptyString",
|
@@ -2910,6 +3093,18 @@ module Aws::SecurityHub
|
|
2910
3093
|
# insecure_ssl: false,
|
2911
3094
|
# },
|
2912
3095
|
# service_role: "NonEmptyString",
|
3096
|
+
# logs_config: {
|
3097
|
+
# cloud_watch_logs: {
|
3098
|
+
# group_name: "NonEmptyString",
|
3099
|
+
# status: "NonEmptyString",
|
3100
|
+
# stream_name: "NonEmptyString",
|
3101
|
+
# },
|
3102
|
+
# s3_logs: {
|
3103
|
+
# encryption_disabled: false,
|
3104
|
+
# location: "NonEmptyString",
|
3105
|
+
# status: "NonEmptyString",
|
3106
|
+
# },
|
3107
|
+
# },
|
2913
3108
|
# vpc_config: {
|
2914
3109
|
# vpc_id: "NonEmptyString",
|
2915
3110
|
# subnets: ["NonEmptyString"],
|
@@ -2924,6 +3119,10 @@ module Aws::SecurityHub
|
|
2924
3119
|
# KMS key alias (using the format alias/alias-name).
|
2925
3120
|
# @return [String]
|
2926
3121
|
#
|
3122
|
+
# @!attribute [rw] artifacts
|
3123
|
+
# Information about the build artifacts for the CodeBuild project.
|
3124
|
+
# @return [Array<Types::AwsCodeBuildProjectArtifactsDetails>]
|
3125
|
+
#
|
2927
3126
|
# @!attribute [rw] environment
|
2928
3127
|
# Information about the build environment for this build project.
|
2929
3128
|
# @return [Types::AwsCodeBuildProjectEnvironment]
|
@@ -2943,6 +3142,10 @@ module Aws::SecurityHub
|
|
2943
3142
|
# Services account.
|
2944
3143
|
# @return [String]
|
2945
3144
|
#
|
3145
|
+
# @!attribute [rw] logs_config
|
3146
|
+
# Information about logs for the build project.
|
3147
|
+
# @return [Types::AwsCodeBuildProjectLogsConfigDetails]
|
3148
|
+
#
|
2946
3149
|
# @!attribute [rw] vpc_config
|
2947
3150
|
# Information about the VPC configuration that CodeBuild accesses.
|
2948
3151
|
# @return [Types::AwsCodeBuildProjectVpcConfig]
|
@@ -2951,10 +3154,12 @@ module Aws::SecurityHub
|
|
2951
3154
|
#
|
2952
3155
|
class AwsCodeBuildProjectDetails < Struct.new(
|
2953
3156
|
:encryption_key,
|
3157
|
+
:artifacts,
|
2954
3158
|
:environment,
|
2955
3159
|
:name,
|
2956
3160
|
:source,
|
2957
3161
|
:service_role,
|
3162
|
+
:logs_config,
|
2958
3163
|
:vpc_config)
|
2959
3164
|
SENSITIVE = []
|
2960
3165
|
include Aws::Structure
|
@@ -2967,6 +3172,14 @@ module Aws::SecurityHub
|
|
2967
3172
|
#
|
2968
3173
|
# {
|
2969
3174
|
# certificate: "NonEmptyString",
|
3175
|
+
# environment_variables: [
|
3176
|
+
# {
|
3177
|
+
# name: "NonEmptyString",
|
3178
|
+
# type: "NonEmptyString",
|
3179
|
+
# value: "NonEmptyString",
|
3180
|
+
# },
|
3181
|
+
# ],
|
3182
|
+
# privileged_mode: false,
|
2970
3183
|
# image_pull_credentials_type: "NonEmptyString",
|
2971
3184
|
# registry_credential: {
|
2972
3185
|
# credential: "NonEmptyString",
|
@@ -2979,6 +3192,16 @@ module Aws::SecurityHub
|
|
2979
3192
|
# The certificate to use with this build project.
|
2980
3193
|
# @return [String]
|
2981
3194
|
#
|
3195
|
+
# @!attribute [rw] environment_variables
|
3196
|
+
# A set of environment variables to make available to builds for the
|
3197
|
+
# build project.
|
3198
|
+
# @return [Array<Types::AwsCodeBuildProjectEnvironmentEnvironmentVariablesDetails>]
|
3199
|
+
#
|
3200
|
+
# @!attribute [rw] privileged_mode
|
3201
|
+
# Whether to allow the Docker daemon to run inside a Docker container.
|
3202
|
+
# Set to `true` if the build project is used to build Docker images.
|
3203
|
+
# @return [Boolean]
|
3204
|
+
#
|
2982
3205
|
# @!attribute [rw] image_pull_credentials_type
|
2983
3206
|
# The type of credentials CodeBuild uses to pull images in your build.
|
2984
3207
|
#
|
@@ -3031,6 +3254,8 @@ module Aws::SecurityHub
|
|
3031
3254
|
#
|
3032
3255
|
class AwsCodeBuildProjectEnvironment < Struct.new(
|
3033
3256
|
:certificate,
|
3257
|
+
:environment_variables,
|
3258
|
+
:privileged_mode,
|
3034
3259
|
:image_pull_credentials_type,
|
3035
3260
|
:registry_credential,
|
3036
3261
|
:type)
|
@@ -3038,6 +3263,40 @@ module Aws::SecurityHub
|
|
3038
3263
|
include Aws::Structure
|
3039
3264
|
end
|
3040
3265
|
|
3266
|
+
# Information about an environment variable that is available to builds
|
3267
|
+
# for the build project.
|
3268
|
+
#
|
3269
|
+
# @note When making an API call, you may pass AwsCodeBuildProjectEnvironmentEnvironmentVariablesDetails
|
3270
|
+
# data as a hash:
|
3271
|
+
#
|
3272
|
+
# {
|
3273
|
+
# name: "NonEmptyString",
|
3274
|
+
# type: "NonEmptyString",
|
3275
|
+
# value: "NonEmptyString",
|
3276
|
+
# }
|
3277
|
+
#
|
3278
|
+
# @!attribute [rw] name
|
3279
|
+
# The name of the environment variable.
|
3280
|
+
# @return [String]
|
3281
|
+
#
|
3282
|
+
# @!attribute [rw] type
|
3283
|
+
# The type of environment variable.
|
3284
|
+
# @return [String]
|
3285
|
+
#
|
3286
|
+
# @!attribute [rw] value
|
3287
|
+
# The value of the environment variable.
|
3288
|
+
# @return [String]
|
3289
|
+
#
|
3290
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsCodeBuildProjectEnvironmentEnvironmentVariablesDetails AWS API Documentation
|
3291
|
+
#
|
3292
|
+
class AwsCodeBuildProjectEnvironmentEnvironmentVariablesDetails < Struct.new(
|
3293
|
+
:name,
|
3294
|
+
:type,
|
3295
|
+
:value)
|
3296
|
+
SENSITIVE = []
|
3297
|
+
include Aws::Structure
|
3298
|
+
end
|
3299
|
+
|
3041
3300
|
# The credentials for access to a private registry.
|
3042
3301
|
#
|
3043
3302
|
# @note When making an API call, you may pass AwsCodeBuildProjectEnvironmentRegistryCredential
|
@@ -3073,6 +3332,108 @@ module Aws::SecurityHub
|
|
3073
3332
|
include Aws::Structure
|
3074
3333
|
end
|
3075
3334
|
|
3335
|
+
# Information about CloudWatch Logs for the build project.
|
3336
|
+
#
|
3337
|
+
# @note When making an API call, you may pass AwsCodeBuildProjectLogsConfigCloudWatchLogsDetails
|
3338
|
+
# data as a hash:
|
3339
|
+
#
|
3340
|
+
# {
|
3341
|
+
# group_name: "NonEmptyString",
|
3342
|
+
# status: "NonEmptyString",
|
3343
|
+
# stream_name: "NonEmptyString",
|
3344
|
+
# }
|
3345
|
+
#
|
3346
|
+
# @!attribute [rw] group_name
|
3347
|
+
# The group name of the logs in CloudWatch Logs.
|
3348
|
+
# @return [String]
|
3349
|
+
#
|
3350
|
+
# @!attribute [rw] status
|
3351
|
+
# The current status of the logs in CloudWatch Logs for a build
|
3352
|
+
# project.
|
3353
|
+
# @return [String]
|
3354
|
+
#
|
3355
|
+
# @!attribute [rw] stream_name
|
3356
|
+
# The prefix of the stream name of the CloudWatch Logs.
|
3357
|
+
# @return [String]
|
3358
|
+
#
|
3359
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsCodeBuildProjectLogsConfigCloudWatchLogsDetails AWS API Documentation
|
3360
|
+
#
|
3361
|
+
class AwsCodeBuildProjectLogsConfigCloudWatchLogsDetails < Struct.new(
|
3362
|
+
:group_name,
|
3363
|
+
:status,
|
3364
|
+
:stream_name)
|
3365
|
+
SENSITIVE = []
|
3366
|
+
include Aws::Structure
|
3367
|
+
end
|
3368
|
+
|
3369
|
+
# Information about logs for the build project.
|
3370
|
+
#
|
3371
|
+
# @note When making an API call, you may pass AwsCodeBuildProjectLogsConfigDetails
|
3372
|
+
# data as a hash:
|
3373
|
+
#
|
3374
|
+
# {
|
3375
|
+
# cloud_watch_logs: {
|
3376
|
+
# group_name: "NonEmptyString",
|
3377
|
+
# status: "NonEmptyString",
|
3378
|
+
# stream_name: "NonEmptyString",
|
3379
|
+
# },
|
3380
|
+
# s3_logs: {
|
3381
|
+
# encryption_disabled: false,
|
3382
|
+
# location: "NonEmptyString",
|
3383
|
+
# status: "NonEmptyString",
|
3384
|
+
# },
|
3385
|
+
# }
|
3386
|
+
#
|
3387
|
+
# @!attribute [rw] cloud_watch_logs
|
3388
|
+
# Information about CloudWatch Logs for the build project.
|
3389
|
+
# @return [Types::AwsCodeBuildProjectLogsConfigCloudWatchLogsDetails]
|
3390
|
+
#
|
3391
|
+
# @!attribute [rw] s3_logs
|
3392
|
+
# Information about logs built to an S3 bucket for a build project.
|
3393
|
+
# @return [Types::AwsCodeBuildProjectLogsConfigS3LogsDetails]
|
3394
|
+
#
|
3395
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsCodeBuildProjectLogsConfigDetails AWS API Documentation
|
3396
|
+
#
|
3397
|
+
class AwsCodeBuildProjectLogsConfigDetails < Struct.new(
|
3398
|
+
:cloud_watch_logs,
|
3399
|
+
:s3_logs)
|
3400
|
+
SENSITIVE = []
|
3401
|
+
include Aws::Structure
|
3402
|
+
end
|
3403
|
+
|
3404
|
+
# Information about logs built to an S3 bucket for a build project.
|
3405
|
+
#
|
3406
|
+
# @note When making an API call, you may pass AwsCodeBuildProjectLogsConfigS3LogsDetails
|
3407
|
+
# data as a hash:
|
3408
|
+
#
|
3409
|
+
# {
|
3410
|
+
# encryption_disabled: false,
|
3411
|
+
# location: "NonEmptyString",
|
3412
|
+
# status: "NonEmptyString",
|
3413
|
+
# }
|
3414
|
+
#
|
3415
|
+
# @!attribute [rw] encryption_disabled
|
3416
|
+
# Whether to disable encryption of the S3 build log output.
|
3417
|
+
# @return [Boolean]
|
3418
|
+
#
|
3419
|
+
# @!attribute [rw] location
|
3420
|
+
# The ARN of the S3 bucket and the path prefix for S3 logs.
|
3421
|
+
# @return [String]
|
3422
|
+
#
|
3423
|
+
# @!attribute [rw] status
|
3424
|
+
# The current status of the S3 build logs.
|
3425
|
+
# @return [String]
|
3426
|
+
#
|
3427
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsCodeBuildProjectLogsConfigS3LogsDetails AWS API Documentation
|
3428
|
+
#
|
3429
|
+
class AwsCodeBuildProjectLogsConfigS3LogsDetails < Struct.new(
|
3430
|
+
:encryption_disabled,
|
3431
|
+
:location,
|
3432
|
+
:status)
|
3433
|
+
SENSITIVE = []
|
3434
|
+
include Aws::Structure
|
3435
|
+
end
|
3436
|
+
|
3076
3437
|
# Information about the build input source code for this build project.
|
3077
3438
|
#
|
3078
3439
|
# @note When making an API call, you may pass AwsCodeBuildProjectSource
|
@@ -5246,6 +5607,114 @@ module Aws::SecurityHub
|
|
5246
5607
|
include Aws::Structure
|
5247
5608
|
end
|
5248
5609
|
|
5610
|
+
# Contains details about the service configuration for a VPC endpoint
|
5611
|
+
# service.
|
5612
|
+
#
|
5613
|
+
# @note When making an API call, you may pass AwsEc2VpcEndpointServiceDetails
|
5614
|
+
# data as a hash:
|
5615
|
+
#
|
5616
|
+
# {
|
5617
|
+
# acceptance_required: false,
|
5618
|
+
# availability_zones: ["NonEmptyString"],
|
5619
|
+
# base_endpoint_dns_names: ["NonEmptyString"],
|
5620
|
+
# manages_vpc_endpoints: false,
|
5621
|
+
# gateway_load_balancer_arns: ["NonEmptyString"],
|
5622
|
+
# network_load_balancer_arns: ["NonEmptyString"],
|
5623
|
+
# private_dns_name: "NonEmptyString",
|
5624
|
+
# service_id: "NonEmptyString",
|
5625
|
+
# service_name: "NonEmptyString",
|
5626
|
+
# service_state: "NonEmptyString",
|
5627
|
+
# service_type: [
|
5628
|
+
# {
|
5629
|
+
# service_type: "NonEmptyString",
|
5630
|
+
# },
|
5631
|
+
# ],
|
5632
|
+
# }
|
5633
|
+
#
|
5634
|
+
# @!attribute [rw] acceptance_required
|
5635
|
+
# Whether requests from other Amazon Web Services accounts to create
|
5636
|
+
# an endpoint to the service must first be accepted.
|
5637
|
+
# @return [Boolean]
|
5638
|
+
#
|
5639
|
+
# @!attribute [rw] availability_zones
|
5640
|
+
# The Availability Zones where the service is available.
|
5641
|
+
# @return [Array<String>]
|
5642
|
+
#
|
5643
|
+
# @!attribute [rw] base_endpoint_dns_names
|
5644
|
+
# The DNS names for the service.
|
5645
|
+
# @return [Array<String>]
|
5646
|
+
#
|
5647
|
+
# @!attribute [rw] manages_vpc_endpoints
|
5648
|
+
# Whether the service manages its VPC endpoints.
|
5649
|
+
# @return [Boolean]
|
5650
|
+
#
|
5651
|
+
# @!attribute [rw] gateway_load_balancer_arns
|
5652
|
+
# The ARNs of the Gateway Load Balancers for the service.
|
5653
|
+
# @return [Array<String>]
|
5654
|
+
#
|
5655
|
+
# @!attribute [rw] network_load_balancer_arns
|
5656
|
+
# The ARNs of the Network Load Balancers for the service.
|
5657
|
+
# @return [Array<String>]
|
5658
|
+
#
|
5659
|
+
# @!attribute [rw] private_dns_name
|
5660
|
+
# The private DNS name for the service.
|
5661
|
+
# @return [String]
|
5662
|
+
#
|
5663
|
+
# @!attribute [rw] service_id
|
5664
|
+
# The identifier of the service.
|
5665
|
+
# @return [String]
|
5666
|
+
#
|
5667
|
+
# @!attribute [rw] service_name
|
5668
|
+
# The name of the service.
|
5669
|
+
# @return [String]
|
5670
|
+
#
|
5671
|
+
# @!attribute [rw] service_state
|
5672
|
+
# The current state of the service.
|
5673
|
+
# @return [String]
|
5674
|
+
#
|
5675
|
+
# @!attribute [rw] service_type
|
5676
|
+
# The types for the service.
|
5677
|
+
# @return [Array<Types::AwsEc2VpcEndpointServiceServiceTypeDetails>]
|
5678
|
+
#
|
5679
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsEc2VpcEndpointServiceDetails AWS API Documentation
|
5680
|
+
#
|
5681
|
+
class AwsEc2VpcEndpointServiceDetails < Struct.new(
|
5682
|
+
:acceptance_required,
|
5683
|
+
:availability_zones,
|
5684
|
+
:base_endpoint_dns_names,
|
5685
|
+
:manages_vpc_endpoints,
|
5686
|
+
:gateway_load_balancer_arns,
|
5687
|
+
:network_load_balancer_arns,
|
5688
|
+
:private_dns_name,
|
5689
|
+
:service_id,
|
5690
|
+
:service_name,
|
5691
|
+
:service_state,
|
5692
|
+
:service_type)
|
5693
|
+
SENSITIVE = []
|
5694
|
+
include Aws::Structure
|
5695
|
+
end
|
5696
|
+
|
5697
|
+
# The service type information for a VPC endpoint service.
|
5698
|
+
#
|
5699
|
+
# @note When making an API call, you may pass AwsEc2VpcEndpointServiceServiceTypeDetails
|
5700
|
+
# data as a hash:
|
5701
|
+
#
|
5702
|
+
# {
|
5703
|
+
# service_type: "NonEmptyString",
|
5704
|
+
# }
|
5705
|
+
#
|
5706
|
+
# @!attribute [rw] service_type
|
5707
|
+
# The type of service.
|
5708
|
+
# @return [String]
|
5709
|
+
#
|
5710
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsEc2VpcEndpointServiceServiceTypeDetails AWS API Documentation
|
5711
|
+
#
|
5712
|
+
class AwsEc2VpcEndpointServiceServiceTypeDetails < Struct.new(
|
5713
|
+
:service_type)
|
5714
|
+
SENSITIVE = []
|
5715
|
+
include Aws::Structure
|
5716
|
+
end
|
5717
|
+
|
5249
5718
|
# Details about an Amazon EC2 VPN connection.
|
5250
5719
|
#
|
5251
5720
|
# @note When making an API call, you may pass AwsEc2VpnConnectionDetails
|
@@ -5687,7 +6156,113 @@ module Aws::SecurityHub
|
|
5687
6156
|
include Aws::Structure
|
5688
6157
|
end
|
5689
6158
|
|
5690
|
-
#
|
6159
|
+
# Provides information about an Amazon Elastic Container Registry
|
6160
|
+
# repository.
|
6161
|
+
#
|
6162
|
+
# @note When making an API call, you may pass AwsEcrRepositoryDetails
|
6163
|
+
# data as a hash:
|
6164
|
+
#
|
6165
|
+
# {
|
6166
|
+
# arn: "NonEmptyString",
|
6167
|
+
# image_scanning_configuration: {
|
6168
|
+
# scan_on_push: false,
|
6169
|
+
# },
|
6170
|
+
# image_tag_mutability: "NonEmptyString",
|
6171
|
+
# lifecycle_policy: {
|
6172
|
+
# lifecycle_policy_text: "NonEmptyString",
|
6173
|
+
# registry_id: "NonEmptyString",
|
6174
|
+
# },
|
6175
|
+
# repository_name: "NonEmptyString",
|
6176
|
+
# repository_policy_text: "NonEmptyString",
|
6177
|
+
# }
|
6178
|
+
#
|
6179
|
+
# @!attribute [rw] arn
|
6180
|
+
# The ARN of the repository.
|
6181
|
+
# @return [String]
|
6182
|
+
#
|
6183
|
+
# @!attribute [rw] image_scanning_configuration
|
6184
|
+
# The image scanning configuration for a repository.
|
6185
|
+
# @return [Types::AwsEcrRepositoryImageScanningConfigurationDetails]
|
6186
|
+
#
|
6187
|
+
# @!attribute [rw] image_tag_mutability
|
6188
|
+
# The tag mutability setting for the repository.
|
6189
|
+
# @return [String]
|
6190
|
+
#
|
6191
|
+
# @!attribute [rw] lifecycle_policy
|
6192
|
+
# Information about the lifecycle policy for the repository.
|
6193
|
+
# @return [Types::AwsEcrRepositoryLifecyclePolicyDetails]
|
6194
|
+
#
|
6195
|
+
# @!attribute [rw] repository_name
|
6196
|
+
# The name of the repository.
|
6197
|
+
# @return [String]
|
6198
|
+
#
|
6199
|
+
# @!attribute [rw] repository_policy_text
|
6200
|
+
# The text of the repository policy.
|
6201
|
+
# @return [String]
|
6202
|
+
#
|
6203
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsEcrRepositoryDetails AWS API Documentation
|
6204
|
+
#
|
6205
|
+
class AwsEcrRepositoryDetails < Struct.new(
|
6206
|
+
:arn,
|
6207
|
+
:image_scanning_configuration,
|
6208
|
+
:image_tag_mutability,
|
6209
|
+
:lifecycle_policy,
|
6210
|
+
:repository_name,
|
6211
|
+
:repository_policy_text)
|
6212
|
+
SENSITIVE = []
|
6213
|
+
include Aws::Structure
|
6214
|
+
end
|
6215
|
+
|
6216
|
+
# The image scanning configuration for a repository.
|
6217
|
+
#
|
6218
|
+
# @note When making an API call, you may pass AwsEcrRepositoryImageScanningConfigurationDetails
|
6219
|
+
# data as a hash:
|
6220
|
+
#
|
6221
|
+
# {
|
6222
|
+
# scan_on_push: false,
|
6223
|
+
# }
|
6224
|
+
#
|
6225
|
+
# @!attribute [rw] scan_on_push
|
6226
|
+
# Whether to scan images after they are pushed to a repository.
|
6227
|
+
# @return [Boolean]
|
6228
|
+
#
|
6229
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsEcrRepositoryImageScanningConfigurationDetails AWS API Documentation
|
6230
|
+
#
|
6231
|
+
class AwsEcrRepositoryImageScanningConfigurationDetails < Struct.new(
|
6232
|
+
:scan_on_push)
|
6233
|
+
SENSITIVE = []
|
6234
|
+
include Aws::Structure
|
6235
|
+
end
|
6236
|
+
|
6237
|
+
# Information about the lifecycle policy for the repository.
|
6238
|
+
#
|
6239
|
+
# @note When making an API call, you may pass AwsEcrRepositoryLifecyclePolicyDetails
|
6240
|
+
# data as a hash:
|
6241
|
+
#
|
6242
|
+
# {
|
6243
|
+
# lifecycle_policy_text: "NonEmptyString",
|
6244
|
+
# registry_id: "NonEmptyString",
|
6245
|
+
# }
|
6246
|
+
#
|
6247
|
+
# @!attribute [rw] lifecycle_policy_text
|
6248
|
+
# The text of the lifecycle policy.
|
6249
|
+
# @return [String]
|
6250
|
+
#
|
6251
|
+
# @!attribute [rw] registry_id
|
6252
|
+
# The Amazon Web Services account identifier that is associated with
|
6253
|
+
# the registry that contains the repository.
|
6254
|
+
# @return [String]
|
6255
|
+
#
|
6256
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsEcrRepositoryLifecyclePolicyDetails AWS API Documentation
|
6257
|
+
#
|
6258
|
+
class AwsEcrRepositoryLifecyclePolicyDetails < Struct.new(
|
6259
|
+
:lifecycle_policy_text,
|
6260
|
+
:registry_id)
|
6261
|
+
SENSITIVE = []
|
6262
|
+
include Aws::Structure
|
6263
|
+
end
|
6264
|
+
|
6265
|
+
# Indicates whether to enable CloudWatch Container Insights for the ECS
|
5691
6266
|
# cluster.
|
5692
6267
|
#
|
5693
6268
|
# @note When making an API call, you may pass AwsEcsClusterClusterSettingsDetails
|
@@ -8316,6 +8891,170 @@ module Aws::SecurityHub
|
|
8316
8891
|
include Aws::Structure
|
8317
8892
|
end
|
8318
8893
|
|
8894
|
+
# Provides details about an Amazon EKS cluster.
|
8895
|
+
#
|
8896
|
+
# @note When making an API call, you may pass AwsEksClusterDetails
|
8897
|
+
# data as a hash:
|
8898
|
+
#
|
8899
|
+
# {
|
8900
|
+
# arn: "NonEmptyString",
|
8901
|
+
# certificate_authority_data: "NonEmptyString",
|
8902
|
+
# cluster_status: "NonEmptyString",
|
8903
|
+
# endpoint: "NonEmptyString",
|
8904
|
+
# name: "NonEmptyString",
|
8905
|
+
# resources_vpc_config: {
|
8906
|
+
# security_group_ids: ["NonEmptyString"],
|
8907
|
+
# subnet_ids: ["NonEmptyString"],
|
8908
|
+
# },
|
8909
|
+
# role_arn: "NonEmptyString",
|
8910
|
+
# version: "NonEmptyString",
|
8911
|
+
# logging: {
|
8912
|
+
# cluster_logging: [
|
8913
|
+
# {
|
8914
|
+
# enabled: false,
|
8915
|
+
# types: ["NonEmptyString"],
|
8916
|
+
# },
|
8917
|
+
# ],
|
8918
|
+
# },
|
8919
|
+
# }
|
8920
|
+
#
|
8921
|
+
# @!attribute [rw] arn
|
8922
|
+
# The ARN of the cluster.
|
8923
|
+
# @return [String]
|
8924
|
+
#
|
8925
|
+
# @!attribute [rw] certificate_authority_data
|
8926
|
+
# The certificate authority data for the cluster.
|
8927
|
+
# @return [String]
|
8928
|
+
#
|
8929
|
+
# @!attribute [rw] cluster_status
|
8930
|
+
# The status of the cluster.
|
8931
|
+
# @return [String]
|
8932
|
+
#
|
8933
|
+
# @!attribute [rw] endpoint
|
8934
|
+
# The endpoint for the Amazon EKS API server.
|
8935
|
+
# @return [String]
|
8936
|
+
#
|
8937
|
+
# @!attribute [rw] name
|
8938
|
+
# The name of the cluster.
|
8939
|
+
# @return [String]
|
8940
|
+
#
|
8941
|
+
# @!attribute [rw] resources_vpc_config
|
8942
|
+
# The VPC configuration used by the cluster control plane.
|
8943
|
+
# @return [Types::AwsEksClusterResourcesVpcConfigDetails]
|
8944
|
+
#
|
8945
|
+
# @!attribute [rw] role_arn
|
8946
|
+
# The ARN of the IAM role that provides permissions for the Amazon EKS
|
8947
|
+
# control plane to make calls to Amazon Web Services API operations on
|
8948
|
+
# your behalf.
|
8949
|
+
# @return [String]
|
8950
|
+
#
|
8951
|
+
# @!attribute [rw] version
|
8952
|
+
# The Amazon EKS server version for the cluster.
|
8953
|
+
# @return [String]
|
8954
|
+
#
|
8955
|
+
# @!attribute [rw] logging
|
8956
|
+
# The logging configuration for the cluster.
|
8957
|
+
# @return [Types::AwsEksClusterLoggingDetails]
|
8958
|
+
#
|
8959
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsEksClusterDetails AWS API Documentation
|
8960
|
+
#
|
8961
|
+
class AwsEksClusterDetails < Struct.new(
|
8962
|
+
:arn,
|
8963
|
+
:certificate_authority_data,
|
8964
|
+
:cluster_status,
|
8965
|
+
:endpoint,
|
8966
|
+
:name,
|
8967
|
+
:resources_vpc_config,
|
8968
|
+
:role_arn,
|
8969
|
+
:version,
|
8970
|
+
:logging)
|
8971
|
+
SENSITIVE = []
|
8972
|
+
include Aws::Structure
|
8973
|
+
end
|
8974
|
+
|
8975
|
+
# Details for a cluster logging configuration.
|
8976
|
+
#
|
8977
|
+
# @note When making an API call, you may pass AwsEksClusterLoggingClusterLoggingDetails
|
8978
|
+
# data as a hash:
|
8979
|
+
#
|
8980
|
+
# {
|
8981
|
+
# enabled: false,
|
8982
|
+
# types: ["NonEmptyString"],
|
8983
|
+
# }
|
8984
|
+
#
|
8985
|
+
# @!attribute [rw] enabled
|
8986
|
+
# Whether the logging types that are listed in `Types` are enabled.
|
8987
|
+
# @return [Boolean]
|
8988
|
+
#
|
8989
|
+
# @!attribute [rw] types
|
8990
|
+
# A list of logging types.
|
8991
|
+
# @return [Array<String>]
|
8992
|
+
#
|
8993
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsEksClusterLoggingClusterLoggingDetails AWS API Documentation
|
8994
|
+
#
|
8995
|
+
class AwsEksClusterLoggingClusterLoggingDetails < Struct.new(
|
8996
|
+
:enabled,
|
8997
|
+
:types)
|
8998
|
+
SENSITIVE = []
|
8999
|
+
include Aws::Structure
|
9000
|
+
end
|
9001
|
+
|
9002
|
+
# The logging configuration for an Amazon EKS cluster.
|
9003
|
+
#
|
9004
|
+
# @note When making an API call, you may pass AwsEksClusterLoggingDetails
|
9005
|
+
# data as a hash:
|
9006
|
+
#
|
9007
|
+
# {
|
9008
|
+
# cluster_logging: [
|
9009
|
+
# {
|
9010
|
+
# enabled: false,
|
9011
|
+
# types: ["NonEmptyString"],
|
9012
|
+
# },
|
9013
|
+
# ],
|
9014
|
+
# }
|
9015
|
+
#
|
9016
|
+
# @!attribute [rw] cluster_logging
|
9017
|
+
# Cluster logging configurations.
|
9018
|
+
# @return [Array<Types::AwsEksClusterLoggingClusterLoggingDetails>]
|
9019
|
+
#
|
9020
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsEksClusterLoggingDetails AWS API Documentation
|
9021
|
+
#
|
9022
|
+
class AwsEksClusterLoggingDetails < Struct.new(
|
9023
|
+
:cluster_logging)
|
9024
|
+
SENSITIVE = []
|
9025
|
+
include Aws::Structure
|
9026
|
+
end
|
9027
|
+
|
9028
|
+
# Information about the VPC configuration used by the cluster control
|
9029
|
+
# plane.
|
9030
|
+
#
|
9031
|
+
# @note When making an API call, you may pass AwsEksClusterResourcesVpcConfigDetails
|
9032
|
+
# data as a hash:
|
9033
|
+
#
|
9034
|
+
# {
|
9035
|
+
# security_group_ids: ["NonEmptyString"],
|
9036
|
+
# subnet_ids: ["NonEmptyString"],
|
9037
|
+
# }
|
9038
|
+
#
|
9039
|
+
# @!attribute [rw] security_group_ids
|
9040
|
+
# The security groups that are associated with the cross-account
|
9041
|
+
# elastic network interfaces that are used to allow communication
|
9042
|
+
# between your nodes and the Amazon EKS control plane.
|
9043
|
+
# @return [Array<String>]
|
9044
|
+
#
|
9045
|
+
# @!attribute [rw] subnet_ids
|
9046
|
+
# The subnets that are associated with the cluster.
|
9047
|
+
# @return [Array<String>]
|
9048
|
+
#
|
9049
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsEksClusterResourcesVpcConfigDetails AWS API Documentation
|
9050
|
+
#
|
9051
|
+
class AwsEksClusterResourcesVpcConfigDetails < Struct.new(
|
9052
|
+
:security_group_ids,
|
9053
|
+
:subnet_ids)
|
9054
|
+
SENSITIVE = []
|
9055
|
+
include Aws::Structure
|
9056
|
+
end
|
9057
|
+
|
8319
9058
|
# Contains details about an Elastic Beanstalk environment.
|
8320
9059
|
#
|
8321
9060
|
# @note When making an API call, you may pass AwsElasticBeanstalkEnvironmentDetails
|
@@ -8547,7 +9286,7 @@ module Aws::SecurityHub
|
|
8547
9286
|
include Aws::Structure
|
8548
9287
|
end
|
8549
9288
|
|
8550
|
-
# Information about an
|
9289
|
+
# Information about an Elasticsearch domain.
|
8551
9290
|
#
|
8552
9291
|
# @note When making an API call, you may pass AwsElasticsearchDomainDetails
|
8553
9292
|
# data as a hash:
|
@@ -8652,11 +9391,11 @@ module Aws::SecurityHub
|
|
8652
9391
|
# @return [Hash<String,String>]
|
8653
9392
|
#
|
8654
9393
|
# @!attribute [rw] elasticsearch_version
|
8655
|
-
#
|
9394
|
+
# OpenSearch version.
|
8656
9395
|
# @return [String]
|
8657
9396
|
#
|
8658
9397
|
# @!attribute [rw] elasticsearch_cluster_config
|
8659
|
-
# Information about an
|
9398
|
+
# Information about an OpenSearch cluster configuration.
|
8660
9399
|
# @return [Types::AwsElasticsearchDomainElasticsearchClusterConfigDetails]
|
8661
9400
|
#
|
8662
9401
|
# @!attribute [rw] encryption_at_rest_options
|
@@ -8678,7 +9417,7 @@ module Aws::SecurityHub
|
|
8678
9417
|
# @return [Types::AwsElasticsearchDomainServiceSoftwareOptions]
|
8679
9418
|
#
|
8680
9419
|
# @!attribute [rw] vpc_options
|
8681
|
-
# Information that
|
9420
|
+
# Information that OpenSearch derives based on `VPCOptions` for the
|
8682
9421
|
# domain.
|
8683
9422
|
# @return [Types::AwsElasticsearchDomainVPCOptions]
|
8684
9423
|
#
|
@@ -8719,7 +9458,7 @@ module Aws::SecurityHub
|
|
8719
9458
|
#
|
8720
9459
|
# @!attribute [rw] tls_security_policy
|
8721
9460
|
# The TLS security policy to apply to the HTTPS endpoint of the
|
8722
|
-
#
|
9461
|
+
# OpenSearch domain.
|
8723
9462
|
#
|
8724
9463
|
# Valid values:
|
8725
9464
|
#
|
@@ -8737,7 +9476,7 @@ module Aws::SecurityHub
|
|
8737
9476
|
include Aws::Structure
|
8738
9477
|
end
|
8739
9478
|
|
8740
|
-
# details about the configuration of an
|
9479
|
+
# details about the configuration of an OpenSearch cluster.
|
8741
9480
|
#
|
8742
9481
|
# @note When making an API call, you may pass AwsElasticsearchDomainElasticsearchClusterConfigDetails
|
8743
9482
|
# data as a hash:
|
@@ -8789,8 +9528,8 @@ module Aws::SecurityHub
|
|
8789
9528
|
#
|
8790
9529
|
# @!attribute [rw] zone_awareness_enabled
|
8791
9530
|
# Whether to enable zone awareness for the Elasticsearch domain. When
|
8792
|
-
# zone awareness is enabled,
|
8793
|
-
#
|
9531
|
+
# zone awareness is enabled, OpenSearch allocates the cluster's nodes
|
9532
|
+
# and replica index shards across Availability Zones in the same
|
8794
9533
|
# Region. This prevents data loss and minimizes downtime if a node or
|
8795
9534
|
# data center fails.
|
8796
9535
|
# @return [Boolean]
|
@@ -8880,11 +9619,11 @@ module Aws::SecurityHub
|
|
8880
9619
|
# }
|
8881
9620
|
#
|
8882
9621
|
# @!attribute [rw] index_slow_logs
|
8883
|
-
# Configures the
|
9622
|
+
# Configures the OpenSearch index logs publishing.
|
8884
9623
|
# @return [Types::AwsElasticsearchDomainLogPublishingOptionsLogConfig]
|
8885
9624
|
#
|
8886
9625
|
# @!attribute [rw] search_slow_logs
|
8887
|
-
# Configures the
|
9626
|
+
# Configures the OpenSearch search slow log publishing.
|
8888
9627
|
# @return [Types::AwsElasticsearchDomainLogPublishingOptionsLogConfig]
|
8889
9628
|
#
|
8890
9629
|
# @!attribute [rw] audit_logs
|
@@ -8967,7 +9706,7 @@ module Aws::SecurityHub
|
|
8967
9706
|
#
|
8968
9707
|
# @!attribute [rw] automated_update_date
|
8969
9708
|
# The epoch time when the deployment window closes for required
|
8970
|
-
# updates. After this time, Amazon
|
9709
|
+
# updates. After this time, Amazon OpenSearch Service schedules the
|
8971
9710
|
# software upgrade automatically.
|
8972
9711
|
# @return [String]
|
8973
9712
|
#
|
@@ -9010,7 +9749,7 @@ module Aws::SecurityHub
|
|
9010
9749
|
include Aws::Structure
|
9011
9750
|
end
|
9012
9751
|
|
9013
|
-
# Information that
|
9752
|
+
# Information that OpenSearch derives based on `VPCOptions` for the
|
9014
9753
|
# domain.
|
9015
9754
|
#
|
9016
9755
|
# @note When making an API call, you may pass AwsElasticsearchDomainVPCOptions
|
@@ -9766,6 +10505,33 @@ module Aws::SecurityHub
|
|
9766
10505
|
include Aws::Structure
|
9767
10506
|
end
|
9768
10507
|
|
10508
|
+
# A load balancer attribute.
|
10509
|
+
#
|
10510
|
+
# @note When making an API call, you may pass AwsElbv2LoadBalancerAttribute
|
10511
|
+
# data as a hash:
|
10512
|
+
#
|
10513
|
+
# {
|
10514
|
+
# key: "NonEmptyString",
|
10515
|
+
# value: "NonEmptyString",
|
10516
|
+
# }
|
10517
|
+
#
|
10518
|
+
# @!attribute [rw] key
|
10519
|
+
# The name of the load balancer attribute.
|
10520
|
+
# @return [String]
|
10521
|
+
#
|
10522
|
+
# @!attribute [rw] value
|
10523
|
+
# The value of the load balancer attribute.
|
10524
|
+
# @return [String]
|
10525
|
+
#
|
10526
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsElbv2LoadBalancerAttribute AWS API Documentation
|
10527
|
+
#
|
10528
|
+
class AwsElbv2LoadBalancerAttribute < Struct.new(
|
10529
|
+
:key,
|
10530
|
+
:value)
|
10531
|
+
SENSITIVE = []
|
10532
|
+
include Aws::Structure
|
10533
|
+
end
|
10534
|
+
|
9769
10535
|
# Information about a load balancer.
|
9770
10536
|
#
|
9771
10537
|
# @note When making an API call, you may pass AwsElbv2LoadBalancerDetails
|
@@ -9790,6 +10556,12 @@ module Aws::SecurityHub
|
|
9790
10556
|
# },
|
9791
10557
|
# type: "NonEmptyString",
|
9792
10558
|
# vpc_id: "NonEmptyString",
|
10559
|
+
# load_balancer_attributes: [
|
10560
|
+
# {
|
10561
|
+
# key: "NonEmptyString",
|
10562
|
+
# value: "NonEmptyString",
|
10563
|
+
# },
|
10564
|
+
# ],
|
9793
10565
|
# }
|
9794
10566
|
#
|
9795
10567
|
# @!attribute [rw] availability_zones
|
@@ -9844,6 +10616,10 @@ module Aws::SecurityHub
|
|
9844
10616
|
# The ID of the VPC for the load balancer.
|
9845
10617
|
# @return [String]
|
9846
10618
|
#
|
10619
|
+
# @!attribute [rw] load_balancer_attributes
|
10620
|
+
# Attributes of the load balancer.
|
10621
|
+
# @return [Array<Types::AwsElbv2LoadBalancerAttribute>]
|
10622
|
+
#
|
9847
10623
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsElbv2LoadBalancerDetails AWS API Documentation
|
9848
10624
|
#
|
9849
10625
|
class AwsElbv2LoadBalancerDetails < Struct.new(
|
@@ -9856,7 +10632,8 @@ module Aws::SecurityHub
|
|
9856
10632
|
:security_groups,
|
9857
10633
|
:state,
|
9858
10634
|
:type,
|
9859
|
-
:vpc_id
|
10635
|
+
:vpc_id,
|
10636
|
+
:load_balancer_attributes)
|
9860
10637
|
SENSITIVE = []
|
9861
10638
|
include Aws::Structure
|
9862
10639
|
end
|
@@ -11092,137 +11869,668 @@ module Aws::SecurityHub
|
|
11092
11869
|
#
|
11093
11870
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsLambdaFunctionEnvironmentError AWS API Documentation
|
11094
11871
|
#
|
11095
|
-
class AwsLambdaFunctionEnvironmentError < Struct.new(
|
11096
|
-
:error_code,
|
11097
|
-
:message)
|
11872
|
+
class AwsLambdaFunctionEnvironmentError < Struct.new(
|
11873
|
+
:error_code,
|
11874
|
+
:message)
|
11875
|
+
SENSITIVE = []
|
11876
|
+
include Aws::Structure
|
11877
|
+
end
|
11878
|
+
|
11879
|
+
# An Lambda layer.
|
11880
|
+
#
|
11881
|
+
# @note When making an API call, you may pass AwsLambdaFunctionLayer
|
11882
|
+
# data as a hash:
|
11883
|
+
#
|
11884
|
+
# {
|
11885
|
+
# arn: "NonEmptyString",
|
11886
|
+
# code_size: 1,
|
11887
|
+
# }
|
11888
|
+
#
|
11889
|
+
# @!attribute [rw] arn
|
11890
|
+
# The ARN of the function layer.
|
11891
|
+
# @return [String]
|
11892
|
+
#
|
11893
|
+
# @!attribute [rw] code_size
|
11894
|
+
# The size of the layer archive in bytes.
|
11895
|
+
# @return [Integer]
|
11896
|
+
#
|
11897
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsLambdaFunctionLayer AWS API Documentation
|
11898
|
+
#
|
11899
|
+
class AwsLambdaFunctionLayer < Struct.new(
|
11900
|
+
:arn,
|
11901
|
+
:code_size)
|
11902
|
+
SENSITIVE = []
|
11903
|
+
include Aws::Structure
|
11904
|
+
end
|
11905
|
+
|
11906
|
+
# The function's X-Ray tracing configuration.
|
11907
|
+
#
|
11908
|
+
# @note When making an API call, you may pass AwsLambdaFunctionTracingConfig
|
11909
|
+
# data as a hash:
|
11910
|
+
#
|
11911
|
+
# {
|
11912
|
+
# mode: "NonEmptyString",
|
11913
|
+
# }
|
11914
|
+
#
|
11915
|
+
# @!attribute [rw] mode
|
11916
|
+
# The tracing mode.
|
11917
|
+
# @return [String]
|
11918
|
+
#
|
11919
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsLambdaFunctionTracingConfig AWS API Documentation
|
11920
|
+
#
|
11921
|
+
class AwsLambdaFunctionTracingConfig < Struct.new(
|
11922
|
+
:mode)
|
11923
|
+
SENSITIVE = []
|
11924
|
+
include Aws::Structure
|
11925
|
+
end
|
11926
|
+
|
11927
|
+
# The VPC security groups and subnets that are attached to a Lambda
|
11928
|
+
# function.
|
11929
|
+
#
|
11930
|
+
# @note When making an API call, you may pass AwsLambdaFunctionVpcConfig
|
11931
|
+
# data as a hash:
|
11932
|
+
#
|
11933
|
+
# {
|
11934
|
+
# security_group_ids: ["NonEmptyString"],
|
11935
|
+
# subnet_ids: ["NonEmptyString"],
|
11936
|
+
# vpc_id: "NonEmptyString",
|
11937
|
+
# }
|
11938
|
+
#
|
11939
|
+
# @!attribute [rw] security_group_ids
|
11940
|
+
# A list of VPC security groups IDs.
|
11941
|
+
# @return [Array<String>]
|
11942
|
+
#
|
11943
|
+
# @!attribute [rw] subnet_ids
|
11944
|
+
# A list of VPC subnet IDs.
|
11945
|
+
# @return [Array<String>]
|
11946
|
+
#
|
11947
|
+
# @!attribute [rw] vpc_id
|
11948
|
+
# The ID of the VPC.
|
11949
|
+
# @return [String]
|
11950
|
+
#
|
11951
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsLambdaFunctionVpcConfig AWS API Documentation
|
11952
|
+
#
|
11953
|
+
class AwsLambdaFunctionVpcConfig < Struct.new(
|
11954
|
+
:security_group_ids,
|
11955
|
+
:subnet_ids,
|
11956
|
+
:vpc_id)
|
11957
|
+
SENSITIVE = []
|
11958
|
+
include Aws::Structure
|
11959
|
+
end
|
11960
|
+
|
11961
|
+
# Details about a Lambda layer version.
|
11962
|
+
#
|
11963
|
+
# @note When making an API call, you may pass AwsLambdaLayerVersionDetails
|
11964
|
+
# data as a hash:
|
11965
|
+
#
|
11966
|
+
# {
|
11967
|
+
# version: 1,
|
11968
|
+
# compatible_runtimes: ["NonEmptyString"],
|
11969
|
+
# created_date: "NonEmptyString",
|
11970
|
+
# }
|
11971
|
+
#
|
11972
|
+
# @!attribute [rw] version
|
11973
|
+
# The version number.
|
11974
|
+
# @return [Integer]
|
11975
|
+
#
|
11976
|
+
# @!attribute [rw] compatible_runtimes
|
11977
|
+
# The layer's compatible runtimes. Maximum number of five items.
|
11978
|
+
#
|
11979
|
+
# Valid values: `nodejs10.x` \| `nodejs12.x` \| `java8` \| `java11` \|
|
11980
|
+
# `python2.7` \| `python3.6` \| `python3.7` \| `python3.8` \|
|
11981
|
+
# `dotnetcore1.0` \| `dotnetcore2.1` \| `go1.x` \| `ruby2.5` \|
|
11982
|
+
# `provided`
|
11983
|
+
# @return [Array<String>]
|
11984
|
+
#
|
11985
|
+
# @!attribute [rw] created_date
|
11986
|
+
# Indicates when the version was created.
|
11987
|
+
#
|
11988
|
+
# Uses the `date-time` format specified in [RFC 3339 section 5.6,
|
11989
|
+
# Internet Date/Time Format][1]. The value cannot contain spaces. For
|
11990
|
+
# example, `2020-03-22T13:22:13.933Z`.
|
11991
|
+
#
|
11992
|
+
#
|
11993
|
+
#
|
11994
|
+
# [1]: https://tools.ietf.org/html/rfc3339#section-5.6
|
11995
|
+
# @return [String]
|
11996
|
+
#
|
11997
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsLambdaLayerVersionDetails AWS API Documentation
|
11998
|
+
#
|
11999
|
+
class AwsLambdaLayerVersionDetails < Struct.new(
|
12000
|
+
:version,
|
12001
|
+
:compatible_runtimes,
|
12002
|
+
:created_date)
|
12003
|
+
SENSITIVE = []
|
12004
|
+
include Aws::Structure
|
12005
|
+
end
|
12006
|
+
|
12007
|
+
# Details about the configuration of an OpenSearch cluster.
|
12008
|
+
#
|
12009
|
+
# @note When making an API call, you may pass AwsOpenSearchServiceDomainClusterConfigDetails
|
12010
|
+
# data as a hash:
|
12011
|
+
#
|
12012
|
+
# {
|
12013
|
+
# instance_count: 1,
|
12014
|
+
# warm_enabled: false,
|
12015
|
+
# warm_count: 1,
|
12016
|
+
# dedicated_master_enabled: false,
|
12017
|
+
# zone_awareness_config: {
|
12018
|
+
# availability_zone_count: 1,
|
12019
|
+
# },
|
12020
|
+
# dedicated_master_count: 1,
|
12021
|
+
# instance_type: "NonEmptyString",
|
12022
|
+
# warm_type: "NonEmptyString",
|
12023
|
+
# zone_awareness_enabled: false,
|
12024
|
+
# dedicated_master_type: "NonEmptyString",
|
12025
|
+
# }
|
12026
|
+
#
|
12027
|
+
# @!attribute [rw] instance_count
|
12028
|
+
# The number of data nodes to use in the OpenSearch domain.
|
12029
|
+
# @return [Integer]
|
12030
|
+
#
|
12031
|
+
# @!attribute [rw] warm_enabled
|
12032
|
+
# Whether UltraWarm is enabled.
|
12033
|
+
# @return [Boolean]
|
12034
|
+
#
|
12035
|
+
# @!attribute [rw] warm_count
|
12036
|
+
# The number of UltraWarm instances.
|
12037
|
+
# @return [Integer]
|
12038
|
+
#
|
12039
|
+
# @!attribute [rw] dedicated_master_enabled
|
12040
|
+
# Whether to use a dedicated master node for the OpenSearch domain. A
|
12041
|
+
# dedicated master node performs cluster management tasks, but does
|
12042
|
+
# not hold data or respond to data upload requests.
|
12043
|
+
# @return [Boolean]
|
12044
|
+
#
|
12045
|
+
# @!attribute [rw] zone_awareness_config
|
12046
|
+
# Configuration options for zone awareness. Provided if
|
12047
|
+
# `ZoneAwarenessEnabled` is `true`.
|
12048
|
+
# @return [Types::AwsOpenSearchServiceDomainClusterConfigZoneAwarenessConfigDetails]
|
12049
|
+
#
|
12050
|
+
# @!attribute [rw] dedicated_master_count
|
12051
|
+
# The number of instances to use for the master node. If this
|
12052
|
+
# attribute is specified, then `DedicatedMasterEnabled` must be
|
12053
|
+
# `true`.
|
12054
|
+
# @return [Integer]
|
12055
|
+
#
|
12056
|
+
# @!attribute [rw] instance_type
|
12057
|
+
# The instance type for your data nodes.
|
12058
|
+
# @return [String]
|
12059
|
+
#
|
12060
|
+
# @!attribute [rw] warm_type
|
12061
|
+
# The type of UltraWarm instance.
|
12062
|
+
# @return [String]
|
12063
|
+
#
|
12064
|
+
# @!attribute [rw] zone_awareness_enabled
|
12065
|
+
# Whether to enable zone awareness for the OpenSearch domain. When
|
12066
|
+
# zone awareness is enabled, OpenSearch Service allocates the
|
12067
|
+
# cluster's nodes and replica index shards across Availability Zones
|
12068
|
+
# (AZs) in the same Region. This prevents data loss and minimizes
|
12069
|
+
# downtime if a node or data center fails.
|
12070
|
+
# @return [Boolean]
|
12071
|
+
#
|
12072
|
+
# @!attribute [rw] dedicated_master_type
|
12073
|
+
# The hardware configuration of the computer that hosts the dedicated
|
12074
|
+
# master node.
|
12075
|
+
#
|
12076
|
+
# If this attribute is specified, then `DedicatedMasterEnabled` must
|
12077
|
+
# be `true`.
|
12078
|
+
# @return [String]
|
12079
|
+
#
|
12080
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsOpenSearchServiceDomainClusterConfigDetails AWS API Documentation
|
12081
|
+
#
|
12082
|
+
class AwsOpenSearchServiceDomainClusterConfigDetails < Struct.new(
|
12083
|
+
:instance_count,
|
12084
|
+
:warm_enabled,
|
12085
|
+
:warm_count,
|
12086
|
+
:dedicated_master_enabled,
|
12087
|
+
:zone_awareness_config,
|
12088
|
+
:dedicated_master_count,
|
12089
|
+
:instance_type,
|
12090
|
+
:warm_type,
|
12091
|
+
:zone_awareness_enabled,
|
12092
|
+
:dedicated_master_type)
|
12093
|
+
SENSITIVE = []
|
12094
|
+
include Aws::Structure
|
12095
|
+
end
|
12096
|
+
|
12097
|
+
# Configuration options for zone awareness.
|
12098
|
+
#
|
12099
|
+
# @note When making an API call, you may pass AwsOpenSearchServiceDomainClusterConfigZoneAwarenessConfigDetails
|
12100
|
+
# data as a hash:
|
12101
|
+
#
|
12102
|
+
# {
|
12103
|
+
# availability_zone_count: 1,
|
12104
|
+
# }
|
12105
|
+
#
|
12106
|
+
# @!attribute [rw] availability_zone_count
|
12107
|
+
# The number of Availability Zones that the domain uses. Valid values
|
12108
|
+
# are 2 and 3. The default is 2.
|
12109
|
+
# @return [Integer]
|
12110
|
+
#
|
12111
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsOpenSearchServiceDomainClusterConfigZoneAwarenessConfigDetails AWS API Documentation
|
12112
|
+
#
|
12113
|
+
class AwsOpenSearchServiceDomainClusterConfigZoneAwarenessConfigDetails < Struct.new(
|
12114
|
+
:availability_zone_count)
|
12115
|
+
SENSITIVE = []
|
12116
|
+
include Aws::Structure
|
12117
|
+
end
|
12118
|
+
|
12119
|
+
# Information about an Amazon OpenSearch Service domain.
|
12120
|
+
#
|
12121
|
+
# @note When making an API call, you may pass AwsOpenSearchServiceDomainDetails
|
12122
|
+
# data as a hash:
|
12123
|
+
#
|
12124
|
+
# {
|
12125
|
+
# arn: "NonEmptyString",
|
12126
|
+
# access_policies: "NonEmptyString",
|
12127
|
+
# domain_name: "NonEmptyString",
|
12128
|
+
# id: "NonEmptyString",
|
12129
|
+
# domain_endpoint: "NonEmptyString",
|
12130
|
+
# engine_version: "NonEmptyString",
|
12131
|
+
# encryption_at_rest_options: {
|
12132
|
+
# enabled: false,
|
12133
|
+
# kms_key_id: "NonEmptyString",
|
12134
|
+
# },
|
12135
|
+
# node_to_node_encryption_options: {
|
12136
|
+
# enabled: false,
|
12137
|
+
# },
|
12138
|
+
# service_software_options: {
|
12139
|
+
# automated_update_date: "NonEmptyString",
|
12140
|
+
# cancellable: false,
|
12141
|
+
# current_version: "NonEmptyString",
|
12142
|
+
# description: "NonEmptyString",
|
12143
|
+
# new_version: "NonEmptyString",
|
12144
|
+
# update_available: false,
|
12145
|
+
# update_status: "NonEmptyString",
|
12146
|
+
# optional_deployment: false,
|
12147
|
+
# },
|
12148
|
+
# cluster_config: {
|
12149
|
+
# instance_count: 1,
|
12150
|
+
# warm_enabled: false,
|
12151
|
+
# warm_count: 1,
|
12152
|
+
# dedicated_master_enabled: false,
|
12153
|
+
# zone_awareness_config: {
|
12154
|
+
# availability_zone_count: 1,
|
12155
|
+
# },
|
12156
|
+
# dedicated_master_count: 1,
|
12157
|
+
# instance_type: "NonEmptyString",
|
12158
|
+
# warm_type: "NonEmptyString",
|
12159
|
+
# zone_awareness_enabled: false,
|
12160
|
+
# dedicated_master_type: "NonEmptyString",
|
12161
|
+
# },
|
12162
|
+
# domain_endpoint_options: {
|
12163
|
+
# custom_endpoint_certificate_arn: "NonEmptyString",
|
12164
|
+
# custom_endpoint_enabled: false,
|
12165
|
+
# enforce_https: false,
|
12166
|
+
# custom_endpoint: "NonEmptyString",
|
12167
|
+
# tls_security_policy: "NonEmptyString",
|
12168
|
+
# },
|
12169
|
+
# vpc_options: {
|
12170
|
+
# security_group_ids: ["NonEmptyString"],
|
12171
|
+
# subnet_ids: ["NonEmptyString"],
|
12172
|
+
# },
|
12173
|
+
# log_publishing_options: {
|
12174
|
+
# index_slow_logs: {
|
12175
|
+
# cloud_watch_logs_log_group_arn: "NonEmptyString",
|
12176
|
+
# enabled: false,
|
12177
|
+
# },
|
12178
|
+
# search_slow_logs: {
|
12179
|
+
# cloud_watch_logs_log_group_arn: "NonEmptyString",
|
12180
|
+
# enabled: false,
|
12181
|
+
# },
|
12182
|
+
# audit_logs: {
|
12183
|
+
# cloud_watch_logs_log_group_arn: "NonEmptyString",
|
12184
|
+
# enabled: false,
|
12185
|
+
# },
|
12186
|
+
# },
|
12187
|
+
# domain_endpoints: {
|
12188
|
+
# "NonEmptyString" => "NonEmptyString",
|
12189
|
+
# },
|
12190
|
+
# }
|
12191
|
+
#
|
12192
|
+
# @!attribute [rw] arn
|
12193
|
+
# The ARN of the OpenSearch Service domain.
|
12194
|
+
# @return [String]
|
12195
|
+
#
|
12196
|
+
# @!attribute [rw] access_policies
|
12197
|
+
# IAM policy document that specifies the access policies for the
|
12198
|
+
# OpenSearch Service domain.
|
12199
|
+
# @return [String]
|
12200
|
+
#
|
12201
|
+
# @!attribute [rw] domain_name
|
12202
|
+
# The name of the endpoint.
|
12203
|
+
# @return [String]
|
12204
|
+
#
|
12205
|
+
# @!attribute [rw] id
|
12206
|
+
# The identifier of the domain.
|
12207
|
+
# @return [String]
|
12208
|
+
#
|
12209
|
+
# @!attribute [rw] domain_endpoint
|
12210
|
+
# The domain endpoint.
|
12211
|
+
# @return [String]
|
12212
|
+
#
|
12213
|
+
# @!attribute [rw] engine_version
|
12214
|
+
# The version of the domain engine.
|
12215
|
+
# @return [String]
|
12216
|
+
#
|
12217
|
+
# @!attribute [rw] encryption_at_rest_options
|
12218
|
+
# Details about the configuration for encryption at rest.
|
12219
|
+
# @return [Types::AwsOpenSearchServiceDomainEncryptionAtRestOptionsDetails]
|
12220
|
+
#
|
12221
|
+
# @!attribute [rw] node_to_node_encryption_options
|
12222
|
+
# Details about the configuration for node-to-node encryption.
|
12223
|
+
# @return [Types::AwsOpenSearchServiceDomainNodeToNodeEncryptionOptionsDetails]
|
12224
|
+
#
|
12225
|
+
# @!attribute [rw] service_software_options
|
12226
|
+
# Information about the status of a domain relative to the latest
|
12227
|
+
# service software.
|
12228
|
+
# @return [Types::AwsOpenSearchServiceDomainServiceSoftwareOptionsDetails]
|
12229
|
+
#
|
12230
|
+
# @!attribute [rw] cluster_config
|
12231
|
+
# Details about the configuration of an OpenSearch cluster.
|
12232
|
+
# @return [Types::AwsOpenSearchServiceDomainClusterConfigDetails]
|
12233
|
+
#
|
12234
|
+
# @!attribute [rw] domain_endpoint_options
|
12235
|
+
# Additional options for the domain endpoint.
|
12236
|
+
# @return [Types::AwsOpenSearchServiceDomainDomainEndpointOptionsDetails]
|
12237
|
+
#
|
12238
|
+
# @!attribute [rw] vpc_options
|
12239
|
+
# Information that OpenSearch Service derives based on `VPCOptions`
|
12240
|
+
# for the domain.
|
12241
|
+
# @return [Types::AwsOpenSearchServiceDomainVpcOptionsDetails]
|
12242
|
+
#
|
12243
|
+
# @!attribute [rw] log_publishing_options
|
12244
|
+
# Configures the CloudWatch Logs to publish for the OpenSearch domain.
|
12245
|
+
# @return [Types::AwsOpenSearchServiceDomainLogPublishingOptionsDetails]
|
12246
|
+
#
|
12247
|
+
# @!attribute [rw] domain_endpoints
|
12248
|
+
# The domain endpoints. Used if the OpenSearch domain resides in a
|
12249
|
+
# VPC.
|
12250
|
+
#
|
12251
|
+
# This is a map of key-value pairs. The key is always `vpc`. The value
|
12252
|
+
# is the endpoint.
|
12253
|
+
# @return [Hash<String,String>]
|
12254
|
+
#
|
12255
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsOpenSearchServiceDomainDetails AWS API Documentation
|
12256
|
+
#
|
12257
|
+
class AwsOpenSearchServiceDomainDetails < Struct.new(
|
12258
|
+
:arn,
|
12259
|
+
:access_policies,
|
12260
|
+
:domain_name,
|
12261
|
+
:id,
|
12262
|
+
:domain_endpoint,
|
12263
|
+
:engine_version,
|
12264
|
+
:encryption_at_rest_options,
|
12265
|
+
:node_to_node_encryption_options,
|
12266
|
+
:service_software_options,
|
12267
|
+
:cluster_config,
|
12268
|
+
:domain_endpoint_options,
|
12269
|
+
:vpc_options,
|
12270
|
+
:log_publishing_options,
|
12271
|
+
:domain_endpoints)
|
12272
|
+
SENSITIVE = []
|
12273
|
+
include Aws::Structure
|
12274
|
+
end
|
12275
|
+
|
12276
|
+
# Information about additional options for the domain endpoint.
|
12277
|
+
#
|
12278
|
+
# @note When making an API call, you may pass AwsOpenSearchServiceDomainDomainEndpointOptionsDetails
|
12279
|
+
# data as a hash:
|
12280
|
+
#
|
12281
|
+
# {
|
12282
|
+
# custom_endpoint_certificate_arn: "NonEmptyString",
|
12283
|
+
# custom_endpoint_enabled: false,
|
12284
|
+
# enforce_https: false,
|
12285
|
+
# custom_endpoint: "NonEmptyString",
|
12286
|
+
# tls_security_policy: "NonEmptyString",
|
12287
|
+
# }
|
12288
|
+
#
|
12289
|
+
# @!attribute [rw] custom_endpoint_certificate_arn
|
12290
|
+
# The ARN for the security certificate. The certificate is managed in
|
12291
|
+
# ACM.
|
12292
|
+
# @return [String]
|
12293
|
+
#
|
12294
|
+
# @!attribute [rw] custom_endpoint_enabled
|
12295
|
+
# Whether to enable a custom endpoint for the domain.
|
12296
|
+
# @return [Boolean]
|
12297
|
+
#
|
12298
|
+
# @!attribute [rw] enforce_https
|
12299
|
+
# Whether to require that all traffic to the domain arrive over HTTPS.
|
12300
|
+
# @return [Boolean]
|
12301
|
+
#
|
12302
|
+
# @!attribute [rw] custom_endpoint
|
12303
|
+
# The fully qualified URL for the custom endpoint.
|
12304
|
+
# @return [String]
|
12305
|
+
#
|
12306
|
+
# @!attribute [rw] tls_security_policy
|
12307
|
+
# The TLS security policy to apply to the HTTPS endpoint of the
|
12308
|
+
# OpenSearch domain.
|
12309
|
+
# @return [String]
|
12310
|
+
#
|
12311
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsOpenSearchServiceDomainDomainEndpointOptionsDetails AWS API Documentation
|
12312
|
+
#
|
12313
|
+
class AwsOpenSearchServiceDomainDomainEndpointOptionsDetails < Struct.new(
|
12314
|
+
:custom_endpoint_certificate_arn,
|
12315
|
+
:custom_endpoint_enabled,
|
12316
|
+
:enforce_https,
|
12317
|
+
:custom_endpoint,
|
12318
|
+
:tls_security_policy)
|
12319
|
+
SENSITIVE = []
|
12320
|
+
include Aws::Structure
|
12321
|
+
end
|
12322
|
+
|
12323
|
+
# Details about the configuration for encryption at rest for the
|
12324
|
+
# OpenSearch domain.
|
12325
|
+
#
|
12326
|
+
# @note When making an API call, you may pass AwsOpenSearchServiceDomainEncryptionAtRestOptionsDetails
|
12327
|
+
# data as a hash:
|
12328
|
+
#
|
12329
|
+
# {
|
12330
|
+
# enabled: false,
|
12331
|
+
# kms_key_id: "NonEmptyString",
|
12332
|
+
# }
|
12333
|
+
#
|
12334
|
+
# @!attribute [rw] enabled
|
12335
|
+
# Whether encryption at rest is enabled.
|
12336
|
+
# @return [Boolean]
|
12337
|
+
#
|
12338
|
+
# @!attribute [rw] kms_key_id
|
12339
|
+
# The KMS key ID.
|
12340
|
+
# @return [String]
|
12341
|
+
#
|
12342
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsOpenSearchServiceDomainEncryptionAtRestOptionsDetails AWS API Documentation
|
12343
|
+
#
|
12344
|
+
class AwsOpenSearchServiceDomainEncryptionAtRestOptionsDetails < Struct.new(
|
12345
|
+
:enabled,
|
12346
|
+
:kms_key_id)
|
12347
|
+
SENSITIVE = []
|
12348
|
+
include Aws::Structure
|
12349
|
+
end
|
12350
|
+
|
12351
|
+
# Configuration details for a log publishing option.
|
12352
|
+
#
|
12353
|
+
# @note When making an API call, you may pass AwsOpenSearchServiceDomainLogPublishingOption
|
12354
|
+
# data as a hash:
|
12355
|
+
#
|
12356
|
+
# {
|
12357
|
+
# cloud_watch_logs_log_group_arn: "NonEmptyString",
|
12358
|
+
# enabled: false,
|
12359
|
+
# }
|
12360
|
+
#
|
12361
|
+
# @!attribute [rw] cloud_watch_logs_log_group_arn
|
12362
|
+
# The ARN of the CloudWatch Logs group to publish the logs to.
|
12363
|
+
# @return [String]
|
12364
|
+
#
|
12365
|
+
# @!attribute [rw] enabled
|
12366
|
+
# Whether the log publishing is enabled.
|
12367
|
+
# @return [Boolean]
|
12368
|
+
#
|
12369
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsOpenSearchServiceDomainLogPublishingOption AWS API Documentation
|
12370
|
+
#
|
12371
|
+
class AwsOpenSearchServiceDomainLogPublishingOption < Struct.new(
|
12372
|
+
:cloud_watch_logs_log_group_arn,
|
12373
|
+
:enabled)
|
12374
|
+
SENSITIVE = []
|
12375
|
+
include Aws::Structure
|
12376
|
+
end
|
12377
|
+
|
12378
|
+
# Configures the CloudWatch Logs to publish for the OpenSearch domain.
|
12379
|
+
#
|
12380
|
+
# @note When making an API call, you may pass AwsOpenSearchServiceDomainLogPublishingOptionsDetails
|
12381
|
+
# data as a hash:
|
12382
|
+
#
|
12383
|
+
# {
|
12384
|
+
# index_slow_logs: {
|
12385
|
+
# cloud_watch_logs_log_group_arn: "NonEmptyString",
|
12386
|
+
# enabled: false,
|
12387
|
+
# },
|
12388
|
+
# search_slow_logs: {
|
12389
|
+
# cloud_watch_logs_log_group_arn: "NonEmptyString",
|
12390
|
+
# enabled: false,
|
12391
|
+
# },
|
12392
|
+
# audit_logs: {
|
12393
|
+
# cloud_watch_logs_log_group_arn: "NonEmptyString",
|
12394
|
+
# enabled: false,
|
12395
|
+
# },
|
12396
|
+
# }
|
12397
|
+
#
|
12398
|
+
# @!attribute [rw] index_slow_logs
|
12399
|
+
# Configures the OpenSearch index logs publishing.
|
12400
|
+
# @return [Types::AwsOpenSearchServiceDomainLogPublishingOption]
|
12401
|
+
#
|
12402
|
+
# @!attribute [rw] search_slow_logs
|
12403
|
+
# Configures the OpenSearch search slow log publishing.
|
12404
|
+
# @return [Types::AwsOpenSearchServiceDomainLogPublishingOption]
|
12405
|
+
#
|
12406
|
+
# @!attribute [rw] audit_logs
|
12407
|
+
# Configures the OpenSearch audit logs publishing.
|
12408
|
+
# @return [Types::AwsOpenSearchServiceDomainLogPublishingOption]
|
12409
|
+
#
|
12410
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsOpenSearchServiceDomainLogPublishingOptionsDetails AWS API Documentation
|
12411
|
+
#
|
12412
|
+
class AwsOpenSearchServiceDomainLogPublishingOptionsDetails < Struct.new(
|
12413
|
+
:index_slow_logs,
|
12414
|
+
:search_slow_logs,
|
12415
|
+
:audit_logs)
|
11098
12416
|
SENSITIVE = []
|
11099
12417
|
include Aws::Structure
|
11100
12418
|
end
|
11101
12419
|
|
11102
|
-
#
|
12420
|
+
# Provides details about the configuration for node-to-node encryption.
|
11103
12421
|
#
|
11104
|
-
# @note When making an API call, you may pass
|
12422
|
+
# @note When making an API call, you may pass AwsOpenSearchServiceDomainNodeToNodeEncryptionOptionsDetails
|
11105
12423
|
# data as a hash:
|
11106
12424
|
#
|
11107
12425
|
# {
|
11108
|
-
#
|
11109
|
-
# code_size: 1,
|
12426
|
+
# enabled: false,
|
11110
12427
|
# }
|
11111
12428
|
#
|
11112
|
-
# @!attribute [rw]
|
11113
|
-
#
|
11114
|
-
# @return [
|
11115
|
-
#
|
11116
|
-
# @!attribute [rw] code_size
|
11117
|
-
# The size of the layer archive in bytes.
|
11118
|
-
# @return [Integer]
|
12429
|
+
# @!attribute [rw] enabled
|
12430
|
+
# Whether node-to-node encryption is enabled.
|
12431
|
+
# @return [Boolean]
|
11119
12432
|
#
|
11120
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/
|
12433
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsOpenSearchServiceDomainNodeToNodeEncryptionOptionsDetails AWS API Documentation
|
11121
12434
|
#
|
11122
|
-
class
|
11123
|
-
:
|
11124
|
-
:code_size)
|
12435
|
+
class AwsOpenSearchServiceDomainNodeToNodeEncryptionOptionsDetails < Struct.new(
|
12436
|
+
:enabled)
|
11125
12437
|
SENSITIVE = []
|
11126
12438
|
include Aws::Structure
|
11127
12439
|
end
|
11128
12440
|
|
11129
|
-
#
|
12441
|
+
# Provides information about the state of the domain relative to the
|
12442
|
+
# latest service software.
|
11130
12443
|
#
|
11131
|
-
# @note When making an API call, you may pass
|
12444
|
+
# @note When making an API call, you may pass AwsOpenSearchServiceDomainServiceSoftwareOptionsDetails
|
11132
12445
|
# data as a hash:
|
11133
12446
|
#
|
11134
12447
|
# {
|
11135
|
-
#
|
12448
|
+
# automated_update_date: "NonEmptyString",
|
12449
|
+
# cancellable: false,
|
12450
|
+
# current_version: "NonEmptyString",
|
12451
|
+
# description: "NonEmptyString",
|
12452
|
+
# new_version: "NonEmptyString",
|
12453
|
+
# update_available: false,
|
12454
|
+
# update_status: "NonEmptyString",
|
12455
|
+
# optional_deployment: false,
|
11136
12456
|
# }
|
11137
12457
|
#
|
11138
|
-
# @!attribute [rw]
|
11139
|
-
# The
|
12458
|
+
# @!attribute [rw] automated_update_date
|
12459
|
+
# The epoch time when the deployment window closes for required
|
12460
|
+
# updates. After this time, OpenSearch Service schedules the software
|
12461
|
+
# upgrade automatically.
|
11140
12462
|
# @return [String]
|
11141
12463
|
#
|
11142
|
-
#
|
11143
|
-
#
|
11144
|
-
|
11145
|
-
:mode)
|
11146
|
-
SENSITIVE = []
|
11147
|
-
include Aws::Structure
|
11148
|
-
end
|
11149
|
-
|
11150
|
-
# The VPC security groups and subnets that are attached to a Lambda
|
11151
|
-
# function.
|
12464
|
+
# @!attribute [rw] cancellable
|
12465
|
+
# Whether a request to update the domain can be canceled.
|
12466
|
+
# @return [Boolean]
|
11152
12467
|
#
|
11153
|
-
#
|
11154
|
-
#
|
12468
|
+
# @!attribute [rw] current_version
|
12469
|
+
# The version of the service software that is currently installed on
|
12470
|
+
# the domain.
|
12471
|
+
# @return [String]
|
11155
12472
|
#
|
11156
|
-
#
|
11157
|
-
#
|
11158
|
-
#
|
11159
|
-
# vpc_id: "NonEmptyString",
|
11160
|
-
# }
|
12473
|
+
# @!attribute [rw] description
|
12474
|
+
# A more detailed description of the service software status.
|
12475
|
+
# @return [String]
|
11161
12476
|
#
|
11162
|
-
# @!attribute [rw]
|
11163
|
-
#
|
11164
|
-
# @return [
|
12477
|
+
# @!attribute [rw] new_version
|
12478
|
+
# The most recent version of the service software.
|
12479
|
+
# @return [String]
|
11165
12480
|
#
|
11166
|
-
# @!attribute [rw]
|
11167
|
-
#
|
11168
|
-
# @return [
|
12481
|
+
# @!attribute [rw] update_available
|
12482
|
+
# Whether a service software update is available for the domain.
|
12483
|
+
# @return [Boolean]
|
11169
12484
|
#
|
11170
|
-
# @!attribute [rw]
|
11171
|
-
# The
|
12485
|
+
# @!attribute [rw] update_status
|
12486
|
+
# The status of the service software update.
|
11172
12487
|
# @return [String]
|
11173
12488
|
#
|
11174
|
-
#
|
12489
|
+
# @!attribute [rw] optional_deployment
|
12490
|
+
# Whether the service software update is optional.
|
12491
|
+
# @return [Boolean]
|
11175
12492
|
#
|
11176
|
-
|
11177
|
-
|
11178
|
-
|
11179
|
-
:
|
12493
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsOpenSearchServiceDomainServiceSoftwareOptionsDetails AWS API Documentation
|
12494
|
+
#
|
12495
|
+
class AwsOpenSearchServiceDomainServiceSoftwareOptionsDetails < Struct.new(
|
12496
|
+
:automated_update_date,
|
12497
|
+
:cancellable,
|
12498
|
+
:current_version,
|
12499
|
+
:description,
|
12500
|
+
:new_version,
|
12501
|
+
:update_available,
|
12502
|
+
:update_status,
|
12503
|
+
:optional_deployment)
|
11180
12504
|
SENSITIVE = []
|
11181
12505
|
include Aws::Structure
|
11182
12506
|
end
|
11183
12507
|
|
11184
|
-
#
|
12508
|
+
# Contains information that OpenSearch Service derives based on the
|
12509
|
+
# `VPCOptions` for the domain.
|
11185
12510
|
#
|
11186
|
-
# @note When making an API call, you may pass
|
12511
|
+
# @note When making an API call, you may pass AwsOpenSearchServiceDomainVpcOptionsDetails
|
11187
12512
|
# data as a hash:
|
11188
12513
|
#
|
11189
12514
|
# {
|
11190
|
-
#
|
11191
|
-
#
|
11192
|
-
# created_date: "NonEmptyString",
|
12515
|
+
# security_group_ids: ["NonEmptyString"],
|
12516
|
+
# subnet_ids: ["NonEmptyString"],
|
11193
12517
|
# }
|
11194
12518
|
#
|
11195
|
-
# @!attribute [rw]
|
11196
|
-
# The
|
11197
|
-
#
|
11198
|
-
#
|
11199
|
-
# @!attribute [rw] compatible_runtimes
|
11200
|
-
# The layer's compatible runtimes. Maximum number of five items.
|
11201
|
-
#
|
11202
|
-
# Valid values: `nodejs10.x` \| `nodejs12.x` \| `java8` \| `java11` \|
|
11203
|
-
# `python2.7` \| `python3.6` \| `python3.7` \| `python3.8` \|
|
11204
|
-
# `dotnetcore1.0` \| `dotnetcore2.1` \| `go1.x` \| `ruby2.5` \|
|
11205
|
-
# `provided`
|
12519
|
+
# @!attribute [rw] security_group_ids
|
12520
|
+
# The list of security group IDs that are associated with the VPC
|
12521
|
+
# endpoints for the domain.
|
11206
12522
|
# @return [Array<String>]
|
11207
12523
|
#
|
11208
|
-
# @!attribute [rw]
|
11209
|
-
#
|
11210
|
-
#
|
11211
|
-
#
|
11212
|
-
# Internet Date/Time Format][1]. The value cannot contain spaces. For
|
11213
|
-
# example, `2020-03-22T13:22:13.933Z`.
|
11214
|
-
#
|
11215
|
-
#
|
11216
|
-
#
|
11217
|
-
# [1]: https://tools.ietf.org/html/rfc3339#section-5.6
|
11218
|
-
# @return [String]
|
12524
|
+
# @!attribute [rw] subnet_ids
|
12525
|
+
# A list of subnet IDs that are associated with the VPC endpoints for
|
12526
|
+
# the domain.
|
12527
|
+
# @return [Array<String>]
|
11219
12528
|
#
|
11220
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/
|
12529
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsOpenSearchServiceDomainVpcOptionsDetails AWS API Documentation
|
11221
12530
|
#
|
11222
|
-
class
|
11223
|
-
:
|
11224
|
-
:
|
11225
|
-
:created_date)
|
12531
|
+
class AwsOpenSearchServiceDomainVpcOptionsDetails < Struct.new(
|
12532
|
+
:security_group_ids,
|
12533
|
+
:subnet_ids)
|
11226
12534
|
SENSITIVE = []
|
11227
12535
|
include Aws::Structure
|
11228
12536
|
end
|
@@ -14665,6 +15973,7 @@ module Aws::SecurityHub
|
|
14665
15973
|
# {
|
14666
15974
|
# owner_id: "NonEmptyString",
|
14667
15975
|
# owner_name: "NonEmptyString",
|
15976
|
+
# owner_account_id: "NonEmptyString",
|
14668
15977
|
# created_at: "NonEmptyString",
|
14669
15978
|
# server_side_encryption_configuration: {
|
14670
15979
|
# rules: [
|
@@ -14788,6 +16097,11 @@ module Aws::SecurityHub
|
|
14788
16097
|
# The display name of the owner of the S3 bucket.
|
14789
16098
|
# @return [String]
|
14790
16099
|
#
|
16100
|
+
# @!attribute [rw] owner_account_id
|
16101
|
+
# The Amazon Web Services account identifier of the account that owns
|
16102
|
+
# the S3 bucket.
|
16103
|
+
# @return [String]
|
16104
|
+
#
|
14791
16105
|
# @!attribute [rw] created_at
|
14792
16106
|
# Indicates when the S3 bucket was created.
|
14793
16107
|
#
|
@@ -14834,6 +16148,7 @@ module Aws::SecurityHub
|
|
14834
16148
|
class AwsS3BucketDetails < Struct.new(
|
14835
16149
|
:owner_id,
|
14836
16150
|
:owner_name,
|
16151
|
+
:owner_account_id,
|
14837
16152
|
:created_at,
|
14838
16153
|
:server_side_encryption_configuration,
|
14839
16154
|
:bucket_lifecycle_configuration,
|
@@ -15765,8 +17080,29 @@ module Aws::SecurityHub
|
|
15765
17080
|
# },
|
15766
17081
|
# aws_code_build_project: {
|
15767
17082
|
# encryption_key: "NonEmptyString",
|
17083
|
+
# artifacts: [
|
17084
|
+
# {
|
17085
|
+
# artifact_identifier: "NonEmptyString",
|
17086
|
+
# encryption_disabled: false,
|
17087
|
+
# location: "NonEmptyString",
|
17088
|
+
# name: "NonEmptyString",
|
17089
|
+
# namespace_type: "NonEmptyString",
|
17090
|
+
# override_artifact_name: false,
|
17091
|
+
# packaging: "NonEmptyString",
|
17092
|
+
# path: "NonEmptyString",
|
17093
|
+
# type: "NonEmptyString",
|
17094
|
+
# },
|
17095
|
+
# ],
|
15768
17096
|
# environment: {
|
15769
17097
|
# certificate: "NonEmptyString",
|
17098
|
+
# environment_variables: [
|
17099
|
+
# {
|
17100
|
+
# name: "NonEmptyString",
|
17101
|
+
# type: "NonEmptyString",
|
17102
|
+
# value: "NonEmptyString",
|
17103
|
+
# },
|
17104
|
+
# ],
|
17105
|
+
# privileged_mode: false,
|
15770
17106
|
# image_pull_credentials_type: "NonEmptyString",
|
15771
17107
|
# registry_credential: {
|
15772
17108
|
# credential: "NonEmptyString",
|
@@ -15782,6 +17118,18 @@ module Aws::SecurityHub
|
|
15782
17118
|
# insecure_ssl: false,
|
15783
17119
|
# },
|
15784
17120
|
# service_role: "NonEmptyString",
|
17121
|
+
# logs_config: {
|
17122
|
+
# cloud_watch_logs: {
|
17123
|
+
# group_name: "NonEmptyString",
|
17124
|
+
# status: "NonEmptyString",
|
17125
|
+
# stream_name: "NonEmptyString",
|
17126
|
+
# },
|
17127
|
+
# s3_logs: {
|
17128
|
+
# encryption_disabled: false,
|
17129
|
+
# location: "NonEmptyString",
|
17130
|
+
# status: "NonEmptyString",
|
17131
|
+
# },
|
17132
|
+
# },
|
15785
17133
|
# vpc_config: {
|
15786
17134
|
# vpc_id: "NonEmptyString",
|
15787
17135
|
# subnets: ["NonEmptyString"],
|
@@ -15833,6 +17181,15 @@ module Aws::SecurityHub
|
|
15833
17181
|
# },
|
15834
17182
|
# ],
|
15835
17183
|
# },
|
17184
|
+
# viewer_certificate: {
|
17185
|
+
# acm_certificate_arn: "NonEmptyString",
|
17186
|
+
# certificate: "NonEmptyString",
|
17187
|
+
# certificate_source: "NonEmptyString",
|
17188
|
+
# cloud_front_default_certificate: false,
|
17189
|
+
# iam_certificate_id: "NonEmptyString",
|
17190
|
+
# minimum_protocol_version: "NonEmptyString",
|
17191
|
+
# ssl_support_method: "NonEmptyString",
|
17192
|
+
# },
|
15836
17193
|
# status: "NonEmptyString",
|
15837
17194
|
# web_acl_id: "NonEmptyString",
|
15838
17195
|
# },
|
@@ -16071,6 +17428,12 @@ module Aws::SecurityHub
|
|
16071
17428
|
# },
|
16072
17429
|
# type: "NonEmptyString",
|
16073
17430
|
# vpc_id: "NonEmptyString",
|
17431
|
+
# load_balancer_attributes: [
|
17432
|
+
# {
|
17433
|
+
# key: "NonEmptyString",
|
17434
|
+
# value: "NonEmptyString",
|
17435
|
+
# },
|
17436
|
+
# ],
|
16074
17437
|
# },
|
16075
17438
|
# aws_elastic_beanstalk_environment: {
|
16076
17439
|
# application_name: "NonEmptyString",
|
@@ -16170,6 +17533,7 @@ module Aws::SecurityHub
|
|
16170
17533
|
# aws_s3_bucket: {
|
16171
17534
|
# owner_id: "NonEmptyString",
|
16172
17535
|
# owner_name: "NonEmptyString",
|
17536
|
+
# owner_account_id: "NonEmptyString",
|
16173
17537
|
# created_at: "NonEmptyString",
|
16174
17538
|
# server_side_encryption_configuration: {
|
16175
17539
|
# rules: [
|
@@ -17755,6 +19119,157 @@ module Aws::SecurityHub
|
|
17755
19119
|
# image_tags: ["NonEmptyString"],
|
17756
19120
|
# image_published_at: "NonEmptyString",
|
17757
19121
|
# },
|
19122
|
+
# aws_open_search_service_domain: {
|
19123
|
+
# arn: "NonEmptyString",
|
19124
|
+
# access_policies: "NonEmptyString",
|
19125
|
+
# domain_name: "NonEmptyString",
|
19126
|
+
# id: "NonEmptyString",
|
19127
|
+
# domain_endpoint: "NonEmptyString",
|
19128
|
+
# engine_version: "NonEmptyString",
|
19129
|
+
# encryption_at_rest_options: {
|
19130
|
+
# enabled: false,
|
19131
|
+
# kms_key_id: "NonEmptyString",
|
19132
|
+
# },
|
19133
|
+
# node_to_node_encryption_options: {
|
19134
|
+
# enabled: false,
|
19135
|
+
# },
|
19136
|
+
# service_software_options: {
|
19137
|
+
# automated_update_date: "NonEmptyString",
|
19138
|
+
# cancellable: false,
|
19139
|
+
# current_version: "NonEmptyString",
|
19140
|
+
# description: "NonEmptyString",
|
19141
|
+
# new_version: "NonEmptyString",
|
19142
|
+
# update_available: false,
|
19143
|
+
# update_status: "NonEmptyString",
|
19144
|
+
# optional_deployment: false,
|
19145
|
+
# },
|
19146
|
+
# cluster_config: {
|
19147
|
+
# instance_count: 1,
|
19148
|
+
# warm_enabled: false,
|
19149
|
+
# warm_count: 1,
|
19150
|
+
# dedicated_master_enabled: false,
|
19151
|
+
# zone_awareness_config: {
|
19152
|
+
# availability_zone_count: 1,
|
19153
|
+
# },
|
19154
|
+
# dedicated_master_count: 1,
|
19155
|
+
# instance_type: "NonEmptyString",
|
19156
|
+
# warm_type: "NonEmptyString",
|
19157
|
+
# zone_awareness_enabled: false,
|
19158
|
+
# dedicated_master_type: "NonEmptyString",
|
19159
|
+
# },
|
19160
|
+
# domain_endpoint_options: {
|
19161
|
+
# custom_endpoint_certificate_arn: "NonEmptyString",
|
19162
|
+
# custom_endpoint_enabled: false,
|
19163
|
+
# enforce_https: false,
|
19164
|
+
# custom_endpoint: "NonEmptyString",
|
19165
|
+
# tls_security_policy: "NonEmptyString",
|
19166
|
+
# },
|
19167
|
+
# vpc_options: {
|
19168
|
+
# security_group_ids: ["NonEmptyString"],
|
19169
|
+
# subnet_ids: ["NonEmptyString"],
|
19170
|
+
# },
|
19171
|
+
# log_publishing_options: {
|
19172
|
+
# index_slow_logs: {
|
19173
|
+
# cloud_watch_logs_log_group_arn: "NonEmptyString",
|
19174
|
+
# enabled: false,
|
19175
|
+
# },
|
19176
|
+
# search_slow_logs: {
|
19177
|
+
# cloud_watch_logs_log_group_arn: "NonEmptyString",
|
19178
|
+
# enabled: false,
|
19179
|
+
# },
|
19180
|
+
# audit_logs: {
|
19181
|
+
# cloud_watch_logs_log_group_arn: "NonEmptyString",
|
19182
|
+
# enabled: false,
|
19183
|
+
# },
|
19184
|
+
# },
|
19185
|
+
# domain_endpoints: {
|
19186
|
+
# "NonEmptyString" => "NonEmptyString",
|
19187
|
+
# },
|
19188
|
+
# },
|
19189
|
+
# aws_ec2_vpc_endpoint_service: {
|
19190
|
+
# acceptance_required: false,
|
19191
|
+
# availability_zones: ["NonEmptyString"],
|
19192
|
+
# base_endpoint_dns_names: ["NonEmptyString"],
|
19193
|
+
# manages_vpc_endpoints: false,
|
19194
|
+
# gateway_load_balancer_arns: ["NonEmptyString"],
|
19195
|
+
# network_load_balancer_arns: ["NonEmptyString"],
|
19196
|
+
# private_dns_name: "NonEmptyString",
|
19197
|
+
# service_id: "NonEmptyString",
|
19198
|
+
# service_name: "NonEmptyString",
|
19199
|
+
# service_state: "NonEmptyString",
|
19200
|
+
# service_type: [
|
19201
|
+
# {
|
19202
|
+
# service_type: "NonEmptyString",
|
19203
|
+
# },
|
19204
|
+
# ],
|
19205
|
+
# },
|
19206
|
+
# aws_xray_encryption_config: {
|
19207
|
+
# key_id: "NonEmptyString",
|
19208
|
+
# status: "NonEmptyString",
|
19209
|
+
# type: "NonEmptyString",
|
19210
|
+
# },
|
19211
|
+
# aws_waf_rate_based_rule: {
|
19212
|
+
# metric_name: "NonEmptyString",
|
19213
|
+
# name: "NonEmptyString",
|
19214
|
+
# rate_key: "NonEmptyString",
|
19215
|
+
# rate_limit: 1,
|
19216
|
+
# rule_id: "NonEmptyString",
|
19217
|
+
# match_predicates: [
|
19218
|
+
# {
|
19219
|
+
# data_id: "NonEmptyString",
|
19220
|
+
# negated: false,
|
19221
|
+
# type: "NonEmptyString",
|
19222
|
+
# },
|
19223
|
+
# ],
|
19224
|
+
# },
|
19225
|
+
# aws_waf_regional_rate_based_rule: {
|
19226
|
+
# metric_name: "NonEmptyString",
|
19227
|
+
# name: "NonEmptyString",
|
19228
|
+
# rate_key: "NonEmptyString",
|
19229
|
+
# rate_limit: 1,
|
19230
|
+
# rule_id: "NonEmptyString",
|
19231
|
+
# match_predicates: [
|
19232
|
+
# {
|
19233
|
+
# data_id: "NonEmptyString",
|
19234
|
+
# negated: false,
|
19235
|
+
# type: "NonEmptyString",
|
19236
|
+
# },
|
19237
|
+
# ],
|
19238
|
+
# },
|
19239
|
+
# aws_ecr_repository: {
|
19240
|
+
# arn: "NonEmptyString",
|
19241
|
+
# image_scanning_configuration: {
|
19242
|
+
# scan_on_push: false,
|
19243
|
+
# },
|
19244
|
+
# image_tag_mutability: "NonEmptyString",
|
19245
|
+
# lifecycle_policy: {
|
19246
|
+
# lifecycle_policy_text: "NonEmptyString",
|
19247
|
+
# registry_id: "NonEmptyString",
|
19248
|
+
# },
|
19249
|
+
# repository_name: "NonEmptyString",
|
19250
|
+
# repository_policy_text: "NonEmptyString",
|
19251
|
+
# },
|
19252
|
+
# aws_eks_cluster: {
|
19253
|
+
# arn: "NonEmptyString",
|
19254
|
+
# certificate_authority_data: "NonEmptyString",
|
19255
|
+
# cluster_status: "NonEmptyString",
|
19256
|
+
# endpoint: "NonEmptyString",
|
19257
|
+
# name: "NonEmptyString",
|
19258
|
+
# resources_vpc_config: {
|
19259
|
+
# security_group_ids: ["NonEmptyString"],
|
19260
|
+
# subnet_ids: ["NonEmptyString"],
|
19261
|
+
# },
|
19262
|
+
# role_arn: "NonEmptyString",
|
19263
|
+
# version: "NonEmptyString",
|
19264
|
+
# logging: {
|
19265
|
+
# cluster_logging: [
|
19266
|
+
# {
|
19267
|
+
# enabled: false,
|
19268
|
+
# types: ["NonEmptyString"],
|
19269
|
+
# },
|
19270
|
+
# ],
|
19271
|
+
# },
|
19272
|
+
# },
|
17758
19273
|
# },
|
17759
19274
|
# },
|
17760
19275
|
# ],
|
@@ -19858,6 +21373,213 @@ module Aws::SecurityHub
|
|
19858
21373
|
include Aws::Structure
|
19859
21374
|
end
|
19860
21375
|
|
21376
|
+
# Details about a rate-based rule for global resources. A rate-based
|
21377
|
+
# rule provides settings to indicate when to allow, block, or count a
|
21378
|
+
# request. Rate-based rules include the number of requests that arrive
|
21379
|
+
# over a specified period of time.
|
21380
|
+
#
|
21381
|
+
# @note When making an API call, you may pass AwsWafRateBasedRuleDetails
|
21382
|
+
# data as a hash:
|
21383
|
+
#
|
21384
|
+
# {
|
21385
|
+
# metric_name: "NonEmptyString",
|
21386
|
+
# name: "NonEmptyString",
|
21387
|
+
# rate_key: "NonEmptyString",
|
21388
|
+
# rate_limit: 1,
|
21389
|
+
# rule_id: "NonEmptyString",
|
21390
|
+
# match_predicates: [
|
21391
|
+
# {
|
21392
|
+
# data_id: "NonEmptyString",
|
21393
|
+
# negated: false,
|
21394
|
+
# type: "NonEmptyString",
|
21395
|
+
# },
|
21396
|
+
# ],
|
21397
|
+
# }
|
21398
|
+
#
|
21399
|
+
# @!attribute [rw] metric_name
|
21400
|
+
# The name of the metrics for the rate-based rule.
|
21401
|
+
# @return [String]
|
21402
|
+
#
|
21403
|
+
# @!attribute [rw] name
|
21404
|
+
# The name of the rate-based rule.
|
21405
|
+
# @return [String]
|
21406
|
+
#
|
21407
|
+
# @!attribute [rw] rate_key
|
21408
|
+
# The field that WAF uses to determine whether requests are likely
|
21409
|
+
# arriving from single source and are subject to rate monitoring.
|
21410
|
+
# @return [String]
|
21411
|
+
#
|
21412
|
+
# @!attribute [rw] rate_limit
|
21413
|
+
# The maximum number of requests that have an identical value for the
|
21414
|
+
# field specified in `RateKey` that are allowed within a five-minute
|
21415
|
+
# period. If the number of requests exceeds `RateLimit` and the other
|
21416
|
+
# predicates specified in the rule are met, WAF triggers the action
|
21417
|
+
# for the rule.
|
21418
|
+
# @return [Integer]
|
21419
|
+
#
|
21420
|
+
# @!attribute [rw] rule_id
|
21421
|
+
# The unique identifier for the rate-based rule.
|
21422
|
+
# @return [String]
|
21423
|
+
#
|
21424
|
+
# @!attribute [rw] match_predicates
|
21425
|
+
# The predicates to include in the rate-based rule.
|
21426
|
+
# @return [Array<Types::AwsWafRateBasedRuleMatchPredicate>]
|
21427
|
+
#
|
21428
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsWafRateBasedRuleDetails AWS API Documentation
|
21429
|
+
#
|
21430
|
+
class AwsWafRateBasedRuleDetails < Struct.new(
|
21431
|
+
:metric_name,
|
21432
|
+
:name,
|
21433
|
+
:rate_key,
|
21434
|
+
:rate_limit,
|
21435
|
+
:rule_id,
|
21436
|
+
:match_predicates)
|
21437
|
+
SENSITIVE = []
|
21438
|
+
include Aws::Structure
|
21439
|
+
end
|
21440
|
+
|
21441
|
+
# A match predicate. A predicate might look for characteristics such as
|
21442
|
+
# specific IP addresses, geographic locations, or sizes.
|
21443
|
+
#
|
21444
|
+
# @note When making an API call, you may pass AwsWafRateBasedRuleMatchPredicate
|
21445
|
+
# data as a hash:
|
21446
|
+
#
|
21447
|
+
# {
|
21448
|
+
# data_id: "NonEmptyString",
|
21449
|
+
# negated: false,
|
21450
|
+
# type: "NonEmptyString",
|
21451
|
+
# }
|
21452
|
+
#
|
21453
|
+
# @!attribute [rw] data_id
|
21454
|
+
# The unique identifier for the predicate.
|
21455
|
+
# @return [String]
|
21456
|
+
#
|
21457
|
+
# @!attribute [rw] negated
|
21458
|
+
# If set to `true`, then the rule actions are performed on requests
|
21459
|
+
# that match the predicate settings.
|
21460
|
+
#
|
21461
|
+
# If set to `false`, then the rule actions are performed on all
|
21462
|
+
# requests except those that match the predicate settings.
|
21463
|
+
# @return [Boolean]
|
21464
|
+
#
|
21465
|
+
# @!attribute [rw] type
|
21466
|
+
# The type of predicate.
|
21467
|
+
# @return [String]
|
21468
|
+
#
|
21469
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsWafRateBasedRuleMatchPredicate AWS API Documentation
|
21470
|
+
#
|
21471
|
+
class AwsWafRateBasedRuleMatchPredicate < Struct.new(
|
21472
|
+
:data_id,
|
21473
|
+
:negated,
|
21474
|
+
:type)
|
21475
|
+
SENSITIVE = []
|
21476
|
+
include Aws::Structure
|
21477
|
+
end
|
21478
|
+
|
21479
|
+
# contains details about a rate-based rule for Regional resources. A
|
21480
|
+
# rate-based rule provides settings to indicate when to allow, block, or
|
21481
|
+
# count a request. Rate-based rules include the number of requests that
|
21482
|
+
# arrive over a specified period of time.
|
21483
|
+
#
|
21484
|
+
# @note When making an API call, you may pass AwsWafRegionalRateBasedRuleDetails
|
21485
|
+
# data as a hash:
|
21486
|
+
#
|
21487
|
+
# {
|
21488
|
+
# metric_name: "NonEmptyString",
|
21489
|
+
# name: "NonEmptyString",
|
21490
|
+
# rate_key: "NonEmptyString",
|
21491
|
+
# rate_limit: 1,
|
21492
|
+
# rule_id: "NonEmptyString",
|
21493
|
+
# match_predicates: [
|
21494
|
+
# {
|
21495
|
+
# data_id: "NonEmptyString",
|
21496
|
+
# negated: false,
|
21497
|
+
# type: "NonEmptyString",
|
21498
|
+
# },
|
21499
|
+
# ],
|
21500
|
+
# }
|
21501
|
+
#
|
21502
|
+
# @!attribute [rw] metric_name
|
21503
|
+
# The name of the metrics for the rate-based rule.
|
21504
|
+
# @return [String]
|
21505
|
+
#
|
21506
|
+
# @!attribute [rw] name
|
21507
|
+
# The name of the rate-based rule.
|
21508
|
+
# @return [String]
|
21509
|
+
#
|
21510
|
+
# @!attribute [rw] rate_key
|
21511
|
+
# The field that WAF uses to determine whether requests are likely
|
21512
|
+
# arriving from single source and are subject to rate monitoring.
|
21513
|
+
# @return [String]
|
21514
|
+
#
|
21515
|
+
# @!attribute [rw] rate_limit
|
21516
|
+
# The maximum number of requests that have an identical value for the
|
21517
|
+
# field specified in `RateKey` that are allowed within a five-minute
|
21518
|
+
# period. If the number of requests exceeds `RateLimit` and the other
|
21519
|
+
# predicates specified in the rule are met, WAF triggers the action
|
21520
|
+
# for the rule.
|
21521
|
+
# @return [Integer]
|
21522
|
+
#
|
21523
|
+
# @!attribute [rw] rule_id
|
21524
|
+
# The unique identifier for the rate-based rule.
|
21525
|
+
# @return [String]
|
21526
|
+
#
|
21527
|
+
# @!attribute [rw] match_predicates
|
21528
|
+
# The predicates to include in the rate-based rule.
|
21529
|
+
# @return [Array<Types::AwsWafRegionalRateBasedRuleMatchPredicate>]
|
21530
|
+
#
|
21531
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsWafRegionalRateBasedRuleDetails AWS API Documentation
|
21532
|
+
#
|
21533
|
+
class AwsWafRegionalRateBasedRuleDetails < Struct.new(
|
21534
|
+
:metric_name,
|
21535
|
+
:name,
|
21536
|
+
:rate_key,
|
21537
|
+
:rate_limit,
|
21538
|
+
:rule_id,
|
21539
|
+
:match_predicates)
|
21540
|
+
SENSITIVE = []
|
21541
|
+
include Aws::Structure
|
21542
|
+
end
|
21543
|
+
|
21544
|
+
# Details for a match predicate. A predicate might look for
|
21545
|
+
# characteristics such as specific IP addresses, geographic locations,
|
21546
|
+
# or sizes.
|
21547
|
+
#
|
21548
|
+
# @note When making an API call, you may pass AwsWafRegionalRateBasedRuleMatchPredicate
|
21549
|
+
# data as a hash:
|
21550
|
+
#
|
21551
|
+
# {
|
21552
|
+
# data_id: "NonEmptyString",
|
21553
|
+
# negated: false,
|
21554
|
+
# type: "NonEmptyString",
|
21555
|
+
# }
|
21556
|
+
#
|
21557
|
+
# @!attribute [rw] data_id
|
21558
|
+
# The unique identifier for the predicate.
|
21559
|
+
# @return [String]
|
21560
|
+
#
|
21561
|
+
# @!attribute [rw] negated
|
21562
|
+
# If set to `true`, then the rule actions are performed on requests
|
21563
|
+
# that match the predicate settings.
|
21564
|
+
#
|
21565
|
+
# If set to `false`, then the rule actions are performed on all
|
21566
|
+
# requests except those that match the predicate settings.
|
21567
|
+
# @return [Boolean]
|
21568
|
+
#
|
21569
|
+
# @!attribute [rw] type
|
21570
|
+
# The type of predicate.
|
21571
|
+
# @return [String]
|
21572
|
+
#
|
21573
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsWafRegionalRateBasedRuleMatchPredicate AWS API Documentation
|
21574
|
+
#
|
21575
|
+
class AwsWafRegionalRateBasedRuleMatchPredicate < Struct.new(
|
21576
|
+
:data_id,
|
21577
|
+
:negated,
|
21578
|
+
:type)
|
21579
|
+
SENSITIVE = []
|
21580
|
+
include Aws::Structure
|
21581
|
+
end
|
21582
|
+
|
19861
21583
|
# Details about an WAF WebACL.
|
19862
21584
|
#
|
19863
21585
|
# @note When making an API call, you may pass AwsWafWebAclDetails
|
@@ -20001,6 +21723,42 @@ module Aws::SecurityHub
|
|
20001
21723
|
include Aws::Structure
|
20002
21724
|
end
|
20003
21725
|
|
21726
|
+
# Information about the encryption configuration for X-Ray.
|
21727
|
+
#
|
21728
|
+
# @note When making an API call, you may pass AwsXrayEncryptionConfigDetails
|
21729
|
+
# data as a hash:
|
21730
|
+
#
|
21731
|
+
# {
|
21732
|
+
# key_id: "NonEmptyString",
|
21733
|
+
# status: "NonEmptyString",
|
21734
|
+
# type: "NonEmptyString",
|
21735
|
+
# }
|
21736
|
+
#
|
21737
|
+
# @!attribute [rw] key_id
|
21738
|
+
# The identifier of the KMS key that is used for encryption. Provided
|
21739
|
+
# if `Type` is `KMS`.
|
21740
|
+
# @return [String]
|
21741
|
+
#
|
21742
|
+
# @!attribute [rw] status
|
21743
|
+
# The current status of the encryption configuration. When `Status` is
|
21744
|
+
# `UPDATING`, X-Ray might use both the old and new encryption.
|
21745
|
+
# @return [String]
|
21746
|
+
#
|
21747
|
+
# @!attribute [rw] type
|
21748
|
+
# The type of encryption. `KMS` indicates that the encryption uses KMS
|
21749
|
+
# keys. `NONE` indicates to use the default encryption.
|
21750
|
+
# @return [String]
|
21751
|
+
#
|
21752
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/AwsXrayEncryptionConfigDetails AWS API Documentation
|
21753
|
+
#
|
21754
|
+
class AwsXrayEncryptionConfigDetails < Struct.new(
|
21755
|
+
:key_id,
|
21756
|
+
:status,
|
21757
|
+
:type)
|
21758
|
+
SENSITIVE = []
|
21759
|
+
include Aws::Structure
|
21760
|
+
end
|
21761
|
+
|
20004
21762
|
# @note When making an API call, you may pass BatchDisableStandardsRequest
|
20005
21763
|
# data as a hash:
|
20006
21764
|
#
|
@@ -20347,8 +22105,29 @@ module Aws::SecurityHub
|
|
20347
22105
|
# },
|
20348
22106
|
# aws_code_build_project: {
|
20349
22107
|
# encryption_key: "NonEmptyString",
|
22108
|
+
# artifacts: [
|
22109
|
+
# {
|
22110
|
+
# artifact_identifier: "NonEmptyString",
|
22111
|
+
# encryption_disabled: false,
|
22112
|
+
# location: "NonEmptyString",
|
22113
|
+
# name: "NonEmptyString",
|
22114
|
+
# namespace_type: "NonEmptyString",
|
22115
|
+
# override_artifact_name: false,
|
22116
|
+
# packaging: "NonEmptyString",
|
22117
|
+
# path: "NonEmptyString",
|
22118
|
+
# type: "NonEmptyString",
|
22119
|
+
# },
|
22120
|
+
# ],
|
20350
22121
|
# environment: {
|
20351
22122
|
# certificate: "NonEmptyString",
|
22123
|
+
# environment_variables: [
|
22124
|
+
# {
|
22125
|
+
# name: "NonEmptyString",
|
22126
|
+
# type: "NonEmptyString",
|
22127
|
+
# value: "NonEmptyString",
|
22128
|
+
# },
|
22129
|
+
# ],
|
22130
|
+
# privileged_mode: false,
|
20352
22131
|
# image_pull_credentials_type: "NonEmptyString",
|
20353
22132
|
# registry_credential: {
|
20354
22133
|
# credential: "NonEmptyString",
|
@@ -20364,6 +22143,18 @@ module Aws::SecurityHub
|
|
20364
22143
|
# insecure_ssl: false,
|
20365
22144
|
# },
|
20366
22145
|
# service_role: "NonEmptyString",
|
22146
|
+
# logs_config: {
|
22147
|
+
# cloud_watch_logs: {
|
22148
|
+
# group_name: "NonEmptyString",
|
22149
|
+
# status: "NonEmptyString",
|
22150
|
+
# stream_name: "NonEmptyString",
|
22151
|
+
# },
|
22152
|
+
# s3_logs: {
|
22153
|
+
# encryption_disabled: false,
|
22154
|
+
# location: "NonEmptyString",
|
22155
|
+
# status: "NonEmptyString",
|
22156
|
+
# },
|
22157
|
+
# },
|
20367
22158
|
# vpc_config: {
|
20368
22159
|
# vpc_id: "NonEmptyString",
|
20369
22160
|
# subnets: ["NonEmptyString"],
|
@@ -20415,6 +22206,15 @@ module Aws::SecurityHub
|
|
20415
22206
|
# },
|
20416
22207
|
# ],
|
20417
22208
|
# },
|
22209
|
+
# viewer_certificate: {
|
22210
|
+
# acm_certificate_arn: "NonEmptyString",
|
22211
|
+
# certificate: "NonEmptyString",
|
22212
|
+
# certificate_source: "NonEmptyString",
|
22213
|
+
# cloud_front_default_certificate: false,
|
22214
|
+
# iam_certificate_id: "NonEmptyString",
|
22215
|
+
# minimum_protocol_version: "NonEmptyString",
|
22216
|
+
# ssl_support_method: "NonEmptyString",
|
22217
|
+
# },
|
20418
22218
|
# status: "NonEmptyString",
|
20419
22219
|
# web_acl_id: "NonEmptyString",
|
20420
22220
|
# },
|
@@ -20653,6 +22453,12 @@ module Aws::SecurityHub
|
|
20653
22453
|
# },
|
20654
22454
|
# type: "NonEmptyString",
|
20655
22455
|
# vpc_id: "NonEmptyString",
|
22456
|
+
# load_balancer_attributes: [
|
22457
|
+
# {
|
22458
|
+
# key: "NonEmptyString",
|
22459
|
+
# value: "NonEmptyString",
|
22460
|
+
# },
|
22461
|
+
# ],
|
20656
22462
|
# },
|
20657
22463
|
# aws_elastic_beanstalk_environment: {
|
20658
22464
|
# application_name: "NonEmptyString",
|
@@ -20752,6 +22558,7 @@ module Aws::SecurityHub
|
|
20752
22558
|
# aws_s3_bucket: {
|
20753
22559
|
# owner_id: "NonEmptyString",
|
20754
22560
|
# owner_name: "NonEmptyString",
|
22561
|
+
# owner_account_id: "NonEmptyString",
|
20755
22562
|
# created_at: "NonEmptyString",
|
20756
22563
|
# server_side_encryption_configuration: {
|
20757
22564
|
# rules: [
|
@@ -22337,6 +24144,157 @@ module Aws::SecurityHub
|
|
22337
24144
|
# image_tags: ["NonEmptyString"],
|
22338
24145
|
# image_published_at: "NonEmptyString",
|
22339
24146
|
# },
|
24147
|
+
# aws_open_search_service_domain: {
|
24148
|
+
# arn: "NonEmptyString",
|
24149
|
+
# access_policies: "NonEmptyString",
|
24150
|
+
# domain_name: "NonEmptyString",
|
24151
|
+
# id: "NonEmptyString",
|
24152
|
+
# domain_endpoint: "NonEmptyString",
|
24153
|
+
# engine_version: "NonEmptyString",
|
24154
|
+
# encryption_at_rest_options: {
|
24155
|
+
# enabled: false,
|
24156
|
+
# kms_key_id: "NonEmptyString",
|
24157
|
+
# },
|
24158
|
+
# node_to_node_encryption_options: {
|
24159
|
+
# enabled: false,
|
24160
|
+
# },
|
24161
|
+
# service_software_options: {
|
24162
|
+
# automated_update_date: "NonEmptyString",
|
24163
|
+
# cancellable: false,
|
24164
|
+
# current_version: "NonEmptyString",
|
24165
|
+
# description: "NonEmptyString",
|
24166
|
+
# new_version: "NonEmptyString",
|
24167
|
+
# update_available: false,
|
24168
|
+
# update_status: "NonEmptyString",
|
24169
|
+
# optional_deployment: false,
|
24170
|
+
# },
|
24171
|
+
# cluster_config: {
|
24172
|
+
# instance_count: 1,
|
24173
|
+
# warm_enabled: false,
|
24174
|
+
# warm_count: 1,
|
24175
|
+
# dedicated_master_enabled: false,
|
24176
|
+
# zone_awareness_config: {
|
24177
|
+
# availability_zone_count: 1,
|
24178
|
+
# },
|
24179
|
+
# dedicated_master_count: 1,
|
24180
|
+
# instance_type: "NonEmptyString",
|
24181
|
+
# warm_type: "NonEmptyString",
|
24182
|
+
# zone_awareness_enabled: false,
|
24183
|
+
# dedicated_master_type: "NonEmptyString",
|
24184
|
+
# },
|
24185
|
+
# domain_endpoint_options: {
|
24186
|
+
# custom_endpoint_certificate_arn: "NonEmptyString",
|
24187
|
+
# custom_endpoint_enabled: false,
|
24188
|
+
# enforce_https: false,
|
24189
|
+
# custom_endpoint: "NonEmptyString",
|
24190
|
+
# tls_security_policy: "NonEmptyString",
|
24191
|
+
# },
|
24192
|
+
# vpc_options: {
|
24193
|
+
# security_group_ids: ["NonEmptyString"],
|
24194
|
+
# subnet_ids: ["NonEmptyString"],
|
24195
|
+
# },
|
24196
|
+
# log_publishing_options: {
|
24197
|
+
# index_slow_logs: {
|
24198
|
+
# cloud_watch_logs_log_group_arn: "NonEmptyString",
|
24199
|
+
# enabled: false,
|
24200
|
+
# },
|
24201
|
+
# search_slow_logs: {
|
24202
|
+
# cloud_watch_logs_log_group_arn: "NonEmptyString",
|
24203
|
+
# enabled: false,
|
24204
|
+
# },
|
24205
|
+
# audit_logs: {
|
24206
|
+
# cloud_watch_logs_log_group_arn: "NonEmptyString",
|
24207
|
+
# enabled: false,
|
24208
|
+
# },
|
24209
|
+
# },
|
24210
|
+
# domain_endpoints: {
|
24211
|
+
# "NonEmptyString" => "NonEmptyString",
|
24212
|
+
# },
|
24213
|
+
# },
|
24214
|
+
# aws_ec2_vpc_endpoint_service: {
|
24215
|
+
# acceptance_required: false,
|
24216
|
+
# availability_zones: ["NonEmptyString"],
|
24217
|
+
# base_endpoint_dns_names: ["NonEmptyString"],
|
24218
|
+
# manages_vpc_endpoints: false,
|
24219
|
+
# gateway_load_balancer_arns: ["NonEmptyString"],
|
24220
|
+
# network_load_balancer_arns: ["NonEmptyString"],
|
24221
|
+
# private_dns_name: "NonEmptyString",
|
24222
|
+
# service_id: "NonEmptyString",
|
24223
|
+
# service_name: "NonEmptyString",
|
24224
|
+
# service_state: "NonEmptyString",
|
24225
|
+
# service_type: [
|
24226
|
+
# {
|
24227
|
+
# service_type: "NonEmptyString",
|
24228
|
+
# },
|
24229
|
+
# ],
|
24230
|
+
# },
|
24231
|
+
# aws_xray_encryption_config: {
|
24232
|
+
# key_id: "NonEmptyString",
|
24233
|
+
# status: "NonEmptyString",
|
24234
|
+
# type: "NonEmptyString",
|
24235
|
+
# },
|
24236
|
+
# aws_waf_rate_based_rule: {
|
24237
|
+
# metric_name: "NonEmptyString",
|
24238
|
+
# name: "NonEmptyString",
|
24239
|
+
# rate_key: "NonEmptyString",
|
24240
|
+
# rate_limit: 1,
|
24241
|
+
# rule_id: "NonEmptyString",
|
24242
|
+
# match_predicates: [
|
24243
|
+
# {
|
24244
|
+
# data_id: "NonEmptyString",
|
24245
|
+
# negated: false,
|
24246
|
+
# type: "NonEmptyString",
|
24247
|
+
# },
|
24248
|
+
# ],
|
24249
|
+
# },
|
24250
|
+
# aws_waf_regional_rate_based_rule: {
|
24251
|
+
# metric_name: "NonEmptyString",
|
24252
|
+
# name: "NonEmptyString",
|
24253
|
+
# rate_key: "NonEmptyString",
|
24254
|
+
# rate_limit: 1,
|
24255
|
+
# rule_id: "NonEmptyString",
|
24256
|
+
# match_predicates: [
|
24257
|
+
# {
|
24258
|
+
# data_id: "NonEmptyString",
|
24259
|
+
# negated: false,
|
24260
|
+
# type: "NonEmptyString",
|
24261
|
+
# },
|
24262
|
+
# ],
|
24263
|
+
# },
|
24264
|
+
# aws_ecr_repository: {
|
24265
|
+
# arn: "NonEmptyString",
|
24266
|
+
# image_scanning_configuration: {
|
24267
|
+
# scan_on_push: false,
|
24268
|
+
# },
|
24269
|
+
# image_tag_mutability: "NonEmptyString",
|
24270
|
+
# lifecycle_policy: {
|
24271
|
+
# lifecycle_policy_text: "NonEmptyString",
|
24272
|
+
# registry_id: "NonEmptyString",
|
24273
|
+
# },
|
24274
|
+
# repository_name: "NonEmptyString",
|
24275
|
+
# repository_policy_text: "NonEmptyString",
|
24276
|
+
# },
|
24277
|
+
# aws_eks_cluster: {
|
24278
|
+
# arn: "NonEmptyString",
|
24279
|
+
# certificate_authority_data: "NonEmptyString",
|
24280
|
+
# cluster_status: "NonEmptyString",
|
24281
|
+
# endpoint: "NonEmptyString",
|
24282
|
+
# name: "NonEmptyString",
|
24283
|
+
# resources_vpc_config: {
|
24284
|
+
# security_group_ids: ["NonEmptyString"],
|
24285
|
+
# subnet_ids: ["NonEmptyString"],
|
24286
|
+
# },
|
24287
|
+
# role_arn: "NonEmptyString",
|
24288
|
+
# version: "NonEmptyString",
|
24289
|
+
# logging: {
|
24290
|
+
# cluster_logging: [
|
24291
|
+
# {
|
24292
|
+
# enabled: false,
|
24293
|
+
# types: ["NonEmptyString"],
|
24294
|
+
# },
|
24295
|
+
# ],
|
24296
|
+
# },
|
24297
|
+
# },
|
22340
24298
|
# },
|
22341
24299
|
# },
|
22342
24300
|
# ],
|
@@ -23245,6 +25203,90 @@ module Aws::SecurityHub
|
|
23245
25203
|
include Aws::Structure
|
23246
25204
|
end
|
23247
25205
|
|
25206
|
+
# @note When making an API call, you may pass CreateFindingAggregatorRequest
|
25207
|
+
# data as a hash:
|
25208
|
+
#
|
25209
|
+
# {
|
25210
|
+
# region_linking_mode: "NonEmptyString", # required
|
25211
|
+
# regions: ["NonEmptyString"],
|
25212
|
+
# }
|
25213
|
+
#
|
25214
|
+
# @!attribute [rw] region_linking_mode
|
25215
|
+
# Indicates whether to aggregate findings from all of the available
|
25216
|
+
# Regions in the current partition. Also determines whether to
|
25217
|
+
# automatically aggregate findings from new Regions as Security Hub
|
25218
|
+
# supports them and you opt into them.
|
25219
|
+
#
|
25220
|
+
# The selected option also determines how to use the Regions provided
|
25221
|
+
# in the Regions list.
|
25222
|
+
#
|
25223
|
+
# The options are as follows:
|
25224
|
+
#
|
25225
|
+
# * `ALL_REGIONS` - Indicates to aggregate findings from all of the
|
25226
|
+
# Regions where Security Hub is enabled. When you choose this
|
25227
|
+
# option, Security Hub also automatically aggregates findings from
|
25228
|
+
# new Regions as Security Hub supports them and you opt into them.
|
25229
|
+
#
|
25230
|
+
# * `ALL_REGIONS_EXCEPT_SPECIFIED` - Indicates to aggregate findings
|
25231
|
+
# from all of the Regions where Security Hub is enabled, except for
|
25232
|
+
# the Regions listed in the `Regions` parameter. When you choose
|
25233
|
+
# this option, Security Hub also automatically aggregates findings
|
25234
|
+
# from new Regions as Security Hub supports them and you opt into
|
25235
|
+
# them.
|
25236
|
+
#
|
25237
|
+
# * `SPECIFIED_REGIONS` - Indicates to aggregate findings only from
|
25238
|
+
# the Regions listed in the `Regions` parameter. Security Hub does
|
25239
|
+
# not automatically aggregate findings from new Regions.
|
25240
|
+
# @return [String]
|
25241
|
+
#
|
25242
|
+
# @!attribute [rw] regions
|
25243
|
+
# If `RegionLinkingMode` is `ALL_REGIONS_EXCEPT_SPECIFIED`, then this
|
25244
|
+
# is a comma-separated list of Regions that do not aggregate findings
|
25245
|
+
# to the aggregation Region.
|
25246
|
+
#
|
25247
|
+
# If `RegionLinkingMode` is `SPECIFIED_REGIONS`, then this is a
|
25248
|
+
# comma-separated list of Regions that do aggregate findings to the
|
25249
|
+
# aggregation Region.
|
25250
|
+
# @return [Array<String>]
|
25251
|
+
#
|
25252
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/CreateFindingAggregatorRequest AWS API Documentation
|
25253
|
+
#
|
25254
|
+
class CreateFindingAggregatorRequest < Struct.new(
|
25255
|
+
:region_linking_mode,
|
25256
|
+
:regions)
|
25257
|
+
SENSITIVE = []
|
25258
|
+
include Aws::Structure
|
25259
|
+
end
|
25260
|
+
|
25261
|
+
# @!attribute [rw] finding_aggregator_arn
|
25262
|
+
# The ARN of the finding aggregator. You use the finding aggregator
|
25263
|
+
# ARN to retrieve details for, update, and stop finding aggregation.
|
25264
|
+
# @return [String]
|
25265
|
+
#
|
25266
|
+
# @!attribute [rw] finding_aggregation_region
|
25267
|
+
# The aggregation Region.
|
25268
|
+
# @return [String]
|
25269
|
+
#
|
25270
|
+
# @!attribute [rw] region_linking_mode
|
25271
|
+
# Indicates whether to link all Regions, all Regions except for a list
|
25272
|
+
# of excluded Regions, or a list of included Regions.
|
25273
|
+
# @return [String]
|
25274
|
+
#
|
25275
|
+
# @!attribute [rw] regions
|
25276
|
+
# The list of excluded Regions or included Regions.
|
25277
|
+
# @return [Array<String>]
|
25278
|
+
#
|
25279
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/CreateFindingAggregatorResponse AWS API Documentation
|
25280
|
+
#
|
25281
|
+
class CreateFindingAggregatorResponse < Struct.new(
|
25282
|
+
:finding_aggregator_arn,
|
25283
|
+
:finding_aggregation_region,
|
25284
|
+
:region_linking_mode,
|
25285
|
+
:regions)
|
25286
|
+
SENSITIVE = []
|
25287
|
+
include Aws::Structure
|
25288
|
+
end
|
25289
|
+
|
23248
25290
|
# @note When making an API call, you may pass CreateInsightRequest
|
23249
25291
|
# data as a hash:
|
23250
25292
|
#
|
@@ -24440,6 +26482,30 @@ module Aws::SecurityHub
|
|
24440
26482
|
include Aws::Structure
|
24441
26483
|
end
|
24442
26484
|
|
26485
|
+
# @note When making an API call, you may pass DeleteFindingAggregatorRequest
|
26486
|
+
# data as a hash:
|
26487
|
+
#
|
26488
|
+
# {
|
26489
|
+
# finding_aggregator_arn: "NonEmptyString", # required
|
26490
|
+
# }
|
26491
|
+
#
|
26492
|
+
# @!attribute [rw] finding_aggregator_arn
|
26493
|
+
# The ARN of the finding aggregator to delete. To obtain the ARN, use
|
26494
|
+
# `ListFindingAggregators`.
|
26495
|
+
# @return [String]
|
26496
|
+
#
|
26497
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DeleteFindingAggregatorRequest AWS API Documentation
|
26498
|
+
#
|
26499
|
+
class DeleteFindingAggregatorRequest < Struct.new(
|
26500
|
+
:finding_aggregator_arn)
|
26501
|
+
SENSITIVE = []
|
26502
|
+
include Aws::Structure
|
26503
|
+
end
|
26504
|
+
|
26505
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/DeleteFindingAggregatorResponse AWS API Documentation
|
26506
|
+
#
|
26507
|
+
class DeleteFindingAggregatorResponse < Aws::EmptyStructure; end
|
26508
|
+
|
24443
26509
|
# @note When making an API call, you may pass DeleteInsightRequest
|
24444
26510
|
# data as a hash:
|
24445
26511
|
#
|
@@ -25052,6 +27118,23 @@ module Aws::SecurityHub
|
|
25052
27118
|
#
|
25053
27119
|
class EnableSecurityHubResponse < Aws::EmptyStructure; end
|
25054
27120
|
|
27121
|
+
# A finding aggregator. A finding aggregator contains the configuration
|
27122
|
+
# for finding aggregation.
|
27123
|
+
#
|
27124
|
+
# @!attribute [rw] finding_aggregator_arn
|
27125
|
+
# The ARN of the finding aggregator. You use the finding aggregator
|
27126
|
+
# ARN to retrieve details for, update, and delete the finding
|
27127
|
+
# aggregator.
|
27128
|
+
# @return [String]
|
27129
|
+
#
|
27130
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/FindingAggregator AWS API Documentation
|
27131
|
+
#
|
27132
|
+
class FindingAggregator < Struct.new(
|
27133
|
+
:finding_aggregator_arn)
|
27134
|
+
SENSITIVE = []
|
27135
|
+
include Aws::Structure
|
27136
|
+
end
|
27137
|
+
|
25055
27138
|
# In a `BatchImportFindings` request, finding providers use
|
25056
27139
|
# `FindingProviderFields` to provide and update values for confidence,
|
25057
27140
|
# criticality, related findings, severity, and types.
|
@@ -25250,6 +27333,54 @@ module Aws::SecurityHub
|
|
25250
27333
|
include Aws::Structure
|
25251
27334
|
end
|
25252
27335
|
|
27336
|
+
# @note When making an API call, you may pass GetFindingAggregatorRequest
|
27337
|
+
# data as a hash:
|
27338
|
+
#
|
27339
|
+
# {
|
27340
|
+
# finding_aggregator_arn: "NonEmptyString", # required
|
27341
|
+
# }
|
27342
|
+
#
|
27343
|
+
# @!attribute [rw] finding_aggregator_arn
|
27344
|
+
# The ARN of the finding aggregator to return details for. To obtain
|
27345
|
+
# the ARN, use `ListFindingAggregators`.
|
27346
|
+
# @return [String]
|
27347
|
+
#
|
27348
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetFindingAggregatorRequest AWS API Documentation
|
27349
|
+
#
|
27350
|
+
class GetFindingAggregatorRequest < Struct.new(
|
27351
|
+
:finding_aggregator_arn)
|
27352
|
+
SENSITIVE = []
|
27353
|
+
include Aws::Structure
|
27354
|
+
end
|
27355
|
+
|
27356
|
+
# @!attribute [rw] finding_aggregator_arn
|
27357
|
+
# The ARN of the finding aggregator.
|
27358
|
+
# @return [String]
|
27359
|
+
#
|
27360
|
+
# @!attribute [rw] finding_aggregation_region
|
27361
|
+
# The aggregation Region.
|
27362
|
+
# @return [String]
|
27363
|
+
#
|
27364
|
+
# @!attribute [rw] region_linking_mode
|
27365
|
+
# Indicates whether to link all Regions, all Regions except for a list
|
27366
|
+
# of excluded Regions, or a list of included Regions.
|
27367
|
+
# @return [String]
|
27368
|
+
#
|
27369
|
+
# @!attribute [rw] regions
|
27370
|
+
# The list of excluded Regions or included Regions.
|
27371
|
+
# @return [Array<String>]
|
27372
|
+
#
|
27373
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/GetFindingAggregatorResponse AWS API Documentation
|
27374
|
+
#
|
27375
|
+
class GetFindingAggregatorResponse < Struct.new(
|
27376
|
+
:finding_aggregator_arn,
|
27377
|
+
:finding_aggregation_region,
|
27378
|
+
:region_linking_mode,
|
27379
|
+
:regions)
|
27380
|
+
SENSITIVE = []
|
27381
|
+
include Aws::Structure
|
27382
|
+
end
|
27383
|
+
|
25253
27384
|
# @note When making an API call, you may pass GetFindingsRequest
|
25254
27385
|
# data as a hash:
|
25255
27386
|
#
|
@@ -26542,6 +28673,54 @@ module Aws::SecurityHub
|
|
26542
28673
|
include Aws::Structure
|
26543
28674
|
end
|
26544
28675
|
|
28676
|
+
# @note When making an API call, you may pass ListFindingAggregatorsRequest
|
28677
|
+
# data as a hash:
|
28678
|
+
#
|
28679
|
+
# {
|
28680
|
+
# next_token: "NextToken",
|
28681
|
+
# max_results: 1,
|
28682
|
+
# }
|
28683
|
+
#
|
28684
|
+
# @!attribute [rw] next_token
|
28685
|
+
# The token returned with the previous set of results. Identifies the
|
28686
|
+
# next set of results to return.
|
28687
|
+
# @return [String]
|
28688
|
+
#
|
28689
|
+
# @!attribute [rw] max_results
|
28690
|
+
# The maximum number of results to return. This operation currently
|
28691
|
+
# only returns a single result.
|
28692
|
+
# @return [Integer]
|
28693
|
+
#
|
28694
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ListFindingAggregatorsRequest AWS API Documentation
|
28695
|
+
#
|
28696
|
+
class ListFindingAggregatorsRequest < Struct.new(
|
28697
|
+
:next_token,
|
28698
|
+
:max_results)
|
28699
|
+
SENSITIVE = []
|
28700
|
+
include Aws::Structure
|
28701
|
+
end
|
28702
|
+
|
28703
|
+
# @!attribute [rw] finding_aggregators
|
28704
|
+
# The list of finding aggregators. This operation currently only
|
28705
|
+
# returns a single result.
|
28706
|
+
# @return [Array<Types::FindingAggregator>]
|
28707
|
+
#
|
28708
|
+
# @!attribute [rw] next_token
|
28709
|
+
# If there are more results, this is the token to provide in the next
|
28710
|
+
# call to `ListFindingAggregators`.
|
28711
|
+
#
|
28712
|
+
# This operation currently only returns a single result.
|
28713
|
+
# @return [String]
|
28714
|
+
#
|
28715
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ListFindingAggregatorsResponse AWS API Documentation
|
28716
|
+
#
|
28717
|
+
class ListFindingAggregatorsResponse < Struct.new(
|
28718
|
+
:finding_aggregators,
|
28719
|
+
:next_token)
|
28720
|
+
SENSITIVE = []
|
28721
|
+
include Aws::Structure
|
28722
|
+
end
|
28723
|
+
|
26545
28724
|
# @note When making an API call, you may pass ListInvitationsRequest
|
26546
28725
|
# data as a hash:
|
26547
28726
|
#
|
@@ -28232,8 +30411,29 @@ module Aws::SecurityHub
|
|
28232
30411
|
# },
|
28233
30412
|
# aws_code_build_project: {
|
28234
30413
|
# encryption_key: "NonEmptyString",
|
30414
|
+
# artifacts: [
|
30415
|
+
# {
|
30416
|
+
# artifact_identifier: "NonEmptyString",
|
30417
|
+
# encryption_disabled: false,
|
30418
|
+
# location: "NonEmptyString",
|
30419
|
+
# name: "NonEmptyString",
|
30420
|
+
# namespace_type: "NonEmptyString",
|
30421
|
+
# override_artifact_name: false,
|
30422
|
+
# packaging: "NonEmptyString",
|
30423
|
+
# path: "NonEmptyString",
|
30424
|
+
# type: "NonEmptyString",
|
30425
|
+
# },
|
30426
|
+
# ],
|
28235
30427
|
# environment: {
|
28236
30428
|
# certificate: "NonEmptyString",
|
30429
|
+
# environment_variables: [
|
30430
|
+
# {
|
30431
|
+
# name: "NonEmptyString",
|
30432
|
+
# type: "NonEmptyString",
|
30433
|
+
# value: "NonEmptyString",
|
30434
|
+
# },
|
30435
|
+
# ],
|
30436
|
+
# privileged_mode: false,
|
28237
30437
|
# image_pull_credentials_type: "NonEmptyString",
|
28238
30438
|
# registry_credential: {
|
28239
30439
|
# credential: "NonEmptyString",
|
@@ -28249,6 +30449,18 @@ module Aws::SecurityHub
|
|
28249
30449
|
# insecure_ssl: false,
|
28250
30450
|
# },
|
28251
30451
|
# service_role: "NonEmptyString",
|
30452
|
+
# logs_config: {
|
30453
|
+
# cloud_watch_logs: {
|
30454
|
+
# group_name: "NonEmptyString",
|
30455
|
+
# status: "NonEmptyString",
|
30456
|
+
# stream_name: "NonEmptyString",
|
30457
|
+
# },
|
30458
|
+
# s3_logs: {
|
30459
|
+
# encryption_disabled: false,
|
30460
|
+
# location: "NonEmptyString",
|
30461
|
+
# status: "NonEmptyString",
|
30462
|
+
# },
|
30463
|
+
# },
|
28252
30464
|
# vpc_config: {
|
28253
30465
|
# vpc_id: "NonEmptyString",
|
28254
30466
|
# subnets: ["NonEmptyString"],
|
@@ -28300,6 +30512,15 @@ module Aws::SecurityHub
|
|
28300
30512
|
# },
|
28301
30513
|
# ],
|
28302
30514
|
# },
|
30515
|
+
# viewer_certificate: {
|
30516
|
+
# acm_certificate_arn: "NonEmptyString",
|
30517
|
+
# certificate: "NonEmptyString",
|
30518
|
+
# certificate_source: "NonEmptyString",
|
30519
|
+
# cloud_front_default_certificate: false,
|
30520
|
+
# iam_certificate_id: "NonEmptyString",
|
30521
|
+
# minimum_protocol_version: "NonEmptyString",
|
30522
|
+
# ssl_support_method: "NonEmptyString",
|
30523
|
+
# },
|
28303
30524
|
# status: "NonEmptyString",
|
28304
30525
|
# web_acl_id: "NonEmptyString",
|
28305
30526
|
# },
|
@@ -28538,6 +30759,12 @@ module Aws::SecurityHub
|
|
28538
30759
|
# },
|
28539
30760
|
# type: "NonEmptyString",
|
28540
30761
|
# vpc_id: "NonEmptyString",
|
30762
|
+
# load_balancer_attributes: [
|
30763
|
+
# {
|
30764
|
+
# key: "NonEmptyString",
|
30765
|
+
# value: "NonEmptyString",
|
30766
|
+
# },
|
30767
|
+
# ],
|
28541
30768
|
# },
|
28542
30769
|
# aws_elastic_beanstalk_environment: {
|
28543
30770
|
# application_name: "NonEmptyString",
|
@@ -28637,6 +30864,7 @@ module Aws::SecurityHub
|
|
28637
30864
|
# aws_s3_bucket: {
|
28638
30865
|
# owner_id: "NonEmptyString",
|
28639
30866
|
# owner_name: "NonEmptyString",
|
30867
|
+
# owner_account_id: "NonEmptyString",
|
28640
30868
|
# created_at: "NonEmptyString",
|
28641
30869
|
# server_side_encryption_configuration: {
|
28642
30870
|
# rules: [
|
@@ -30165,62 +32393,213 @@ module Aws::SecurityHub
|
|
30165
32393
|
# spot_price: "NonEmptyString",
|
30166
32394
|
# user_data: "NonEmptyString",
|
30167
32395
|
# },
|
30168
|
-
# aws_ec2_vpn_connection: {
|
30169
|
-
# vpn_connection_id: "NonEmptyString",
|
30170
|
-
# state: "NonEmptyString",
|
30171
|
-
# customer_gateway_id: "NonEmptyString",
|
30172
|
-
# customer_gateway_configuration: "NonEmptyString",
|
32396
|
+
# aws_ec2_vpn_connection: {
|
32397
|
+
# vpn_connection_id: "NonEmptyString",
|
32398
|
+
# state: "NonEmptyString",
|
32399
|
+
# customer_gateway_id: "NonEmptyString",
|
32400
|
+
# customer_gateway_configuration: "NonEmptyString",
|
32401
|
+
# type: "NonEmptyString",
|
32402
|
+
# vpn_gateway_id: "NonEmptyString",
|
32403
|
+
# category: "NonEmptyString",
|
32404
|
+
# vgw_telemetry: [
|
32405
|
+
# {
|
32406
|
+
# accepted_route_count: 1,
|
32407
|
+
# certificate_arn: "NonEmptyString",
|
32408
|
+
# last_status_change: "NonEmptyString",
|
32409
|
+
# outside_ip_address: "NonEmptyString",
|
32410
|
+
# status: "NonEmptyString",
|
32411
|
+
# status_message: "NonEmptyString",
|
32412
|
+
# },
|
32413
|
+
# ],
|
32414
|
+
# options: {
|
32415
|
+
# static_routes_only: false,
|
32416
|
+
# tunnel_options: [
|
32417
|
+
# {
|
32418
|
+
# dpd_timeout_seconds: 1,
|
32419
|
+
# ike_versions: ["NonEmptyString"],
|
32420
|
+
# outside_ip_address: "NonEmptyString",
|
32421
|
+
# phase_1_dh_group_numbers: [1],
|
32422
|
+
# phase_1_encryption_algorithms: ["NonEmptyString"],
|
32423
|
+
# phase_1_integrity_algorithms: ["NonEmptyString"],
|
32424
|
+
# phase_1_lifetime_seconds: 1,
|
32425
|
+
# phase_2_dh_group_numbers: [1],
|
32426
|
+
# phase_2_encryption_algorithms: ["NonEmptyString"],
|
32427
|
+
# phase_2_integrity_algorithms: ["NonEmptyString"],
|
32428
|
+
# phase_2_lifetime_seconds: 1,
|
32429
|
+
# pre_shared_key: "NonEmptyString",
|
32430
|
+
# rekey_fuzz_percentage: 1,
|
32431
|
+
# rekey_margin_time_seconds: 1,
|
32432
|
+
# replay_window_size: 1,
|
32433
|
+
# tunnel_inside_cidr: "NonEmptyString",
|
32434
|
+
# },
|
32435
|
+
# ],
|
32436
|
+
# },
|
32437
|
+
# routes: [
|
32438
|
+
# {
|
32439
|
+
# destination_cidr_block: "NonEmptyString",
|
32440
|
+
# state: "NonEmptyString",
|
32441
|
+
# },
|
32442
|
+
# ],
|
32443
|
+
# transit_gateway_id: "NonEmptyString",
|
32444
|
+
# },
|
32445
|
+
# aws_ecr_container_image: {
|
32446
|
+
# registry_id: "NonEmptyString",
|
32447
|
+
# repository_name: "NonEmptyString",
|
32448
|
+
# architecture: "NonEmptyString",
|
32449
|
+
# image_digest: "NonEmptyString",
|
32450
|
+
# image_tags: ["NonEmptyString"],
|
32451
|
+
# image_published_at: "NonEmptyString",
|
32452
|
+
# },
|
32453
|
+
# aws_open_search_service_domain: {
|
32454
|
+
# arn: "NonEmptyString",
|
32455
|
+
# access_policies: "NonEmptyString",
|
32456
|
+
# domain_name: "NonEmptyString",
|
32457
|
+
# id: "NonEmptyString",
|
32458
|
+
# domain_endpoint: "NonEmptyString",
|
32459
|
+
# engine_version: "NonEmptyString",
|
32460
|
+
# encryption_at_rest_options: {
|
32461
|
+
# enabled: false,
|
32462
|
+
# kms_key_id: "NonEmptyString",
|
32463
|
+
# },
|
32464
|
+
# node_to_node_encryption_options: {
|
32465
|
+
# enabled: false,
|
32466
|
+
# },
|
32467
|
+
# service_software_options: {
|
32468
|
+
# automated_update_date: "NonEmptyString",
|
32469
|
+
# cancellable: false,
|
32470
|
+
# current_version: "NonEmptyString",
|
32471
|
+
# description: "NonEmptyString",
|
32472
|
+
# new_version: "NonEmptyString",
|
32473
|
+
# update_available: false,
|
32474
|
+
# update_status: "NonEmptyString",
|
32475
|
+
# optional_deployment: false,
|
32476
|
+
# },
|
32477
|
+
# cluster_config: {
|
32478
|
+
# instance_count: 1,
|
32479
|
+
# warm_enabled: false,
|
32480
|
+
# warm_count: 1,
|
32481
|
+
# dedicated_master_enabled: false,
|
32482
|
+
# zone_awareness_config: {
|
32483
|
+
# availability_zone_count: 1,
|
32484
|
+
# },
|
32485
|
+
# dedicated_master_count: 1,
|
32486
|
+
# instance_type: "NonEmptyString",
|
32487
|
+
# warm_type: "NonEmptyString",
|
32488
|
+
# zone_awareness_enabled: false,
|
32489
|
+
# dedicated_master_type: "NonEmptyString",
|
32490
|
+
# },
|
32491
|
+
# domain_endpoint_options: {
|
32492
|
+
# custom_endpoint_certificate_arn: "NonEmptyString",
|
32493
|
+
# custom_endpoint_enabled: false,
|
32494
|
+
# enforce_https: false,
|
32495
|
+
# custom_endpoint: "NonEmptyString",
|
32496
|
+
# tls_security_policy: "NonEmptyString",
|
32497
|
+
# },
|
32498
|
+
# vpc_options: {
|
32499
|
+
# security_group_ids: ["NonEmptyString"],
|
32500
|
+
# subnet_ids: ["NonEmptyString"],
|
32501
|
+
# },
|
32502
|
+
# log_publishing_options: {
|
32503
|
+
# index_slow_logs: {
|
32504
|
+
# cloud_watch_logs_log_group_arn: "NonEmptyString",
|
32505
|
+
# enabled: false,
|
32506
|
+
# },
|
32507
|
+
# search_slow_logs: {
|
32508
|
+
# cloud_watch_logs_log_group_arn: "NonEmptyString",
|
32509
|
+
# enabled: false,
|
32510
|
+
# },
|
32511
|
+
# audit_logs: {
|
32512
|
+
# cloud_watch_logs_log_group_arn: "NonEmptyString",
|
32513
|
+
# enabled: false,
|
32514
|
+
# },
|
32515
|
+
# },
|
32516
|
+
# domain_endpoints: {
|
32517
|
+
# "NonEmptyString" => "NonEmptyString",
|
32518
|
+
# },
|
32519
|
+
# },
|
32520
|
+
# aws_ec2_vpc_endpoint_service: {
|
32521
|
+
# acceptance_required: false,
|
32522
|
+
# availability_zones: ["NonEmptyString"],
|
32523
|
+
# base_endpoint_dns_names: ["NonEmptyString"],
|
32524
|
+
# manages_vpc_endpoints: false,
|
32525
|
+
# gateway_load_balancer_arns: ["NonEmptyString"],
|
32526
|
+
# network_load_balancer_arns: ["NonEmptyString"],
|
32527
|
+
# private_dns_name: "NonEmptyString",
|
32528
|
+
# service_id: "NonEmptyString",
|
32529
|
+
# service_name: "NonEmptyString",
|
32530
|
+
# service_state: "NonEmptyString",
|
32531
|
+
# service_type: [
|
32532
|
+
# {
|
32533
|
+
# service_type: "NonEmptyString",
|
32534
|
+
# },
|
32535
|
+
# ],
|
32536
|
+
# },
|
32537
|
+
# aws_xray_encryption_config: {
|
32538
|
+
# key_id: "NonEmptyString",
|
32539
|
+
# status: "NonEmptyString",
|
30173
32540
|
# type: "NonEmptyString",
|
30174
|
-
#
|
30175
|
-
#
|
30176
|
-
#
|
32541
|
+
# },
|
32542
|
+
# aws_waf_rate_based_rule: {
|
32543
|
+
# metric_name: "NonEmptyString",
|
32544
|
+
# name: "NonEmptyString",
|
32545
|
+
# rate_key: "NonEmptyString",
|
32546
|
+
# rate_limit: 1,
|
32547
|
+
# rule_id: "NonEmptyString",
|
32548
|
+
# match_predicates: [
|
30177
32549
|
# {
|
30178
|
-
#
|
30179
|
-
#
|
30180
|
-
#
|
30181
|
-
# outside_ip_address: "NonEmptyString",
|
30182
|
-
# status: "NonEmptyString",
|
30183
|
-
# status_message: "NonEmptyString",
|
32550
|
+
# data_id: "NonEmptyString",
|
32551
|
+
# negated: false,
|
32552
|
+
# type: "NonEmptyString",
|
30184
32553
|
# },
|
30185
32554
|
# ],
|
30186
|
-
#
|
30187
|
-
#
|
30188
|
-
#
|
30189
|
-
#
|
30190
|
-
#
|
30191
|
-
#
|
30192
|
-
#
|
30193
|
-
#
|
30194
|
-
# phase_1_encryption_algorithms: ["NonEmptyString"],
|
30195
|
-
# phase_1_integrity_algorithms: ["NonEmptyString"],
|
30196
|
-
# phase_1_lifetime_seconds: 1,
|
30197
|
-
# phase_2_dh_group_numbers: [1],
|
30198
|
-
# phase_2_encryption_algorithms: ["NonEmptyString"],
|
30199
|
-
# phase_2_integrity_algorithms: ["NonEmptyString"],
|
30200
|
-
# phase_2_lifetime_seconds: 1,
|
30201
|
-
# pre_shared_key: "NonEmptyString",
|
30202
|
-
# rekey_fuzz_percentage: 1,
|
30203
|
-
# rekey_margin_time_seconds: 1,
|
30204
|
-
# replay_window_size: 1,
|
30205
|
-
# tunnel_inside_cidr: "NonEmptyString",
|
30206
|
-
# },
|
30207
|
-
# ],
|
30208
|
-
# },
|
30209
|
-
# routes: [
|
32555
|
+
# },
|
32556
|
+
# aws_waf_regional_rate_based_rule: {
|
32557
|
+
# metric_name: "NonEmptyString",
|
32558
|
+
# name: "NonEmptyString",
|
32559
|
+
# rate_key: "NonEmptyString",
|
32560
|
+
# rate_limit: 1,
|
32561
|
+
# rule_id: "NonEmptyString",
|
32562
|
+
# match_predicates: [
|
30210
32563
|
# {
|
30211
|
-
#
|
30212
|
-
#
|
32564
|
+
# data_id: "NonEmptyString",
|
32565
|
+
# negated: false,
|
32566
|
+
# type: "NonEmptyString",
|
30213
32567
|
# },
|
30214
32568
|
# ],
|
30215
|
-
# transit_gateway_id: "NonEmptyString",
|
30216
32569
|
# },
|
30217
|
-
#
|
30218
|
-
#
|
32570
|
+
# aws_ecr_repository: {
|
32571
|
+
# arn: "NonEmptyString",
|
32572
|
+
# image_scanning_configuration: {
|
32573
|
+
# scan_on_push: false,
|
32574
|
+
# },
|
32575
|
+
# image_tag_mutability: "NonEmptyString",
|
32576
|
+
# lifecycle_policy: {
|
32577
|
+
# lifecycle_policy_text: "NonEmptyString",
|
32578
|
+
# registry_id: "NonEmptyString",
|
32579
|
+
# },
|
30219
32580
|
# repository_name: "NonEmptyString",
|
30220
|
-
#
|
30221
|
-
#
|
30222
|
-
#
|
30223
|
-
#
|
32581
|
+
# repository_policy_text: "NonEmptyString",
|
32582
|
+
# },
|
32583
|
+
# aws_eks_cluster: {
|
32584
|
+
# arn: "NonEmptyString",
|
32585
|
+
# certificate_authority_data: "NonEmptyString",
|
32586
|
+
# cluster_status: "NonEmptyString",
|
32587
|
+
# endpoint: "NonEmptyString",
|
32588
|
+
# name: "NonEmptyString",
|
32589
|
+
# resources_vpc_config: {
|
32590
|
+
# security_group_ids: ["NonEmptyString"],
|
32591
|
+
# subnet_ids: ["NonEmptyString"],
|
32592
|
+
# },
|
32593
|
+
# role_arn: "NonEmptyString",
|
32594
|
+
# version: "NonEmptyString",
|
32595
|
+
# logging: {
|
32596
|
+
# cluster_logging: [
|
32597
|
+
# {
|
32598
|
+
# enabled: false,
|
32599
|
+
# types: ["NonEmptyString"],
|
32600
|
+
# },
|
32601
|
+
# ],
|
32602
|
+
# },
|
30224
32603
|
# },
|
30225
32604
|
# },
|
30226
32605
|
# }
|
@@ -30327,8 +32706,29 @@ module Aws::SecurityHub
|
|
30327
32706
|
# },
|
30328
32707
|
# aws_code_build_project: {
|
30329
32708
|
# encryption_key: "NonEmptyString",
|
32709
|
+
# artifacts: [
|
32710
|
+
# {
|
32711
|
+
# artifact_identifier: "NonEmptyString",
|
32712
|
+
# encryption_disabled: false,
|
32713
|
+
# location: "NonEmptyString",
|
32714
|
+
# name: "NonEmptyString",
|
32715
|
+
# namespace_type: "NonEmptyString",
|
32716
|
+
# override_artifact_name: false,
|
32717
|
+
# packaging: "NonEmptyString",
|
32718
|
+
# path: "NonEmptyString",
|
32719
|
+
# type: "NonEmptyString",
|
32720
|
+
# },
|
32721
|
+
# ],
|
30330
32722
|
# environment: {
|
30331
32723
|
# certificate: "NonEmptyString",
|
32724
|
+
# environment_variables: [
|
32725
|
+
# {
|
32726
|
+
# name: "NonEmptyString",
|
32727
|
+
# type: "NonEmptyString",
|
32728
|
+
# value: "NonEmptyString",
|
32729
|
+
# },
|
32730
|
+
# ],
|
32731
|
+
# privileged_mode: false,
|
30332
32732
|
# image_pull_credentials_type: "NonEmptyString",
|
30333
32733
|
# registry_credential: {
|
30334
32734
|
# credential: "NonEmptyString",
|
@@ -30344,6 +32744,18 @@ module Aws::SecurityHub
|
|
30344
32744
|
# insecure_ssl: false,
|
30345
32745
|
# },
|
30346
32746
|
# service_role: "NonEmptyString",
|
32747
|
+
# logs_config: {
|
32748
|
+
# cloud_watch_logs: {
|
32749
|
+
# group_name: "NonEmptyString",
|
32750
|
+
# status: "NonEmptyString",
|
32751
|
+
# stream_name: "NonEmptyString",
|
32752
|
+
# },
|
32753
|
+
# s3_logs: {
|
32754
|
+
# encryption_disabled: false,
|
32755
|
+
# location: "NonEmptyString",
|
32756
|
+
# status: "NonEmptyString",
|
32757
|
+
# },
|
32758
|
+
# },
|
30347
32759
|
# vpc_config: {
|
30348
32760
|
# vpc_id: "NonEmptyString",
|
30349
32761
|
# subnets: ["NonEmptyString"],
|
@@ -30395,6 +32807,15 @@ module Aws::SecurityHub
|
|
30395
32807
|
# },
|
30396
32808
|
# ],
|
30397
32809
|
# },
|
32810
|
+
# viewer_certificate: {
|
32811
|
+
# acm_certificate_arn: "NonEmptyString",
|
32812
|
+
# certificate: "NonEmptyString",
|
32813
|
+
# certificate_source: "NonEmptyString",
|
32814
|
+
# cloud_front_default_certificate: false,
|
32815
|
+
# iam_certificate_id: "NonEmptyString",
|
32816
|
+
# minimum_protocol_version: "NonEmptyString",
|
32817
|
+
# ssl_support_method: "NonEmptyString",
|
32818
|
+
# },
|
30398
32819
|
# status: "NonEmptyString",
|
30399
32820
|
# web_acl_id: "NonEmptyString",
|
30400
32821
|
# },
|
@@ -30633,6 +33054,12 @@ module Aws::SecurityHub
|
|
30633
33054
|
# },
|
30634
33055
|
# type: "NonEmptyString",
|
30635
33056
|
# vpc_id: "NonEmptyString",
|
33057
|
+
# load_balancer_attributes: [
|
33058
|
+
# {
|
33059
|
+
# key: "NonEmptyString",
|
33060
|
+
# value: "NonEmptyString",
|
33061
|
+
# },
|
33062
|
+
# ],
|
30636
33063
|
# },
|
30637
33064
|
# aws_elastic_beanstalk_environment: {
|
30638
33065
|
# application_name: "NonEmptyString",
|
@@ -30732,6 +33159,7 @@ module Aws::SecurityHub
|
|
30732
33159
|
# aws_s3_bucket: {
|
30733
33160
|
# owner_id: "NonEmptyString",
|
30734
33161
|
# owner_name: "NonEmptyString",
|
33162
|
+
# owner_account_id: "NonEmptyString",
|
30735
33163
|
# created_at: "NonEmptyString",
|
30736
33164
|
# server_side_encryption_configuration: {
|
30737
33165
|
# rules: [
|
@@ -32317,6 +34745,157 @@ module Aws::SecurityHub
|
|
32317
34745
|
# image_tags: ["NonEmptyString"],
|
32318
34746
|
# image_published_at: "NonEmptyString",
|
32319
34747
|
# },
|
34748
|
+
# aws_open_search_service_domain: {
|
34749
|
+
# arn: "NonEmptyString",
|
34750
|
+
# access_policies: "NonEmptyString",
|
34751
|
+
# domain_name: "NonEmptyString",
|
34752
|
+
# id: "NonEmptyString",
|
34753
|
+
# domain_endpoint: "NonEmptyString",
|
34754
|
+
# engine_version: "NonEmptyString",
|
34755
|
+
# encryption_at_rest_options: {
|
34756
|
+
# enabled: false,
|
34757
|
+
# kms_key_id: "NonEmptyString",
|
34758
|
+
# },
|
34759
|
+
# node_to_node_encryption_options: {
|
34760
|
+
# enabled: false,
|
34761
|
+
# },
|
34762
|
+
# service_software_options: {
|
34763
|
+
# automated_update_date: "NonEmptyString",
|
34764
|
+
# cancellable: false,
|
34765
|
+
# current_version: "NonEmptyString",
|
34766
|
+
# description: "NonEmptyString",
|
34767
|
+
# new_version: "NonEmptyString",
|
34768
|
+
# update_available: false,
|
34769
|
+
# update_status: "NonEmptyString",
|
34770
|
+
# optional_deployment: false,
|
34771
|
+
# },
|
34772
|
+
# cluster_config: {
|
34773
|
+
# instance_count: 1,
|
34774
|
+
# warm_enabled: false,
|
34775
|
+
# warm_count: 1,
|
34776
|
+
# dedicated_master_enabled: false,
|
34777
|
+
# zone_awareness_config: {
|
34778
|
+
# availability_zone_count: 1,
|
34779
|
+
# },
|
34780
|
+
# dedicated_master_count: 1,
|
34781
|
+
# instance_type: "NonEmptyString",
|
34782
|
+
# warm_type: "NonEmptyString",
|
34783
|
+
# zone_awareness_enabled: false,
|
34784
|
+
# dedicated_master_type: "NonEmptyString",
|
34785
|
+
# },
|
34786
|
+
# domain_endpoint_options: {
|
34787
|
+
# custom_endpoint_certificate_arn: "NonEmptyString",
|
34788
|
+
# custom_endpoint_enabled: false,
|
34789
|
+
# enforce_https: false,
|
34790
|
+
# custom_endpoint: "NonEmptyString",
|
34791
|
+
# tls_security_policy: "NonEmptyString",
|
34792
|
+
# },
|
34793
|
+
# vpc_options: {
|
34794
|
+
# security_group_ids: ["NonEmptyString"],
|
34795
|
+
# subnet_ids: ["NonEmptyString"],
|
34796
|
+
# },
|
34797
|
+
# log_publishing_options: {
|
34798
|
+
# index_slow_logs: {
|
34799
|
+
# cloud_watch_logs_log_group_arn: "NonEmptyString",
|
34800
|
+
# enabled: false,
|
34801
|
+
# },
|
34802
|
+
# search_slow_logs: {
|
34803
|
+
# cloud_watch_logs_log_group_arn: "NonEmptyString",
|
34804
|
+
# enabled: false,
|
34805
|
+
# },
|
34806
|
+
# audit_logs: {
|
34807
|
+
# cloud_watch_logs_log_group_arn: "NonEmptyString",
|
34808
|
+
# enabled: false,
|
34809
|
+
# },
|
34810
|
+
# },
|
34811
|
+
# domain_endpoints: {
|
34812
|
+
# "NonEmptyString" => "NonEmptyString",
|
34813
|
+
# },
|
34814
|
+
# },
|
34815
|
+
# aws_ec2_vpc_endpoint_service: {
|
34816
|
+
# acceptance_required: false,
|
34817
|
+
# availability_zones: ["NonEmptyString"],
|
34818
|
+
# base_endpoint_dns_names: ["NonEmptyString"],
|
34819
|
+
# manages_vpc_endpoints: false,
|
34820
|
+
# gateway_load_balancer_arns: ["NonEmptyString"],
|
34821
|
+
# network_load_balancer_arns: ["NonEmptyString"],
|
34822
|
+
# private_dns_name: "NonEmptyString",
|
34823
|
+
# service_id: "NonEmptyString",
|
34824
|
+
# service_name: "NonEmptyString",
|
34825
|
+
# service_state: "NonEmptyString",
|
34826
|
+
# service_type: [
|
34827
|
+
# {
|
34828
|
+
# service_type: "NonEmptyString",
|
34829
|
+
# },
|
34830
|
+
# ],
|
34831
|
+
# },
|
34832
|
+
# aws_xray_encryption_config: {
|
34833
|
+
# key_id: "NonEmptyString",
|
34834
|
+
# status: "NonEmptyString",
|
34835
|
+
# type: "NonEmptyString",
|
34836
|
+
# },
|
34837
|
+
# aws_waf_rate_based_rule: {
|
34838
|
+
# metric_name: "NonEmptyString",
|
34839
|
+
# name: "NonEmptyString",
|
34840
|
+
# rate_key: "NonEmptyString",
|
34841
|
+
# rate_limit: 1,
|
34842
|
+
# rule_id: "NonEmptyString",
|
34843
|
+
# match_predicates: [
|
34844
|
+
# {
|
34845
|
+
# data_id: "NonEmptyString",
|
34846
|
+
# negated: false,
|
34847
|
+
# type: "NonEmptyString",
|
34848
|
+
# },
|
34849
|
+
# ],
|
34850
|
+
# },
|
34851
|
+
# aws_waf_regional_rate_based_rule: {
|
34852
|
+
# metric_name: "NonEmptyString",
|
34853
|
+
# name: "NonEmptyString",
|
34854
|
+
# rate_key: "NonEmptyString",
|
34855
|
+
# rate_limit: 1,
|
34856
|
+
# rule_id: "NonEmptyString",
|
34857
|
+
# match_predicates: [
|
34858
|
+
# {
|
34859
|
+
# data_id: "NonEmptyString",
|
34860
|
+
# negated: false,
|
34861
|
+
# type: "NonEmptyString",
|
34862
|
+
# },
|
34863
|
+
# ],
|
34864
|
+
# },
|
34865
|
+
# aws_ecr_repository: {
|
34866
|
+
# arn: "NonEmptyString",
|
34867
|
+
# image_scanning_configuration: {
|
34868
|
+
# scan_on_push: false,
|
34869
|
+
# },
|
34870
|
+
# image_tag_mutability: "NonEmptyString",
|
34871
|
+
# lifecycle_policy: {
|
34872
|
+
# lifecycle_policy_text: "NonEmptyString",
|
34873
|
+
# registry_id: "NonEmptyString",
|
34874
|
+
# },
|
34875
|
+
# repository_name: "NonEmptyString",
|
34876
|
+
# repository_policy_text: "NonEmptyString",
|
34877
|
+
# },
|
34878
|
+
# aws_eks_cluster: {
|
34879
|
+
# arn: "NonEmptyString",
|
34880
|
+
# certificate_authority_data: "NonEmptyString",
|
34881
|
+
# cluster_status: "NonEmptyString",
|
34882
|
+
# endpoint: "NonEmptyString",
|
34883
|
+
# name: "NonEmptyString",
|
34884
|
+
# resources_vpc_config: {
|
34885
|
+
# security_group_ids: ["NonEmptyString"],
|
34886
|
+
# subnet_ids: ["NonEmptyString"],
|
34887
|
+
# },
|
34888
|
+
# role_arn: "NonEmptyString",
|
34889
|
+
# version: "NonEmptyString",
|
34890
|
+
# logging: {
|
34891
|
+
# cluster_logging: [
|
34892
|
+
# {
|
34893
|
+
# enabled: false,
|
34894
|
+
# types: ["NonEmptyString"],
|
34895
|
+
# },
|
34896
|
+
# ],
|
34897
|
+
# },
|
34898
|
+
# },
|
32320
34899
|
# }
|
32321
34900
|
#
|
32322
34901
|
# @!attribute [rw] aws_auto_scaling_auto_scaling_group
|
@@ -32539,9 +35118,37 @@ module Aws::SecurityHub
|
|
32539
35118
|
# @return [Types::AwsEc2VpnConnectionDetails]
|
32540
35119
|
#
|
32541
35120
|
# @!attribute [rw] aws_ecr_container_image
|
32542
|
-
#
|
35121
|
+
# Information about an Amazon ECR image.
|
32543
35122
|
# @return [Types::AwsEcrContainerImageDetails]
|
32544
35123
|
#
|
35124
|
+
# @!attribute [rw] aws_open_search_service_domain
|
35125
|
+
# Details about an Amazon OpenSearch Service domain.
|
35126
|
+
# @return [Types::AwsOpenSearchServiceDomainDetails]
|
35127
|
+
#
|
35128
|
+
# @!attribute [rw] aws_ec2_vpc_endpoint_service
|
35129
|
+
# Details about the service configuration for a VPC endpoint service.
|
35130
|
+
# @return [Types::AwsEc2VpcEndpointServiceDetails]
|
35131
|
+
#
|
35132
|
+
# @!attribute [rw] aws_xray_encryption_config
|
35133
|
+
# Information about the encryption configuration for X-Ray.
|
35134
|
+
# @return [Types::AwsXrayEncryptionConfigDetails]
|
35135
|
+
#
|
35136
|
+
# @!attribute [rw] aws_waf_rate_based_rule
|
35137
|
+
# Details about a rate-based rule for global resources.
|
35138
|
+
# @return [Types::AwsWafRateBasedRuleDetails]
|
35139
|
+
#
|
35140
|
+
# @!attribute [rw] aws_waf_regional_rate_based_rule
|
35141
|
+
# Details about a rate-based rule for Regional resources.
|
35142
|
+
# @return [Types::AwsWafRegionalRateBasedRuleDetails]
|
35143
|
+
#
|
35144
|
+
# @!attribute [rw] aws_ecr_repository
|
35145
|
+
# Information about an Amazon Elastic Container Registry repository.
|
35146
|
+
# @return [Types::AwsEcrRepositoryDetails]
|
35147
|
+
#
|
35148
|
+
# @!attribute [rw] aws_eks_cluster
|
35149
|
+
# Details about an Amazon EKS cluster.
|
35150
|
+
# @return [Types::AwsEksClusterDetails]
|
35151
|
+
#
|
32545
35152
|
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/ResourceDetails AWS API Documentation
|
32546
35153
|
#
|
32547
35154
|
class ResourceDetails < Struct.new(
|
@@ -32596,7 +35203,14 @@ module Aws::SecurityHub
|
|
32596
35203
|
:aws_ecs_service,
|
32597
35204
|
:aws_auto_scaling_launch_configuration,
|
32598
35205
|
:aws_ec2_vpn_connection,
|
32599
|
-
:aws_ecr_container_image
|
35206
|
+
:aws_ecr_container_image,
|
35207
|
+
:aws_open_search_service_domain,
|
35208
|
+
:aws_ec2_vpc_endpoint_service,
|
35209
|
+
:aws_xray_encryption_config,
|
35210
|
+
:aws_waf_rate_based_rule,
|
35211
|
+
:aws_waf_regional_rate_based_rule,
|
35212
|
+
:aws_ecr_repository,
|
35213
|
+
:aws_eks_cluster)
|
32600
35214
|
SENSITIVE = []
|
32601
35215
|
include Aws::Structure
|
32602
35216
|
end
|
@@ -33510,6 +36124,96 @@ module Aws::SecurityHub
|
|
33510
36124
|
#
|
33511
36125
|
class UpdateActionTargetResponse < Aws::EmptyStructure; end
|
33512
36126
|
|
36127
|
+
# @note When making an API call, you may pass UpdateFindingAggregatorRequest
|
36128
|
+
# data as a hash:
|
36129
|
+
#
|
36130
|
+
# {
|
36131
|
+
# finding_aggregator_arn: "NonEmptyString", # required
|
36132
|
+
# region_linking_mode: "NonEmptyString", # required
|
36133
|
+
# regions: ["NonEmptyString"],
|
36134
|
+
# }
|
36135
|
+
#
|
36136
|
+
# @!attribute [rw] finding_aggregator_arn
|
36137
|
+
# The ARN of the finding aggregator. To obtain the ARN, use
|
36138
|
+
# `ListFindingAggregators`.
|
36139
|
+
# @return [String]
|
36140
|
+
#
|
36141
|
+
# @!attribute [rw] region_linking_mode
|
36142
|
+
# Indicates whether to aggregate findings from all of the available
|
36143
|
+
# Regions in the current partition. Also determines whether to
|
36144
|
+
# automatically aggregate findings from new Regions as Security Hub
|
36145
|
+
# supports them and you opt into them.
|
36146
|
+
#
|
36147
|
+
# The selected option also determines how to use the Regions provided
|
36148
|
+
# in the Regions list.
|
36149
|
+
#
|
36150
|
+
# The options are as follows:
|
36151
|
+
#
|
36152
|
+
# * `ALL_REGIONS` - Indicates to aggregate findings from all of the
|
36153
|
+
# Regions where Security Hub is enabled. When you choose this
|
36154
|
+
# option, Security Hub also automatically aggregates findings from
|
36155
|
+
# new Regions as Security Hub supports them and you opt into them.
|
36156
|
+
#
|
36157
|
+
# * `ALL_REGIONS_EXCEPT_SPECIFIED` - Indicates to aggregate findings
|
36158
|
+
# from all of the Regions where Security Hub is enabled, except for
|
36159
|
+
# the Regions listed in the `Regions` parameter. When you choose
|
36160
|
+
# this option, Security Hub also automatically aggregates findings
|
36161
|
+
# from new Regions as Security Hub supports them and you opt into
|
36162
|
+
# them.
|
36163
|
+
#
|
36164
|
+
# * `SPECIFIED_REGIONS` - Indicates to aggregate findings only from
|
36165
|
+
# the Regions listed in the `Regions` parameter. Security Hub does
|
36166
|
+
# not automatically aggregate findings from new Regions.
|
36167
|
+
# @return [String]
|
36168
|
+
#
|
36169
|
+
# @!attribute [rw] regions
|
36170
|
+
# If `RegionLinkingMode` is `ALL_REGIONS_EXCEPT_SPECIFIED`, then this
|
36171
|
+
# is a comma-separated list of Regions that do not aggregate findings
|
36172
|
+
# to the aggregation Region.
|
36173
|
+
#
|
36174
|
+
# If `RegionLinkingMode` is `SPECIFIED_REGIONS`, then this is a
|
36175
|
+
# comma-separated list of Regions that do aggregate findings to the
|
36176
|
+
# aggregation Region.
|
36177
|
+
# @return [Array<String>]
|
36178
|
+
#
|
36179
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/UpdateFindingAggregatorRequest AWS API Documentation
|
36180
|
+
#
|
36181
|
+
class UpdateFindingAggregatorRequest < Struct.new(
|
36182
|
+
:finding_aggregator_arn,
|
36183
|
+
:region_linking_mode,
|
36184
|
+
:regions)
|
36185
|
+
SENSITIVE = []
|
36186
|
+
include Aws::Structure
|
36187
|
+
end
|
36188
|
+
|
36189
|
+
# @!attribute [rw] finding_aggregator_arn
|
36190
|
+
# The ARN of the finding aggregator.
|
36191
|
+
# @return [String]
|
36192
|
+
#
|
36193
|
+
# @!attribute [rw] finding_aggregation_region
|
36194
|
+
# The aggregation Region.
|
36195
|
+
# @return [String]
|
36196
|
+
#
|
36197
|
+
# @!attribute [rw] region_linking_mode
|
36198
|
+
# Indicates whether to link all Regions, all Regions except for a list
|
36199
|
+
# of excluded Regions, or a list of included Regions.
|
36200
|
+
# @return [String]
|
36201
|
+
#
|
36202
|
+
# @!attribute [rw] regions
|
36203
|
+
# The list of excluded Regions or included Regions.
|
36204
|
+
# @return [Array<String>]
|
36205
|
+
#
|
36206
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/securityhub-2018-10-26/UpdateFindingAggregatorResponse AWS API Documentation
|
36207
|
+
#
|
36208
|
+
class UpdateFindingAggregatorResponse < Struct.new(
|
36209
|
+
:finding_aggregator_arn,
|
36210
|
+
:finding_aggregation_region,
|
36211
|
+
:region_linking_mode,
|
36212
|
+
:regions)
|
36213
|
+
SENSITIVE = []
|
36214
|
+
include Aws::Structure
|
36215
|
+
end
|
36216
|
+
|
33513
36217
|
# @note When making an API call, you may pass UpdateFindingsRequest
|
33514
36218
|
# data as a hash:
|
33515
36219
|
#
|