@cdklabs/cdk-ecs-codedeploy 0.0.6 → 0.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (40) hide show
  1. package/.jsii +3 -3
  2. package/lib/ecs-appspec/index.js +1 -1
  3. package/lib/ecs-deployment/index.js +1 -1
  4. package/node_modules/aws-sdk/CHANGELOG.md +19 -1
  5. package/node_modules/aws-sdk/README.md +1 -1
  6. package/node_modules/aws-sdk/apis/backup-gateway-2021-01-01.min.json +211 -9
  7. package/node_modules/aws-sdk/apis/ce-2017-10-25.min.json +21 -3
  8. package/node_modules/aws-sdk/apis/ecs-2014-11-13.min.json +5 -2
  9. package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +3 -0
  10. package/node_modules/aws-sdk/apis/kinesis-2013-12-02.min.json +304 -51
  11. package/node_modules/aws-sdk/apis/kinesis-2013-12-02.paginators.json +6 -3
  12. package/node_modules/aws-sdk/apis/m2-2021-04-28.min.json +4 -0
  13. package/node_modules/aws-sdk/apis/monitoring-2010-08-01.min.json +33 -27
  14. package/node_modules/aws-sdk/apis/networkmanager-2019-07-05.min.json +3 -0
  15. package/node_modules/aws-sdk/apis/redshift-data-2019-12-20.min.json +13 -7
  16. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +541 -524
  17. package/node_modules/aws-sdk/apis/securityhub-2018-10-26.min.json +796 -160
  18. package/node_modules/aws-sdk/clients/backupgateway.d.ts +258 -0
  19. package/node_modules/aws-sdk/clients/cloudwatch.d.ts +12 -3
  20. package/node_modules/aws-sdk/clients/connect.d.ts +7 -7
  21. package/node_modules/aws-sdk/clients/costexplorer.d.ts +33 -13
  22. package/node_modules/aws-sdk/clients/ecs.d.ts +15 -3
  23. package/node_modules/aws-sdk/clients/eks.d.ts +21 -21
  24. package/node_modules/aws-sdk/clients/glue.d.ts +4 -0
  25. package/node_modules/aws-sdk/clients/kinesis.d.ts +180 -60
  26. package/node_modules/aws-sdk/clients/location.d.ts +2 -2
  27. package/node_modules/aws-sdk/clients/m2.d.ts +81 -65
  28. package/node_modules/aws-sdk/clients/networkmanager.d.ts +6 -2
  29. package/node_modules/aws-sdk/clients/redshiftdata.d.ts +31 -22
  30. package/node_modules/aws-sdk/clients/sagemaker.d.ts +60 -42
  31. package/node_modules/aws-sdk/clients/sagemakermetrics.d.ts +7 -7
  32. package/node_modules/aws-sdk/clients/securityhub.d.ts +971 -0
  33. package/node_modules/aws-sdk/clients/translate.d.ts +10 -9
  34. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  35. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +13 -13
  36. package/node_modules/aws-sdk/dist/aws-sdk.js +372 -89
  37. package/node_modules/aws-sdk/dist/aws-sdk.min.js +95 -95
  38. package/node_modules/aws-sdk/lib/core.js +1 -1
  39. package/node_modules/aws-sdk/package.json +1 -1
  40. package/package.json +6 -6
@@ -2767,6 +2767,677 @@ declare namespace SecurityHub {
2767
2767
  NetworkInterfaceId?: NonEmptyString;
2768
2768
  }
2769
2769
  export type AwsEc2InstanceNetworkInterfacesList = AwsEc2InstanceNetworkInterfacesDetails[];
2770
+ export interface AwsEc2LaunchTemplateDataBlockDeviceMappingSetDetails {
2771
+ /**
2772
+ * The device name.
2773
+ */
2774
+ DeviceName?: NonEmptyString;
2775
+ /**
2776
+ * Parameters used to automatically set up Amazon EBS volumes when the instance is launched.
2777
+ */
2778
+ Ebs?: AwsEc2LaunchTemplateDataBlockDeviceMappingSetEbsDetails;
2779
+ /**
2780
+ * Omits the device from the block device mapping when an empty string is specified.
2781
+ */
2782
+ NoDevice?: NonEmptyString;
2783
+ /**
2784
+ * The virtual device name (ephemeralN). Instance store volumes are numbered starting from 0. An instance type with 2 available instance store volumes can specify mappings for ephemeral0 and ephemeral1. The number of available instance store volumes depends on the instance type.
2785
+ */
2786
+ VirtualName?: NonEmptyString;
2787
+ }
2788
+ export interface AwsEc2LaunchTemplateDataBlockDeviceMappingSetEbsDetails {
2789
+ /**
2790
+ * Indicates whether the EBS volume is deleted on instance termination.
2791
+ */
2792
+ DeleteOnTermination?: Boolean;
2793
+ /**
2794
+ * Indicates whether the EBS volume is encrypted. Encrypted volumes can only be attached to instances that support Amazon EBS encryption. If you're creating a volume from a snapshot, you can't specify an encryption value.
2795
+ */
2796
+ Encrypted?: Boolean;
2797
+ /**
2798
+ * The number of I/O operations per second (IOPS).
2799
+ */
2800
+ Iops?: Integer;
2801
+ /**
2802
+ * The Amazon Resource Name (ARN) of the symmetric Key Management Service (KMS) customer managed key used for encryption.
2803
+ */
2804
+ KmsKeyId?: NonEmptyString;
2805
+ /**
2806
+ * The ID of the EBS snapshot.
2807
+ */
2808
+ SnapshotId?: NonEmptyString;
2809
+ /**
2810
+ * The throughput to provision for a gp3 volume, with a maximum of 1,000 MiB/s.
2811
+ */
2812
+ Throughput?: Integer;
2813
+ /**
2814
+ * The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size.
2815
+ */
2816
+ VolumeSize?: Integer;
2817
+ /**
2818
+ * The volume type.
2819
+ */
2820
+ VolumeType?: NonEmptyString;
2821
+ }
2822
+ export type AwsEc2LaunchTemplateDataBlockDeviceMappingSetList = AwsEc2LaunchTemplateDataBlockDeviceMappingSetDetails[];
2823
+ export interface AwsEc2LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetDetails {
2824
+ /**
2825
+ * The ID of the Capacity Reservation in which to run the instance.
2826
+ */
2827
+ CapacityReservationId?: NonEmptyString;
2828
+ /**
2829
+ * The Amazon Resource Name (ARN) of the Capacity Reservation resource group in which to run the instance.
2830
+ */
2831
+ CapacityReservationResourceGroupArn?: NonEmptyString;
2832
+ }
2833
+ export interface AwsEc2LaunchTemplateDataCapacityReservationSpecificationDetails {
2834
+ /**
2835
+ * Indicates the instance's Capacity Reservation preferences. If equal to open, the instance can run in any open Capacity Reservation that has matching attributes (instance type, platform, Availability Zone). If equal to none, the instance avoids running in a Capacity Reservation even if one is available. The instance runs in On-Demand capacity.
2836
+ */
2837
+ CapacityReservationPreference?: NonEmptyString;
2838
+ /**
2839
+ * Specifies a target Capacity Reservation.
2840
+ */
2841
+ CapacityReservationTarget?: AwsEc2LaunchTemplateDataCapacityReservationSpecificationCapacityReservationTargetDetails;
2842
+ }
2843
+ export interface AwsEc2LaunchTemplateDataCpuOptionsDetails {
2844
+ /**
2845
+ * The number of CPU cores for the instance.
2846
+ */
2847
+ CoreCount?: Integer;
2848
+ /**
2849
+ * The number of threads per CPU core. A value of 1 disables multithreading for the instance, The default value is 2.
2850
+ */
2851
+ ThreadsPerCore?: Integer;
2852
+ }
2853
+ export interface AwsEc2LaunchTemplateDataCreditSpecificationDetails {
2854
+ /**
2855
+ * The credit option for CPU usage of a T instance.
2856
+ */
2857
+ CpuCredits?: NonEmptyString;
2858
+ }
2859
+ export interface AwsEc2LaunchTemplateDataDetails {
2860
+ /**
2861
+ * Information about a block device mapping for an Amazon EC2 launch template.
2862
+ */
2863
+ BlockDeviceMappingSet?: AwsEc2LaunchTemplateDataBlockDeviceMappingSetList;
2864
+ /**
2865
+ * Specifies an instance's Capacity Reservation targeting option. You can specify only one option at a time.
2866
+ */
2867
+ CapacityReservationSpecification?: AwsEc2LaunchTemplateDataCapacityReservationSpecificationDetails;
2868
+ /**
2869
+ * Specifies the CPU options for an instance. For more information, see Optimize CPU options in the Amazon Elastic Compute Cloud User Guide.
2870
+ */
2871
+ CpuOptions?: AwsEc2LaunchTemplateDataCpuOptionsDetails;
2872
+ /**
2873
+ * Specifies the credit option for CPU usage of a T2, T3, or T3a instance.
2874
+ */
2875
+ CreditSpecification?: AwsEc2LaunchTemplateDataCreditSpecificationDetails;
2876
+ /**
2877
+ * Indicates whether to enable the instance for stop protection. For more information, see Enable stop protection in the Amazon EC2 User Guide.
2878
+ */
2879
+ DisableApiStop?: Boolean;
2880
+ /**
2881
+ * If you set this parameter to true, you can't terminate the instance using the Amazon EC2 console, CLI, or API. If set to true, you can.
2882
+ */
2883
+ DisableApiTermination?: Boolean;
2884
+ /**
2885
+ * Indicates whether the instance is optimized for Amazon EBS I/O.
2886
+ */
2887
+ EbsOptimized?: Boolean;
2888
+ /**
2889
+ * Provides details about Elastic Graphics accelerators to associate with the instance.
2890
+ */
2891
+ ElasticGpuSpecificationSet?: AwsEc2LaunchTemplateDataElasticGpuSpecificationSetList;
2892
+ /**
2893
+ * The Amazon Elastic Inference accelerator for the instance.
2894
+ */
2895
+ ElasticInferenceAcceleratorSet?: AwsEc2LaunchTemplateDataElasticInferenceAcceleratorSetList;
2896
+ /**
2897
+ * Indicates whether the Amazon EC2 instance is enabled for Amazon Web Services Nitro Enclaves.
2898
+ */
2899
+ EnclaveOptions?: AwsEc2LaunchTemplateDataEnclaveOptionsDetails;
2900
+ /**
2901
+ * Specifies whether your Amazon EC2 instance is configured for hibernation.
2902
+ */
2903
+ HibernationOptions?: AwsEc2LaunchTemplateDataHibernationOptionsDetails;
2904
+ /**
2905
+ * The name or Amazon Resource Name (ARN) of an IAM instance profile.
2906
+ */
2907
+ IamInstanceProfile?: AwsEc2LaunchTemplateDataIamInstanceProfileDetails;
2908
+ /**
2909
+ * The ID of the Amazon Machine Image (AMI).
2910
+ */
2911
+ ImageId?: NonEmptyString;
2912
+ /**
2913
+ * Provides the options for specifying the instance initiated shutdown behavior.
2914
+ */
2915
+ InstanceInitiatedShutdownBehavior?: NonEmptyString;
2916
+ /**
2917
+ * Specifies the market (purchasing) option for an instance.
2918
+ */
2919
+ InstanceMarketOptions?: AwsEc2LaunchTemplateDataInstanceMarketOptionsDetails;
2920
+ /**
2921
+ * The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with these attributes. If you specify InstanceRequirements, you can't specify InstanceType.
2922
+ */
2923
+ InstanceRequirements?: AwsEc2LaunchTemplateDataInstanceRequirementsDetails;
2924
+ /**
2925
+ * The instance type. For more information, see Instance types in the Amazon EC2 User Guide. If you specify InstanceType, you can't specify InstanceRequirements.
2926
+ */
2927
+ InstanceType?: NonEmptyString;
2928
+ /**
2929
+ * The ID of the kernel.
2930
+ */
2931
+ KernelId?: NonEmptyString;
2932
+ /**
2933
+ * The name of the key pair that allows users to connect to the instance.
2934
+ */
2935
+ KeyName?: NonEmptyString;
2936
+ /**
2937
+ * Specifies a license configuration for an instance.
2938
+ */
2939
+ LicenseSet?: AwsEc2LaunchTemplateDataLicenseSetList;
2940
+ /**
2941
+ * The maintenance options of your instance.
2942
+ */
2943
+ MaintenanceOptions?: AwsEc2LaunchTemplateDataMaintenanceOptionsDetails;
2944
+ /**
2945
+ * The metadata options for the instance. For more information, see Instance metadata and user data in the Amazon EC2 User Guide.
2946
+ */
2947
+ MetadataOptions?: AwsEc2LaunchTemplateDataMetadataOptionsDetails;
2948
+ /**
2949
+ * The monitoring for the instance.
2950
+ */
2951
+ Monitoring?: AwsEc2LaunchTemplateDataMonitoringDetails;
2952
+ /**
2953
+ * Specifies the parameters for a network interface that is attached to the instance.
2954
+ */
2955
+ NetworkInterfaceSet?: AwsEc2LaunchTemplateDataNetworkInterfaceSetList;
2956
+ /**
2957
+ * Specifies the placement of an instance.
2958
+ */
2959
+ Placement?: AwsEc2LaunchTemplateDataPlacementDetails;
2960
+ /**
2961
+ * The options for the instance hostname.
2962
+ */
2963
+ PrivateDnsNameOptions?: AwsEc2LaunchTemplateDataPrivateDnsNameOptionsDetails;
2964
+ /**
2965
+ * The ID of the RAM disk.
2966
+ */
2967
+ RamDiskId?: NonEmptyString;
2968
+ /**
2969
+ * One or more security group IDs.
2970
+ */
2971
+ SecurityGroupIdSet?: NonEmptyStringList;
2972
+ /**
2973
+ * One or more security group names. For a nondefault VPC, you must use security group IDs instead. You cannot specify both a security group ID and security name in the same request.
2974
+ */
2975
+ SecurityGroupSet?: NonEmptyStringList;
2976
+ /**
2977
+ * The user data to make available to the instance.
2978
+ */
2979
+ UserData?: NonEmptyString;
2980
+ }
2981
+ export interface AwsEc2LaunchTemplateDataElasticGpuSpecificationSetDetails {
2982
+ /**
2983
+ * The type of Elastic Graphics accelerator.
2984
+ */
2985
+ Type?: NonEmptyString;
2986
+ }
2987
+ export type AwsEc2LaunchTemplateDataElasticGpuSpecificationSetList = AwsEc2LaunchTemplateDataElasticGpuSpecificationSetDetails[];
2988
+ export interface AwsEc2LaunchTemplateDataElasticInferenceAcceleratorSetDetails {
2989
+ /**
2990
+ * The number of Elastic Inference accelerators to attach to the instance.
2991
+ */
2992
+ Count?: Integer;
2993
+ /**
2994
+ * The type of Elastic Inference accelerator.
2995
+ */
2996
+ Type?: NonEmptyString;
2997
+ }
2998
+ export type AwsEc2LaunchTemplateDataElasticInferenceAcceleratorSetList = AwsEc2LaunchTemplateDataElasticInferenceAcceleratorSetDetails[];
2999
+ export interface AwsEc2LaunchTemplateDataEnclaveOptionsDetails {
3000
+ /**
3001
+ * If this parameter is set to true, the instance is enabled for Amazon Web Services Nitro Enclaves.
3002
+ */
3003
+ Enabled?: Boolean;
3004
+ }
3005
+ export interface AwsEc2LaunchTemplateDataHibernationOptionsDetails {
3006
+ /**
3007
+ * If you set this parameter to true, the instance is enabled for hibernation.
3008
+ */
3009
+ Configured?: Boolean;
3010
+ }
3011
+ export interface AwsEc2LaunchTemplateDataIamInstanceProfileDetails {
3012
+ /**
3013
+ * The Amazon Resource Name (ARN) of the instance profile.
3014
+ */
3015
+ Arn?: NonEmptyString;
3016
+ /**
3017
+ * The name of the instance profile.
3018
+ */
3019
+ Name?: NonEmptyString;
3020
+ }
3021
+ export interface AwsEc2LaunchTemplateDataInstanceMarketOptionsDetails {
3022
+ /**
3023
+ * The market type.
3024
+ */
3025
+ MarketType?: NonEmptyString;
3026
+ /**
3027
+ * The options for Spot Instances.
3028
+ */
3029
+ SpotOptions?: AwsEc2LaunchTemplateDataInstanceMarketOptionsSpotOptionsDetails;
3030
+ }
3031
+ export interface AwsEc2LaunchTemplateDataInstanceMarketOptionsSpotOptionsDetails {
3032
+ /**
3033
+ * Deprecated.
3034
+ */
3035
+ BlockDurationMinutes?: Integer;
3036
+ /**
3037
+ * The behavior when a Spot Instance is interrupted.
3038
+ */
3039
+ InstanceInterruptionBehavior?: NonEmptyString;
3040
+ /**
3041
+ * The maximum hourly price you're willing to pay for the Spot Instances.
3042
+ */
3043
+ MaxPrice?: NonEmptyString;
3044
+ /**
3045
+ * The Spot Instance request type.
3046
+ */
3047
+ SpotInstanceType?: NonEmptyString;
3048
+ /**
3049
+ * The end date of the request, in UTC format (YYYY-MM-DDTHH:MM:SSZ), for persistent requests.
3050
+ */
3051
+ ValidUntil?: NonEmptyString;
3052
+ }
3053
+ export interface AwsEc2LaunchTemplateDataInstanceRequirementsAcceleratorCountDetails {
3054
+ /**
3055
+ * The maximum number of accelerators. If this parameter isn't specified, there's no maximum limit. To exclude accelerator-enabled instance types, set Max to 0.
3056
+ */
3057
+ Max?: Integer;
3058
+ /**
3059
+ * The minimum number of accelerators. If this parameter isn't specified, there's no minimum limit.
3060
+ */
3061
+ Min?: Integer;
3062
+ }
3063
+ export interface AwsEc2LaunchTemplateDataInstanceRequirementsAcceleratorTotalMemoryMiBDetails {
3064
+ /**
3065
+ * The maximum amount of memory, in MiB. If this parameter isn't specified, there's no maximum limit.
3066
+ */
3067
+ Max?: Integer;
3068
+ /**
3069
+ * The minimum amount of memory, in MiB. If 0 is specified, there's no maximum limit.
3070
+ */
3071
+ Min?: Integer;
3072
+ }
3073
+ export interface AwsEc2LaunchTemplateDataInstanceRequirementsBaselineEbsBandwidthMbpsDetails {
3074
+ /**
3075
+ * The maximum baseline bandwidth, in Mbps. If this parameter is omitted, there's no maximum limit.
3076
+ */
3077
+ Max?: Integer;
3078
+ /**
3079
+ * The minimum baseline bandwidth, in Mbps. If this parameter is omitted, there's no minimum limit.
3080
+ */
3081
+ Min?: Integer;
3082
+ }
3083
+ export interface AwsEc2LaunchTemplateDataInstanceRequirementsDetails {
3084
+ /**
3085
+ * The minimum and maximum number of accelerators (GPUs, FPGAs, or Amazon Web Services Inferentia chips) on an instance.
3086
+ */
3087
+ AcceleratorCount?: AwsEc2LaunchTemplateDataInstanceRequirementsAcceleratorCountDetails;
3088
+ /**
3089
+ * Indicates whether instance types must have accelerators by specific manufacturers.
3090
+ */
3091
+ AcceleratorManufacturers?: NonEmptyStringList;
3092
+ /**
3093
+ * The accelerators that must be on the instance type.
3094
+ */
3095
+ AcceleratorNames?: NonEmptyStringList;
3096
+ /**
3097
+ * The minimum and maximum amount of total accelerator memory, in MiB.
3098
+ */
3099
+ AcceleratorTotalMemoryMiB?: AwsEc2LaunchTemplateDataInstanceRequirementsAcceleratorTotalMemoryMiBDetails;
3100
+ /**
3101
+ * The accelerator types that must be on the instance type.
3102
+ */
3103
+ AcceleratorTypes?: NonEmptyStringList;
3104
+ /**
3105
+ * Indicates whether bare metal instance types must be included, excluded, or required.
3106
+ */
3107
+ BareMetal?: NonEmptyString;
3108
+ /**
3109
+ * The minimum and maximum baseline bandwidth to Amazon EBS, in Mbps. For more information, see Amazon EBS optimized instances in the Amazon EC2 User Guide.
3110
+ */
3111
+ BaselineEbsBandwidthMbps?: AwsEc2LaunchTemplateDataInstanceRequirementsBaselineEbsBandwidthMbpsDetails;
3112
+ /**
3113
+ * Indicates whether burstable performance T instance types are included, excluded, or required. For more information, Burstable performance instances in the Amazon EC2 User Guide.
3114
+ */
3115
+ BurstablePerformance?: NonEmptyString;
3116
+ /**
3117
+ * The CPU manufacturers to include.
3118
+ */
3119
+ CpuManufacturers?: NonEmptyStringList;
3120
+ /**
3121
+ * The instance types to exclude.
3122
+ */
3123
+ ExcludedInstanceTypes?: NonEmptyStringList;
3124
+ /**
3125
+ * Indicates whether current or previous generation instance types are included.
3126
+ */
3127
+ InstanceGenerations?: NonEmptyStringList;
3128
+ /**
3129
+ * Indicates whether instance types with instance store volumes are included, excluded, or required. For more information, see Amazon EC2 instance store in the Amazon EC2 User Guide.
3130
+ */
3131
+ LocalStorage?: NonEmptyString;
3132
+ /**
3133
+ * The type of local storage that is required.
3134
+ */
3135
+ LocalStorageTypes?: NonEmptyStringList;
3136
+ /**
3137
+ * The minimum and maximum amount of memory per vCPU, in GiB.
3138
+ */
3139
+ MemoryGiBPerVCpu?: AwsEc2LaunchTemplateDataInstanceRequirementsMemoryGiBPerVCpuDetails;
3140
+ /**
3141
+ * The minimum and maximum amount of memory, in MiB.
3142
+ */
3143
+ MemoryMiB?: AwsEc2LaunchTemplateDataInstanceRequirementsMemoryMiBDetails;
3144
+ /**
3145
+ * The minimum and maximum number of network interfaces.
3146
+ */
3147
+ NetworkInterfaceCount?: AwsEc2LaunchTemplateDataInstanceRequirementsNetworkInterfaceCountDetails;
3148
+ /**
3149
+ * The price protection threshold for On-Demand Instances. This is the maximum you’ll pay for an On-Demand Instance, expressed as a percentage above the least expensive current generation M, C, or R instance type with your specified attributes. When Amazon EC2 selects instance types with your attributes, it excludes instance types priced above your threshold. The parameter accepts an integer, which Amazon EC2 interprets as a percentage. A high value, such as 999999, turns off price protection.
3150
+ */
3151
+ OnDemandMaxPricePercentageOverLowestPrice?: Integer;
3152
+ /**
3153
+ * Indicates whether instance types must support hibernation for On-Demand Instances.
3154
+ */
3155
+ RequireHibernateSupport?: Boolean;
3156
+ /**
3157
+ * The price protection threshold for Spot Instances. This is the maximum you’ll pay for a Spot Instance, expressed as a percentage above the least expensive current generation M, C, or R instance type with your specified attributes. When Amazon EC2 selects instance types with your attributes, it excludes instance types priced above your threshold. The parameter accepts an integer, which Amazon EC2 interprets as a percentage. A high value, such as 999999, turns off price protection.
3158
+ */
3159
+ SpotMaxPricePercentageOverLowestPrice?: Integer;
3160
+ /**
3161
+ * The minimum and maximum amount of total local storage, in GB.
3162
+ */
3163
+ TotalLocalStorageGB?: AwsEc2LaunchTemplateDataInstanceRequirementsTotalLocalStorageGBDetails;
3164
+ /**
3165
+ * The minimum and maximum number of vCPUs.
3166
+ */
3167
+ VCpuCount?: AwsEc2LaunchTemplateDataInstanceRequirementsVCpuCountDetails;
3168
+ }
3169
+ export interface AwsEc2LaunchTemplateDataInstanceRequirementsMemoryGiBPerVCpuDetails {
3170
+ /**
3171
+ * The maximum amount of memory per vCPU, in GiB. If this parameter is omitted, there's no maximum limit.
3172
+ */
3173
+ Max?: Double;
3174
+ /**
3175
+ * The minimum amount of memory per vCPU, in GiB. If this parameter is omitted, there's no maximum limit.
3176
+ */
3177
+ Min?: Double;
3178
+ }
3179
+ export interface AwsEc2LaunchTemplateDataInstanceRequirementsMemoryMiBDetails {
3180
+ /**
3181
+ * The maximum amount of memory, in MiB.
3182
+ */
3183
+ Max?: Integer;
3184
+ /**
3185
+ * The minimum amount of memory, in MiB.
3186
+ */
3187
+ Min?: Integer;
3188
+ }
3189
+ export interface AwsEc2LaunchTemplateDataInstanceRequirementsNetworkInterfaceCountDetails {
3190
+ /**
3191
+ * The maximum number of network interfaces.
3192
+ */
3193
+ Max?: Integer;
3194
+ /**
3195
+ * The minimum number of network interfaces.
3196
+ */
3197
+ Min?: Integer;
3198
+ }
3199
+ export interface AwsEc2LaunchTemplateDataInstanceRequirementsTotalLocalStorageGBDetails {
3200
+ /**
3201
+ * The maximum amount of total local storage, in GB.
3202
+ */
3203
+ Max?: Double;
3204
+ /**
3205
+ * The minimum amount of total local storage, in GB.
3206
+ */
3207
+ Min?: Double;
3208
+ }
3209
+ export interface AwsEc2LaunchTemplateDataInstanceRequirementsVCpuCountDetails {
3210
+ /**
3211
+ * The maximum number of vCPUs.
3212
+ */
3213
+ Max?: Integer;
3214
+ /**
3215
+ * The minimum number of vCPUs.
3216
+ */
3217
+ Min?: Integer;
3218
+ }
3219
+ export interface AwsEc2LaunchTemplateDataLicenseSetDetails {
3220
+ /**
3221
+ * The Amazon Resource Name (ARN) of the license configuration.
3222
+ */
3223
+ LicenseConfigurationArn?: NonEmptyString;
3224
+ }
3225
+ export type AwsEc2LaunchTemplateDataLicenseSetList = AwsEc2LaunchTemplateDataLicenseSetDetails[];
3226
+ export interface AwsEc2LaunchTemplateDataMaintenanceOptionsDetails {
3227
+ /**
3228
+ * Disables the automatic recovery behavior of your instance or sets it to default.
3229
+ */
3230
+ AutoRecovery?: NonEmptyString;
3231
+ }
3232
+ export interface AwsEc2LaunchTemplateDataMetadataOptionsDetails {
3233
+ /**
3234
+ * Enables or disables the HTTP metadata endpoint on your instances. If the parameter is not specified, the default state is enabled, and you won’t be able to access your instance metadata.
3235
+ */
3236
+ HttpEndpoint?: NonEmptyString;
3237
+ /**
3238
+ * Enables or disables the IPv6 endpoint for the instance metadata service.
3239
+ */
3240
+ HttpProtocolIpv6?: NonEmptyString;
3241
+ /**
3242
+ * The state of token usage for your instance metadata requests.
3243
+ */
3244
+ HttpTokens?: NonEmptyString;
3245
+ /**
3246
+ * The desired HTTP PUT response hop limit for instance metadata requests. The larger the number, the further instance metadata requests can travel.
3247
+ */
3248
+ HttpPutResponseHopLimit?: Integer;
3249
+ /**
3250
+ * When set to enabled, this parameter allows access to instance tags from the instance metadata. When set to disabled, it turns off access to instance tags from the instance metadata. For more information, see Work with instance tags in instance metadata in the Amazon EC2 User Guide.
3251
+ */
3252
+ InstanceMetadataTags?: NonEmptyString;
3253
+ }
3254
+ export interface AwsEc2LaunchTemplateDataMonitoringDetails {
3255
+ /**
3256
+ * Enables detailed monitoring when true is specified. Otherwise, basic monitoring is enabled. For more information about detailed monitoring, see Enable or turn off detailed monitoring for your instances in the Amazon EC2 User Guide.
3257
+ */
3258
+ Enabled?: Boolean;
3259
+ }
3260
+ export interface AwsEc2LaunchTemplateDataNetworkInterfaceSetDetails {
3261
+ /**
3262
+ * Indicates whether to associate a Carrier IP address with eth0 for a new network interface. You use this option when you launch an instance in a Wavelength Zone and want to associate a Carrier IP address with the network interface. For more information, see Carrier IP address in the Wavelength Developer Guide.
3263
+ */
3264
+ AssociateCarrierIpAddress?: Boolean;
3265
+ /**
3266
+ * Associates a public IPv4 address with eth0 for a new network interface.
3267
+ */
3268
+ AssociatePublicIpAddress?: Boolean;
3269
+ /**
3270
+ * Indicates whether the network interface is deleted when the instance is terminated.
3271
+ */
3272
+ DeleteOnTermination?: Boolean;
3273
+ /**
3274
+ * A description for the network interface.
3275
+ */
3276
+ Description?: NonEmptyString;
3277
+ /**
3278
+ * The device index for the network interface attachment.
3279
+ */
3280
+ DeviceIndex?: Integer;
3281
+ /**
3282
+ * The IDs of one or more security groups.
3283
+ */
3284
+ Groups?: NonEmptyStringList;
3285
+ /**
3286
+ * The type of network interface.
3287
+ */
3288
+ InterfaceType?: NonEmptyString;
3289
+ /**
3290
+ * The number of IPv4 prefixes to be automatically assigned to the network interface. You cannot use this option if you use the Ipv4Prefixes option.
3291
+ */
3292
+ Ipv4PrefixCount?: Integer;
3293
+ /**
3294
+ * One or more IPv4 prefixes to be assigned to the network interface. You cannot use this option if you use the Ipv4PrefixCount option.
3295
+ */
3296
+ Ipv4Prefixes?: AwsEc2LaunchTemplateDataNetworkInterfaceSetIpv4PrefixesList;
3297
+ /**
3298
+ * The number of IPv6 addresses to assign to a network interface. Amazon EC2 automatically selects the IPv6 addresses from the subnet range. You can't use this option if you use Ipv6Addresses.
3299
+ */
3300
+ Ipv6AddressCount?: Integer;
3301
+ /**
3302
+ * One or more specific IPv6 addresses from the IPv6 CIDR block range of your subnet. You can't use this option if you use Ipv6AddressCount.
3303
+ */
3304
+ Ipv6Addresses?: AwsEc2LaunchTemplateDataNetworkInterfaceSetIpv6AddressesList;
3305
+ /**
3306
+ * The number of IPv6 prefixes to be automatically assigned to the network interface. You cannot use this option if you use the Ipv6Prefix option.
3307
+ */
3308
+ Ipv6PrefixCount?: Integer;
3309
+ /**
3310
+ * One or more IPv6 prefixes to be assigned to the network interface. You cannot use this option if you use the Ipv6PrefixCount option.
3311
+ */
3312
+ Ipv6Prefixes?: AwsEc2LaunchTemplateDataNetworkInterfaceSetIpv6PrefixesList;
3313
+ /**
3314
+ * The index of the network card. Some instance types support multiple network cards. The primary network interface must be assigned to network card index 0. The default is network card index 0.
3315
+ */
3316
+ NetworkCardIndex?: Integer;
3317
+ /**
3318
+ * The ID of the network interface.
3319
+ */
3320
+ NetworkInterfaceId?: NonEmptyString;
3321
+ /**
3322
+ * The primary private IPv4 address of the network interface.
3323
+ */
3324
+ PrivateIpAddress?: NonEmptyString;
3325
+ /**
3326
+ * One or more private IPv4 addresses.
3327
+ */
3328
+ PrivateIpAddresses?: AwsEc2LaunchTemplateDataNetworkInterfaceSetPrivateIpAddressesList;
3329
+ /**
3330
+ * The number of secondary private IPv4 addresses to assign to a network interface.
3331
+ */
3332
+ SecondaryPrivateIpAddressCount?: Integer;
3333
+ /**
3334
+ * The ID of the subnet for the network interface.
3335
+ */
3336
+ SubnetId?: NonEmptyString;
3337
+ }
3338
+ export interface AwsEc2LaunchTemplateDataNetworkInterfaceSetIpv4PrefixesDetails {
3339
+ /**
3340
+ * The IPv4 prefix. For more information, see Assigning prefixes to Amazon EC2 network interfaces in the Amazon Elastic Compute Cloud User Guide.
3341
+ */
3342
+ Ipv4Prefix?: NonEmptyString;
3343
+ }
3344
+ export type AwsEc2LaunchTemplateDataNetworkInterfaceSetIpv4PrefixesList = AwsEc2LaunchTemplateDataNetworkInterfaceSetIpv4PrefixesDetails[];
3345
+ export interface AwsEc2LaunchTemplateDataNetworkInterfaceSetIpv6AddressesDetails {
3346
+ /**
3347
+ * One or more specific IPv6 addresses from the IPv6 CIDR block range of your subnet.
3348
+ */
3349
+ Ipv6Address?: NonEmptyString;
3350
+ }
3351
+ export type AwsEc2LaunchTemplateDataNetworkInterfaceSetIpv6AddressesList = AwsEc2LaunchTemplateDataNetworkInterfaceSetIpv6AddressesDetails[];
3352
+ export interface AwsEc2LaunchTemplateDataNetworkInterfaceSetIpv6PrefixesDetails {
3353
+ /**
3354
+ * The IPv6 prefix.
3355
+ */
3356
+ Ipv6Prefix?: NonEmptyString;
3357
+ }
3358
+ export type AwsEc2LaunchTemplateDataNetworkInterfaceSetIpv6PrefixesList = AwsEc2LaunchTemplateDataNetworkInterfaceSetIpv6PrefixesDetails[];
3359
+ export type AwsEc2LaunchTemplateDataNetworkInterfaceSetList = AwsEc2LaunchTemplateDataNetworkInterfaceSetDetails[];
3360
+ export interface AwsEc2LaunchTemplateDataNetworkInterfaceSetPrivateIpAddressesDetails {
3361
+ /**
3362
+ * Indicates whether the private IPv4 address is the primary private IPv4 address. Only one IPv4 address can be designated as primary.
3363
+ */
3364
+ Primary?: Boolean;
3365
+ /**
3366
+ * The private IPv4 address.
3367
+ */
3368
+ PrivateIpAddress?: NonEmptyString;
3369
+ }
3370
+ export type AwsEc2LaunchTemplateDataNetworkInterfaceSetPrivateIpAddressesList = AwsEc2LaunchTemplateDataNetworkInterfaceSetPrivateIpAddressesDetails[];
3371
+ export interface AwsEc2LaunchTemplateDataPlacementDetails {
3372
+ /**
3373
+ * The affinity setting for an instance on an EC2 Dedicated Host.
3374
+ */
3375
+ Affinity?: NonEmptyString;
3376
+ /**
3377
+ * The Availability Zone for the instance.
3378
+ */
3379
+ AvailabilityZone?: NonEmptyString;
3380
+ /**
3381
+ * The name of the placement group for the instance.
3382
+ */
3383
+ GroupName?: NonEmptyString;
3384
+ /**
3385
+ * The ID of the Dedicated Host for the instance.
3386
+ */
3387
+ HostId?: NonEmptyString;
3388
+ /**
3389
+ * The Amazon Resource Name (ARN) of the host resource group in which to launch the instances.
3390
+ */
3391
+ HostResourceGroupArn?: NonEmptyString;
3392
+ /**
3393
+ * The number of the partition the instance should launch in.
3394
+ */
3395
+ PartitionNumber?: Integer;
3396
+ /**
3397
+ * Reserved for future use.
3398
+ */
3399
+ SpreadDomain?: NonEmptyString;
3400
+ /**
3401
+ * The tenancy of the instance (if the instance is running in a VPC). An instance with a tenancy of dedicated runs on single-tenant hardware.
3402
+ */
3403
+ Tenancy?: NonEmptyString;
3404
+ }
3405
+ export interface AwsEc2LaunchTemplateDataPrivateDnsNameOptionsDetails {
3406
+ /**
3407
+ * Indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records.
3408
+ */
3409
+ EnableResourceNameDnsAAAARecord?: Boolean;
3410
+ /**
3411
+ * Indicates whether to respond to DNS queries for instance hostnames with DNS A records.
3412
+ */
3413
+ EnableResourceNameDnsARecord?: Boolean;
3414
+ /**
3415
+ * The type of hostname for EC2 instances.
3416
+ */
3417
+ HostnameType?: NonEmptyString;
3418
+ }
3419
+ export interface AwsEc2LaunchTemplateDetails {
3420
+ /**
3421
+ * A name for the launch template.
3422
+ */
3423
+ LaunchTemplateName?: NonEmptyString;
3424
+ /**
3425
+ * An ID for the launch template.
3426
+ */
3427
+ Id?: NonEmptyString;
3428
+ /**
3429
+ * The information to include in the launch template.
3430
+ */
3431
+ LaunchTemplateData?: AwsEc2LaunchTemplateDataDetails;
3432
+ /**
3433
+ * The default version of the launch template.
3434
+ */
3435
+ DefaultVersionNumber?: Long;
3436
+ /**
3437
+ * The latest version of the launch template.
3438
+ */
3439
+ LatestVersionNumber?: Long;
3440
+ }
2770
3441
  export interface AwsEc2NetworkAclAssociation {
2771
3442
  /**
2772
3443
  * The identifier of the association between the network ACL and the subnet.
@@ -8022,6 +8693,94 @@ declare namespace SecurityHub {
8022
8693
  */
8023
8694
  SSEKMSKeyId?: NonEmptyString;
8024
8695
  }
8696
+ export interface AwsSageMakerNotebookInstanceDetails {
8697
+ /**
8698
+ * A list of Amazon Elastic Inference instance types to associate with the notebook instance. Currently, only one instance type can be associated with a notebook instance.
8699
+ */
8700
+ AcceleratorTypes?: NonEmptyStringList;
8701
+ /**
8702
+ * An array of up to three Git repositories associated with the notebook instance. These can be either the names of Git repositories stored as resources in your account, or the URL of Git repositories in AWS CodeCommit or in any other Git repository. These repositories are cloned at the same level as the default repository of your notebook instance. For more information, see Associating Git repositories with SageMaker notebook instances in the Amazon SageMaker Developer Guide.
8703
+ */
8704
+ AdditionalCodeRepositories?: NonEmptyStringList;
8705
+ /**
8706
+ * The Git repository associated with the notebook instance as its default code repository. This can be either the name of a Git repository stored as a resource in your account, or the URL of a Git repository in AWS CodeCommit or in any other Git repository. When you open a notebook instance, it opens in the directory that contains this repository. For more information, see Associating Git repositories with SageMaker notebook instances in the Amazon SageMaker Developer Guide.
8707
+ */
8708
+ DefaultCodeRepository?: NonEmptyString;
8709
+ /**
8710
+ * Sets whether SageMaker provides internet access to the notebook instance. If you set this to Disabled, this notebook instance is able to access resources only in your VPC, and is not be able to connect to SageMaker training and endpoint services unless you configure a Network Address Translation (NAT) Gateway in your VPC.
8711
+ */
8712
+ DirectInternetAccess?: NonEmptyString;
8713
+ /**
8714
+ * If status of the instance is Failed, the reason it failed.
8715
+ */
8716
+ FailureReason?: NonEmptyString;
8717
+ /**
8718
+ * Information on the IMDS configuration of the notebook instance.
8719
+ */
8720
+ InstanceMetadataServiceConfiguration?: AwsSageMakerNotebookInstanceMetadataServiceConfigurationDetails;
8721
+ /**
8722
+ * The type of machine learning (ML) compute instance to launch for the notebook instance.
8723
+ */
8724
+ InstanceType?: NonEmptyString;
8725
+ /**
8726
+ * The Amazon Resource Name (ARN) of an Key Management Service (KMS) key that SageMaker uses to encrypt data on the storage volume attached to your notebook instance. The KMS key you provide must be enabled. For information, see Enabling and disabling keys in the Key Management Service Developer Guide.
8727
+ */
8728
+ KmsKeyId?: NonEmptyString;
8729
+ /**
8730
+ * The network interface ID that SageMaker created when the instance was created.
8731
+ */
8732
+ NetworkInterfaceId?: NonEmptyString;
8733
+ /**
8734
+ * The Amazon Resource Name (ARN) of the notebook instance.
8735
+ */
8736
+ NotebookInstanceArn?: NonEmptyString;
8737
+ /**
8738
+ * The name of a notebook instance lifecycle configuration.
8739
+ */
8740
+ NotebookInstanceLifecycleConfigName?: NonEmptyString;
8741
+ /**
8742
+ * The name of the new notebook instance.
8743
+ */
8744
+ NotebookInstanceName?: NonEmptyString;
8745
+ /**
8746
+ * The status of the notebook instance.
8747
+ */
8748
+ NotebookInstanceStatus?: NonEmptyString;
8749
+ /**
8750
+ * The platform identifier of the notebook instance runtime environment.
8751
+ */
8752
+ PlatformIdentifier?: NonEmptyString;
8753
+ /**
8754
+ * The Amazon Resource Name (ARN) of the IAM role associated with the instance.
8755
+ */
8756
+ RoleArn?: NonEmptyString;
8757
+ /**
8758
+ * Whether root access is enabled or disabled for users of the notebook instance.
8759
+ */
8760
+ RootAccess?: NonEmptyString;
8761
+ /**
8762
+ * The VPC security group IDs.
8763
+ */
8764
+ SecurityGroups?: NonEmptyStringList;
8765
+ /**
8766
+ * The ID of the VPC subnet to which you have a connectivity from your ML compute instance.
8767
+ */
8768
+ SubnetId?: NonEmptyString;
8769
+ /**
8770
+ * The URL that you use to connect to the Jupyter notebook that is running in your notebook instance.
8771
+ */
8772
+ Url?: NonEmptyString;
8773
+ /**
8774
+ * The size, in GB, of the ML storage volume to attach to the notebook instance.
8775
+ */
8776
+ VolumeSizeInGB?: Integer;
8777
+ }
8778
+ export interface AwsSageMakerNotebookInstanceMetadataServiceConfigurationDetails {
8779
+ /**
8780
+ * Indicates the minimum IMDS version that the notebook instance supports.
8781
+ */
8782
+ MinimumInstanceMetadataServiceVersion?: NonEmptyString;
8783
+ }
8025
8784
  export interface AwsSecretsManagerSecretDetails {
8026
8785
  /**
8027
8786
  * Defines the rotation schedule for the secret.
@@ -9119,6 +9878,214 @@ declare namespace SecurityHub {
9119
9878
  Type?: NonEmptyString;
9120
9879
  }
9121
9880
  export type AwsWafWebAclRuleList = AwsWafWebAclRule[];
9881
+ export interface AwsWafv2ActionAllowDetails {
9882
+ /**
9883
+ * Defines custom handling for the web request. For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide..
9884
+ */
9885
+ CustomRequestHandling?: AwsWafv2CustomRequestHandlingDetails;
9886
+ }
9887
+ export interface AwsWafv2ActionBlockDetails {
9888
+ /**
9889
+ * Defines a custom response for the web request. For information, see Customizing web requests and responses in WAF in the WAF Developer Guide..
9890
+ */
9891
+ CustomResponse?: AwsWafv2CustomResponseDetails;
9892
+ }
9893
+ export interface AwsWafv2CustomHttpHeader {
9894
+ /**
9895
+ * The name of the custom header.
9896
+ */
9897
+ Name?: NonEmptyString;
9898
+ /**
9899
+ * The value of the custom header.
9900
+ */
9901
+ Value?: NonEmptyString;
9902
+ }
9903
+ export interface AwsWafv2CustomRequestHandlingDetails {
9904
+ /**
9905
+ * The HTTP headers to insert into the request.
9906
+ */
9907
+ InsertHeaders?: AwsWafv2InsertHeadersList;
9908
+ }
9909
+ export interface AwsWafv2CustomResponseDetails {
9910
+ /**
9911
+ * References the response body that you want WAF to return to the web request client. You can define a custom response for a rule action or a default web ACL action that is set to block.
9912
+ */
9913
+ CustomResponseBodyKey?: NonEmptyString;
9914
+ /**
9915
+ * The HTTP status code to return to the client. For a list of status codes that you can use in your custom responses, see Supported status codes for custom response in the WAF Developer Guide.
9916
+ */
9917
+ ResponseCode?: Integer;
9918
+ /**
9919
+ * The HTTP headers to use in the response.
9920
+ */
9921
+ ResponseHeaders?: AwsWafv2InsertHeadersList;
9922
+ }
9923
+ export type AwsWafv2InsertHeadersList = AwsWafv2CustomHttpHeader[];
9924
+ export interface AwsWafv2RuleGroupDetails {
9925
+ /**
9926
+ * The web ACL capacity units (WCUs) required for this rule group.
9927
+ */
9928
+ Capacity?: Long;
9929
+ /**
9930
+ * A description of the rule group that helps with identification.
9931
+ */
9932
+ Description?: NonEmptyString;
9933
+ /**
9934
+ * A unique identifier for the rule group.
9935
+ */
9936
+ Id?: NonEmptyString;
9937
+ /**
9938
+ * The name of the rule group. You cannot change the name of a rule group after you create it.
9939
+ */
9940
+ Name?: NonEmptyString;
9941
+ /**
9942
+ * The Amazon Resource Name (ARN) of the entity.
9943
+ */
9944
+ Arn?: NonEmptyString;
9945
+ /**
9946
+ * The Rule statements used to identify the web requests that you want to allow, block, or count. Each rule includes one top-level statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.
9947
+ */
9948
+ Rules?: AwsWafv2RulesList;
9949
+ /**
9950
+ * Specifies whether the rule group is for an Amazon CloudFront distribution or for a regional application. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, an AppSync GraphQL API, or an Amazon Cognito user pool.
9951
+ */
9952
+ Scope?: NonEmptyString;
9953
+ /**
9954
+ * Defines and enables Amazon CloudWatch metrics and web request sample collection.
9955
+ */
9956
+ VisibilityConfig?: AwsWafv2VisibilityConfigDetails;
9957
+ }
9958
+ export interface AwsWafv2RulesActionCaptchaDetails {
9959
+ /**
9960
+ * Defines custom handling for the web request, used when the CAPTCHA inspection determines that the request's token is valid and unexpired. For more information, see Customizing web requests and responses in WAF in the WAF Developer Guide..
9961
+ */
9962
+ CustomRequestHandling?: AwsWafv2CustomRequestHandlingDetails;
9963
+ }
9964
+ export interface AwsWafv2RulesActionCountDetails {
9965
+ /**
9966
+ * Defines custom handling for the web request. For more information, see Customizing web requests and responses in WAF in the WAF Developer Guide..
9967
+ */
9968
+ CustomRequestHandling?: AwsWafv2CustomRequestHandlingDetails;
9969
+ }
9970
+ export interface AwsWafv2RulesActionDetails {
9971
+ /**
9972
+ * Instructs WAF to allow the web request.
9973
+ */
9974
+ Allow?: AwsWafv2ActionAllowDetails;
9975
+ /**
9976
+ * Instructs WAF to block the web request.
9977
+ */
9978
+ Block?: AwsWafv2ActionBlockDetails;
9979
+ /**
9980
+ * Instructs WAF to run a CAPTCHA check against the web request.
9981
+ */
9982
+ Captcha?: AwsWafv2RulesActionCaptchaDetails;
9983
+ /**
9984
+ * Instructs WAF to count the web request and then continue evaluating the request using the remaining rules in the web ACL.
9985
+ */
9986
+ Count?: AwsWafv2RulesActionCountDetails;
9987
+ }
9988
+ export interface AwsWafv2RulesDetails {
9989
+ /**
9990
+ * The action that WAF should take on a web request when it matches the rule statement. Settings at the web ACL level can override the rule action setting.
9991
+ */
9992
+ Action?: AwsWafv2RulesActionDetails;
9993
+ /**
9994
+ * The name of the rule.
9995
+ */
9996
+ Name?: NonEmptyString;
9997
+ /**
9998
+ * The action to use in the place of the action that results from the rule group evaluation.
9999
+ */
10000
+ OverrideAction?: NonEmptyString;
10001
+ /**
10002
+ * If you define more than one Rule in a WebACL, WAF evaluates each request against the Rules in order based on the value of Priority. WAF processes rules with lower priority first. The priorities don't need to be consecutive, but they must all be different.
10003
+ */
10004
+ Priority?: Integer;
10005
+ /**
10006
+ * Defines and enables Amazon CloudWatch metrics and web request sample collection.
10007
+ */
10008
+ VisibilityConfig?: AwsWafv2VisibilityConfigDetails;
10009
+ }
10010
+ export type AwsWafv2RulesList = AwsWafv2RulesDetails[];
10011
+ export interface AwsWafv2VisibilityConfigDetails {
10012
+ /**
10013
+ * A boolean indicating whether the associated resource sends metrics to Amazon CloudWatch. For the list of available metrics, see WAF metrics and dimensions in the WAF Developer Guide.
10014
+ */
10015
+ CloudWatchMetricsEnabled?: Boolean;
10016
+ /**
10017
+ * A name of the Amazon CloudWatch metric.
10018
+ */
10019
+ MetricName?: NonEmptyString;
10020
+ /**
10021
+ * A boolean indicating whether WAF should store a sampling of the web requests that match the rules. You can view the sampled requests through the WAF console.
10022
+ */
10023
+ SampledRequestsEnabled?: Boolean;
10024
+ }
10025
+ export interface AwsWafv2WebAclActionDetails {
10026
+ /**
10027
+ * Specifies that WAF should allow requests by default.
10028
+ */
10029
+ Allow?: AwsWafv2ActionAllowDetails;
10030
+ /**
10031
+ * Specifies that WAF should block requests by default.
10032
+ */
10033
+ Block?: AwsWafv2ActionBlockDetails;
10034
+ }
10035
+ export interface AwsWafv2WebAclCaptchaConfigDetails {
10036
+ /**
10037
+ * Determines how long a CAPTCHA timestamp in the token remains valid after the client successfully solves a CAPTCHA puzzle.
10038
+ */
10039
+ ImmunityTimeProperty?: AwsWafv2WebAclCaptchaConfigImmunityTimePropertyDetails;
10040
+ }
10041
+ export interface AwsWafv2WebAclCaptchaConfigImmunityTimePropertyDetails {
10042
+ /**
10043
+ * The amount of time, in seconds, that a CAPTCHA or challenge timestamp is considered valid by WAF.
10044
+ */
10045
+ ImmunityTime?: Long;
10046
+ }
10047
+ export interface AwsWafv2WebAclDetails {
10048
+ /**
10049
+ * The name of the web ACL.
10050
+ */
10051
+ Name?: NonEmptyString;
10052
+ /**
10053
+ * The Amazon Resource Name (ARN) of the web ACL that you want to associate with the resource.
10054
+ */
10055
+ Arn?: NonEmptyString;
10056
+ /**
10057
+ * Indicates whether this web ACL is managed by Firewall Manager.
10058
+ */
10059
+ ManagedbyFirewallManager?: Boolean;
10060
+ /**
10061
+ * A unique identifier for the web ACL.
10062
+ */
10063
+ Id?: NonEmptyString;
10064
+ /**
10065
+ * The web ACL capacity units (WCUs) currently being used by this web ACL.
10066
+ */
10067
+ Capacity?: Long;
10068
+ /**
10069
+ * Specifies how WAF should handle CAPTCHA evaluations for rules that don't have their own CaptchaConfig settings.
10070
+ */
10071
+ CaptchaConfig?: AwsWafv2WebAclCaptchaConfigDetails;
10072
+ /**
10073
+ * The action to perform if none of the Rules contained in the web ACL match.
10074
+ */
10075
+ DefaultAction?: AwsWafv2WebAclActionDetails;
10076
+ /**
10077
+ * A description of the web ACL that helps with identification.
10078
+ */
10079
+ Description?: NonEmptyString;
10080
+ /**
10081
+ * The Rule statements used to identify the web requests that you want to allow, block, or count. Each rule includes one top-level statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.
10082
+ */
10083
+ Rules?: AwsWafv2RulesList;
10084
+ /**
10085
+ * Defines and enables Amazon CloudWatch metrics and web request sample collection.
10086
+ */
10087
+ VisibilityConfig?: AwsWafv2VisibilityConfigDetails;
10088
+ }
9122
10089
  export interface AwsXrayEncryptionConfigDetails {
9123
10090
  /**
9124
10091
  * The identifier of the KMS key that is used for encryption. Provided if Type is KMS.
@@ -11213,6 +12180,10 @@ declare namespace SecurityHub {
11213
12180
  * Provides details about an Backup backup, or recovery point.
11214
12181
  */
11215
12182
  AwsBackupRecoveryPoint?: AwsBackupRecoveryPointDetails;
12183
+ AwsEc2LaunchTemplate?: AwsEc2LaunchTemplateDetails;
12184
+ AwsSageMakerNotebookInstance?: AwsSageMakerNotebookInstanceDetails;
12185
+ AwsWafv2WebAcl?: AwsWafv2WebAclDetails;
12186
+ AwsWafv2RuleGroup?: AwsWafv2RuleGroupDetails;
11216
12187
  }
11217
12188
  export type ResourceList = Resource[];
11218
12189
  export interface Result {