cdk-comprehend-s3olap 2.0.50 → 2.0.53

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 (29) hide show
  1. package/.jsii +5 -5
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +10 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/es-2015-01-01.min.json +3 -0
  8. package/node_modules/aws-sdk/apis/lookoutvision-2020-11-20.min.json +22 -2
  9. package/node_modules/aws-sdk/apis/opensearch-2021-01-01.min.json +3 -0
  10. package/node_modules/aws-sdk/apis/shield-2016-06-02.min.json +40 -0
  11. package/node_modules/aws-sdk/clients/ec2.d.ts +79 -79
  12. package/node_modules/aws-sdk/clients/es.d.ts +7 -3
  13. package/node_modules/aws-sdk/clients/fsx.d.ts +4 -4
  14. package/node_modules/aws-sdk/clients/lookoutvision.d.ts +39 -7
  15. package/node_modules/aws-sdk/clients/opensearch.d.ts +7 -3
  16. package/node_modules/aws-sdk/clients/shield.d.ts +75 -23
  17. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  18. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +5 -5
  19. package/node_modules/aws-sdk/dist/aws-sdk.js +3 -3
  20. package/node_modules/aws-sdk/dist/aws-sdk.min.js +2 -2
  21. package/node_modules/aws-sdk/lib/core.js +1 -1
  22. package/node_modules/aws-sdk/package.json +1 -1
  23. package/node_modules/esbuild/install.js +4 -4
  24. package/node_modules/esbuild/lib/main.d.ts +5 -1
  25. package/node_modules/esbuild/lib/main.js +13 -7
  26. package/node_modules/esbuild/package.json +21 -21
  27. package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
  28. package/node_modules/esbuild-linux-64/package.json +1 -1
  29. package/package.json +10 -10
@@ -1239,9 +1239,13 @@ declare namespace ES {
1239
1239
  */
1240
1240
  VolumeSize?: IntegerClass;
1241
1241
  /**
1242
- * Specifies the IOPD for a Provisioned IOPS EBS volume (SSD).
1242
+ * Specifies the IOPS for Provisioned IOPS And GP3 EBS volume (SSD).
1243
1243
  */
1244
1244
  Iops?: IntegerClass;
1245
+ /**
1246
+ * Specifies the Throughput for GP3 EBS volume (SSD).
1247
+ */
1248
+ Throughput?: IntegerClass;
1245
1249
  }
1246
1250
  export interface EBSOptionsStatus {
1247
1251
  /**
@@ -2254,7 +2258,7 @@ declare namespace ES {
2254
2258
  }
2255
2259
  export interface StorageTypeLimit {
2256
2260
  /**
2257
- * Name of storage limits that are applicable for given storage type. If StorageType is ebs, following storage options are applicable MinimumVolumeSize Minimum amount of volume size that is applicable for given storage type.It can be empty if it is not applicable. MaximumVolumeSize Maximum amount of volume size that is applicable for given storage type.It can be empty if it is not applicable. MaximumIops Maximum amount of Iops that is applicable for given storage type.It can be empty if it is not applicable. MinimumIops Minimum amount of Iops that is applicable for given storage type.It can be empty if it is not applicable.
2261
+ * Name of storage limits that are applicable for given storage type. If StorageType is ebs, following storage options are applicable MinimumVolumeSize Minimum amount of volume size that is applicable for given storage type.It can be empty if it is not applicable. MaximumVolumeSize Maximum amount of volume size that is applicable for given storage type.It can be empty if it is not applicable. MaximumIops Maximum amount of Iops that is applicable for given storage type.It can be empty if it is not applicable. MinimumIops Minimum amount of Iops that is applicable for given storage type.It can be empty if it is not applicable. MaximumThroughput Maximum amount of Throughput that is applicable for given storage type.It can be empty if it is not applicable. MinimumThroughput Minimum amount of Throughput that is applicable for given storage type.It can be empty if it is not applicable.
2258
2262
  */
2259
2263
  LimitName?: LimitName;
2260
2264
  /**
@@ -2483,7 +2487,7 @@ declare namespace ES {
2483
2487
  SecurityGroupIds?: StringList;
2484
2488
  }
2485
2489
  export type ValueStringList = NonEmptyString[];
2486
- export type VolumeType = "standard"|"gp2"|"io1"|string;
2490
+ export type VolumeType = "standard"|"gp2"|"io1"|"gp3"|string;
2487
2491
  export interface ZoneAwarenessConfig {
2488
2492
  /**
2489
2493
  * An integer value to indicate the number of availability zones for a domain when zone awareness is enabled. This should be equal to number of subnets if VPC endpoints is enabled
@@ -228,11 +228,11 @@ declare class FSx extends Service {
228
228
  */
229
229
  disassociateFileSystemAliases(callback?: (err: AWSError, data: FSx.Types.DisassociateFileSystemAliasesResponse) => void): Request<FSx.Types.DisassociateFileSystemAliasesResponse, AWSError>;
230
230
  /**
231
- * Lists tags for an Amazon FSx file systems and backups in the case of Amazon FSx for Windows File Server. When retrieving all tags, you can optionally specify the MaxResults parameter to limit the number of tags in a response. If more tags remain, Amazon FSx returns a NextToken value in the response. In this case, send a later request with the NextToken request parameter set to the value of NextToken from the last response. This action is used in an iterative process to retrieve a list of your tags. ListTagsForResource is called first without a NextTokenvalue. Then the action continues to be called with the NextToken parameter set to the value of the last NextToken value until a response has no NextToken. When using this action, keep the following in mind: The implementation might return fewer than MaxResults file system descriptions while still including a NextToken value. The order of tags returned in the response of one ListTagsForResource call and the order of tags returned across the responses of a multi-call iteration is unspecified.
231
+ * Lists tags for Amazon FSx resources. When retrieving all tags, you can optionally specify the MaxResults parameter to limit the number of tags in a response. If more tags remain, Amazon FSx returns a NextToken value in the response. In this case, send a later request with the NextToken request parameter set to the value of NextToken from the last response. This action is used in an iterative process to retrieve a list of your tags. ListTagsForResource is called first without a NextTokenvalue. Then the action continues to be called with the NextToken parameter set to the value of the last NextToken value until a response has no NextToken. When using this action, keep the following in mind: The implementation might return fewer than MaxResults file system descriptions while still including a NextToken value. The order of tags returned in the response of one ListTagsForResource call and the order of tags returned across the responses of a multi-call iteration is unspecified.
232
232
  */
233
233
  listTagsForResource(params: FSx.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: FSx.Types.ListTagsForResourceResponse) => void): Request<FSx.Types.ListTagsForResourceResponse, AWSError>;
234
234
  /**
235
- * Lists tags for an Amazon FSx file systems and backups in the case of Amazon FSx for Windows File Server. When retrieving all tags, you can optionally specify the MaxResults parameter to limit the number of tags in a response. If more tags remain, Amazon FSx returns a NextToken value in the response. In this case, send a later request with the NextToken request parameter set to the value of NextToken from the last response. This action is used in an iterative process to retrieve a list of your tags. ListTagsForResource is called first without a NextTokenvalue. Then the action continues to be called with the NextToken parameter set to the value of the last NextToken value until a response has no NextToken. When using this action, keep the following in mind: The implementation might return fewer than MaxResults file system descriptions while still including a NextToken value. The order of tags returned in the response of one ListTagsForResource call and the order of tags returned across the responses of a multi-call iteration is unspecified.
235
+ * Lists tags for Amazon FSx resources. When retrieving all tags, you can optionally specify the MaxResults parameter to limit the number of tags in a response. If more tags remain, Amazon FSx returns a NextToken value in the response. In this case, send a later request with the NextToken request parameter set to the value of NextToken from the last response. This action is used in an iterative process to retrieve a list of your tags. ListTagsForResource is called first without a NextTokenvalue. Then the action continues to be called with the NextToken parameter set to the value of the last NextToken value until a response has no NextToken. When using this action, keep the following in mind: The implementation might return fewer than MaxResults file system descriptions while still including a NextToken value. The order of tags returned in the response of one ListTagsForResource call and the order of tags returned across the responses of a multi-call iteration is unspecified.
236
236
  */
237
237
  listTagsForResource(callback?: (err: AWSError, data: FSx.Types.ListTagsForResourceResponse) => void): Request<FSx.Types.ListTagsForResourceResponse, AWSError>;
238
238
  /**
@@ -582,7 +582,7 @@ declare namespace FSx {
582
582
  */
583
583
  Type: DataRepositoryTaskType;
584
584
  /**
585
- * (Optional) The path or paths on the Amazon FSx file system to use when the data repository task is processed. The default path is the file system root directory. The paths you provide need to be relative to the mount point of the file system. If the mount point is /mnt/fsx and /mnt/fsx/path1 is a directory or file on the file system you want to export, then the path to provide is path1. If a path that you provide isn't valid, the task fails.
585
+ * A list of paths for the data repository task to use when the task is processed. If a path that you provide isn't valid, the task fails. For export tasks, the list contains paths on the Amazon FSx file system from which the files are exported to the Amazon S3 bucket. The default path is the file system root directory. The paths you provide need to be relative to the mount point of the file system. If the mount point is /mnt/fsx and /mnt/fsx/path1 is a directory or file on the file system you want to export, then the path to provide is path1. For import tasks, the list contains paths in the Amazon S3 bucket from which POSIX metadata changes are imported to the Amazon FSx file system. The path can be an S3 bucket or prefix in the format s3://myBucket/myPrefix (where myPrefix is optional).
586
586
  */
587
587
  Paths?: DataRepositoryTaskPaths;
588
588
  FileSystemId: FileSystemId;
@@ -734,7 +734,7 @@ declare namespace FSx {
734
734
  */
735
735
  CopyTagsToBackups?: Flag;
736
736
  /**
737
- * A Boolean value indicating whether tags for the volume should be copied to snapshots. This value defaults to false. If it's set to true, all tags for the volume are copied to snapshots where the user doesn't specify tags. If this value is true, and you specify one or more tags, only the specified tags are copied to snapshots. If you specify one or more tags when creating the snapshot, no tags are copied from the volume, regardless of this value.
737
+ * A Boolean value indicating whether tags for the file system should be copied to volumes. This value defaults to false. If it's set to true, all tags for the file system are copied to volumes where the user doesn't specify tags. If this value is true, and you specify one or more tags, only the specified tags are copied to volumes. If you specify one or more tags when creating the volume, no tags are copied from the file system, regardless of this value.
738
738
  */
739
739
  CopyTagsToVolumes?: Flag;
740
740
  DailyAutomaticBackupStartTime?: DailyTime;
@@ -93,11 +93,11 @@ declare class LookoutVision extends Service {
93
93
  */
94
94
  describeProject(callback?: (err: AWSError, data: LookoutVision.Types.DescribeProjectResponse) => void): Request<LookoutVision.Types.DescribeProjectResponse, AWSError>;
95
95
  /**
96
- * Detects anomalies in an image that you supply. The response from DetectAnomalies includes a boolean prediction that the image contains one or more anomalies and a confidence value for the prediction. Before calling DetectAnomalies, you must first start your model with the StartModel operation. You are charged for the amount of time, in minutes, that a model runs and for the number of anomaly detection units that your model uses. If you are not using a model, use the StopModel operation to stop your model. This operation requires permissions to perform the lookoutvision:DetectAnomalies operation.
96
+ * Detects anomalies in an image that you supply. The response from DetectAnomalies includes a boolean prediction that the image contains one or more anomalies and a confidence value for the prediction. If the model is an image segmentation model, the response also includes segmentation information for each type of anomaly found in the image. Before calling DetectAnomalies, you must first start your model with the StartModel operation. You are charged for the amount of time, in minutes, that a model runs and for the number of anomaly detection units that your model uses. If you are not using a model, use the StopModel operation to stop your model. For more information, see Detecting anomalies in an image in the Amazon Lookout for Vision developer guide. This operation requires permissions to perform the lookoutvision:DetectAnomalies operation.
97
97
  */
98
98
  detectAnomalies(params: LookoutVision.Types.DetectAnomaliesRequest, callback?: (err: AWSError, data: LookoutVision.Types.DetectAnomaliesResponse) => void): Request<LookoutVision.Types.DetectAnomaliesResponse, AWSError>;
99
99
  /**
100
- * Detects anomalies in an image that you supply. The response from DetectAnomalies includes a boolean prediction that the image contains one or more anomalies and a confidence value for the prediction. Before calling DetectAnomalies, you must first start your model with the StartModel operation. You are charged for the amount of time, in minutes, that a model runs and for the number of anomaly detection units that your model uses. If you are not using a model, use the StopModel operation to stop your model. This operation requires permissions to perform the lookoutvision:DetectAnomalies operation.
100
+ * Detects anomalies in an image that you supply. The response from DetectAnomalies includes a boolean prediction that the image contains one or more anomalies and a confidence value for the prediction. If the model is an image segmentation model, the response also includes segmentation information for each type of anomaly found in the image. Before calling DetectAnomalies, you must first start your model with the StartModel operation. You are charged for the amount of time, in minutes, that a model runs and for the number of anomaly detection units that your model uses. If you are not using a model, use the StopModel operation to stop your model. For more information, see Detecting anomalies in an image in the Amazon Lookout for Vision developer guide. This operation requires permissions to perform the lookoutvision:DetectAnomalies operation.
101
101
  */
102
102
  detectAnomalies(callback?: (err: AWSError, data: LookoutVision.Types.DetectAnomaliesResponse) => void): Request<LookoutVision.Types.DetectAnomaliesResponse, AWSError>;
103
103
  /**
@@ -190,9 +190,23 @@ declare class LookoutVision extends Service {
190
190
  updateDatasetEntries(callback?: (err: AWSError, data: LookoutVision.Types.UpdateDatasetEntriesResponse) => void): Request<LookoutVision.Types.UpdateDatasetEntriesResponse, AWSError>;
191
191
  }
192
192
  declare namespace LookoutVision {
193
+ export interface Anomaly {
194
+ /**
195
+ * The name of an anomaly type found in an image. Name maps to an anomaly type in the training dataset, apart from the anomaly type background. The service automatically inserts the background anomaly type into the response from DetectAnomalies.
196
+ */
197
+ Name?: AnomalyName;
198
+ /**
199
+ * Information about the pixel mask that covers an anomaly type.
200
+ */
201
+ PixelAnomaly?: PixelAnomaly;
202
+ }
193
203
  export type AnomalyClassFilter = string;
204
+ export type AnomalyList = Anomaly[];
205
+ export type AnomalyMask = Buffer|Uint8Array|Blob|string;
206
+ export type AnomalyName = string;
194
207
  export type Boolean = boolean;
195
208
  export type ClientToken = string;
209
+ export type Color = string;
196
210
  export type CompilerOptions = string;
197
211
  export type ComponentDescription = string;
198
212
  export type ComponentName = string;
@@ -499,18 +513,26 @@ declare namespace LookoutVision {
499
513
  */
500
514
  Source?: ImageSource;
501
515
  /**
502
- * True if the image contains an anomaly, otherwise false.
516
+ * True if Amazon Lookout for Vision classifies the image as containing an anomaly, otherwise false.
503
517
  */
504
518
  IsAnomalous?: Boolean;
505
519
  /**
506
- * The confidence that Amazon Lookout for Vision has in the accuracy of the prediction.
520
+ * The confidence that Lookout for Vision has in the accuracy of the classification in IsAnomalous.
507
521
  */
508
522
  Confidence?: Float;
523
+ /**
524
+ * If the model is an image segmentation model, Anomalies contains a list of anomaly types found in the image. There is one entry for each type of anomaly found (even if multiple instances of an anomaly type exist on the image). The first element in the list is always an anomaly type representing the image background ('background') and shouldn't be considered an anomaly. Amazon Lookout for Vision automatically add the background anomaly type to the response, and you don't need to declare a background anomaly type in your dataset. If the list has one entry ('background'), no anomalies were found on the image. An image classification model doesn't return an Anomalies list.
525
+ */
526
+ Anomalies?: AnomalyList;
527
+ /**
528
+ * If the model is an image segmentation model, AnomalyMask contains pixel masks that covers all anomaly types found on the image. Each anomaly type has a different mask color. To map a color to an anomaly type, see the color field of the PixelAnomaly object. An image classification model doesn't return an Anomalies list.
529
+ */
530
+ AnomalyMask?: AnomalyMask;
509
531
  }
510
532
  export type Float = number;
511
533
  export interface GreengrassConfiguration {
512
534
  /**
513
- * Additional compiler options for the Greengrass component. Currently, only NVIDIA Graphics Processing Units (GPU) are supported. If you specify TargetPlatform, you must specify CompilerOptions. If you specify TargetDevice, don't specify CompilerOptions. For more information, see Compiler options in the Amazon Lookout for Vision Developer Guide.
535
+ * Additional compiler options for the Greengrass component. Currently, only NVIDIA Graphics Processing Units (GPU) and CPU accelerators are supported. If you specify TargetDevice, don't specify CompilerOptions. For more information, see Compiler options in the Amazon Lookout for Vision Developer Guide.
514
536
  */
515
537
  CompilerOptions?: CompilerOptions;
516
538
  /**
@@ -939,6 +961,16 @@ declare namespace LookoutVision {
939
961
  }
940
962
  export type PageSize = number;
941
963
  export type PaginationToken = string;
964
+ export interface PixelAnomaly {
965
+ /**
966
+ * The percentage area of the image that the anomaly type covers.
967
+ */
968
+ TotalPercentageArea?: Float;
969
+ /**
970
+ * A hex color value for the mask that covers an anomaly type. Each anomaly type has a different mask color. The color maps to the color of the anomaly type used in the training dataset.
971
+ */
972
+ Color?: Color;
973
+ }
942
974
  export type ProjectArn = string;
943
975
  export interface ProjectDescription {
944
976
  /**
@@ -1108,9 +1140,9 @@ declare namespace LookoutVision {
1108
1140
  */
1109
1141
  Arch: TargetPlatformArch;
1110
1142
  /**
1111
- * The target accelerator for the model. NVIDIA (Nvidia graphics processing unit) is the only accelerator that is currently supported. You must also specify the gpu-code, trt-ver, and cuda-ver compiler options.
1143
+ * The target accelerator for the model. Currently, Amazon Lookout for Vision only supports NVIDIA (Nvidia graphics processing unit) and CPU accelerators. If you specify NVIDIA as an accelerator, you must also specify the gpu-code, trt-ver, and cuda-ver compiler options. If you don't specify an accelerator, Lookout for Vision uses the CPU for compilation and we highly recommend that you use the GreengrassConfiguration$CompilerOptions field. For example, you can use the following compiler options for CPU: mcpu: CPU micro-architecture. For example, {'mcpu': 'skylake-avx512'} mattr: CPU flags. For example, {'mattr': ['+neon', '+vfpv4']}
1112
1144
  */
1113
- Accelerator: TargetPlatformAccelerator;
1145
+ Accelerator?: TargetPlatformAccelerator;
1114
1146
  }
1115
1147
  export type TargetPlatformAccelerator = "NVIDIA"|string;
1116
1148
  export type TargetPlatformArch = "ARM64"|"X86_64"|string;
@@ -1456,9 +1456,13 @@ declare namespace OpenSearch {
1456
1456
  */
1457
1457
  VolumeSize?: IntegerClass;
1458
1458
  /**
1459
- * The IOPD for a Provisioned IOPS EBS volume (SSD).
1459
+ * The IOPS for Provisioned IOPS And GP3 EBS volume (SSD).
1460
1460
  */
1461
1461
  Iops?: IntegerClass;
1462
+ /**
1463
+ * The Throughput for GP3 EBS volume (SSD).
1464
+ */
1465
+ Throughput?: IntegerClass;
1462
1466
  }
1463
1467
  export interface EBSOptionsStatus {
1464
1468
  /**
@@ -2235,7 +2239,7 @@ declare namespace OpenSearch {
2235
2239
  }
2236
2240
  export interface StorageTypeLimit {
2237
2241
  /**
2238
- * Name of storage limits that are applicable for the given storage type. If StorageType is "ebs", the following storage options are applicable: MinimumVolumeSize Minimum amount of volume size that is applicable for the given storage type. Can be empty if not applicable. MaximumVolumeSize Maximum amount of volume size that is applicable for the given storage type. Can be empty if not applicable. MaximumIops Maximum amount of Iops that is applicable for given the storage type. Can be empty if not applicable. MinimumIops Minimum amount of Iops that is applicable for given the storage type. Can be empty if not applicable.
2242
+ * Name of storage limits that are applicable for the given storage type. If StorageType is "ebs", the following storage options are applicable: MinimumVolumeSize Minimum amount of volume size that is applicable for the given storage type. Can be empty if not applicable. MaximumVolumeSize Maximum amount of volume size that is applicable for the given storage type. Can be empty if not applicable. MaximumIops Maximum amount of Iops that is applicable for given the storage type. Can be empty if not applicable. MinimumIops Minimum amount of Iops that is applicable for given the storage type. Can be empty if not applicable. MaximumThroughput Maximum amount of Throughput that is applicable for given the storage type. Can be empty if not applicable. MinimumThroughput Minimum amount of Throughput that is applicable for given the storage type. Can be empty if not applicable.
2239
2243
  */
2240
2244
  LimitName?: LimitName;
2241
2245
  /**
@@ -2479,7 +2483,7 @@ declare namespace OpenSearch {
2479
2483
  Status: OptionStatus;
2480
2484
  }
2481
2485
  export type VersionString = string;
2482
- export type VolumeType = "standard"|"gp2"|"io1"|string;
2486
+ export type VolumeType = "standard"|"gp2"|"io1"|"gp3"|string;
2483
2487
  export interface ZoneAwarenessConfig {
2484
2488
  /**
2485
2489
  * An integer value to indicate the number of availability zones for a domain when zone awareness is enabled. This should be equal to number of subnets if VPC endpoints is enabled.
@@ -44,11 +44,11 @@ declare class Shield extends Service {
44
44
  */
45
45
  associateProactiveEngagementDetails(callback?: (err: AWSError, data: Shield.Types.AssociateProactiveEngagementDetailsResponse) => void): Request<Shield.Types.AssociateProactiveEngagementDetailsResponse, AWSError>;
46
46
  /**
47
- * Enables Shield Advanced for a specific Amazon Web Services resource. The resource can be an Amazon CloudFront distribution, Elastic Load Balancing load balancer, Global Accelerator accelerator, Elastic IP Address, or an Amazon Route 53 hosted zone. You can add protection to only a single resource with each CreateProtection request. You can add protection to multiple resources at once through the Shield Advanced console at https://console.aws.amazon.com/wafv2/shieldv2#/. For more information see Getting Started with Shield Advanced and Adding Shield Advanced protection to Amazon Web Services resources.
47
+ * Enables Shield Advanced for a specific Amazon Web Services resource. The resource can be an Amazon CloudFront distribution, Amazon Route 53 hosted zone, Global Accelerator standard accelerator, Elastic IP Address, Application Load Balancer, or a Classic Load Balancer. You can protect Amazon EC2 instances and Network Load Balancers by association with protected Amazon EC2 Elastic IP addresses. You can add protection to only a single resource with each CreateProtection request. You can add protection to multiple resources at once through the Shield Advanced console at https://console.aws.amazon.com/wafv2/shieldv2#/. For more information see Getting Started with Shield Advanced and Adding Shield Advanced protection to Amazon Web Services resources.
48
48
  */
49
49
  createProtection(params: Shield.Types.CreateProtectionRequest, callback?: (err: AWSError, data: Shield.Types.CreateProtectionResponse) => void): Request<Shield.Types.CreateProtectionResponse, AWSError>;
50
50
  /**
51
- * Enables Shield Advanced for a specific Amazon Web Services resource. The resource can be an Amazon CloudFront distribution, Elastic Load Balancing load balancer, Global Accelerator accelerator, Elastic IP Address, or an Amazon Route 53 hosted zone. You can add protection to only a single resource with each CreateProtection request. You can add protection to multiple resources at once through the Shield Advanced console at https://console.aws.amazon.com/wafv2/shieldv2#/. For more information see Getting Started with Shield Advanced and Adding Shield Advanced protection to Amazon Web Services resources.
51
+ * Enables Shield Advanced for a specific Amazon Web Services resource. The resource can be an Amazon CloudFront distribution, Amazon Route 53 hosted zone, Global Accelerator standard accelerator, Elastic IP Address, Application Load Balancer, or a Classic Load Balancer. You can protect Amazon EC2 instances and Network Load Balancers by association with protected Amazon EC2 Elastic IP addresses. You can add protection to only a single resource with each CreateProtection request. You can add protection to multiple resources at once through the Shield Advanced console at https://console.aws.amazon.com/wafv2/shieldv2#/. For more information see Getting Started with Shield Advanced and Adding Shield Advanced protection to Amazon Web Services resources.
52
52
  */
53
53
  createProtection(callback?: (err: AWSError, data: Shield.Types.CreateProtectionResponse) => void): Request<Shield.Types.CreateProtectionResponse, AWSError>;
54
54
  /**
@@ -60,11 +60,11 @@ declare class Shield extends Service {
60
60
  */
61
61
  createProtectionGroup(callback?: (err: AWSError, data: Shield.Types.CreateProtectionGroupResponse) => void): Request<Shield.Types.CreateProtectionGroupResponse, AWSError>;
62
62
  /**
63
- * Activates Shield Advanced for an account. When you initally create a subscription, your subscription is set to be automatically renewed at the end of the existing subscription period. You can change this by submitting an UpdateSubscription request.
63
+ * Activates Shield Advanced for an account. For accounts that are members of an Organizations organization, Shield Advanced subscriptions are billed against the organization's payer account, regardless of whether the payer account itself is subscribed. When you initially create a subscription, your subscription is set to be automatically renewed at the end of the existing subscription period. You can change this by submitting an UpdateSubscription request.
64
64
  */
65
65
  createSubscription(params: Shield.Types.CreateSubscriptionRequest, callback?: (err: AWSError, data: Shield.Types.CreateSubscriptionResponse) => void): Request<Shield.Types.CreateSubscriptionResponse, AWSError>;
66
66
  /**
67
- * Activates Shield Advanced for an account. When you initally create a subscription, your subscription is set to be automatically renewed at the end of the existing subscription period. You can change this by submitting an UpdateSubscription request.
67
+ * Activates Shield Advanced for an account. For accounts that are members of an Organizations organization, Shield Advanced subscriptions are billed against the organization's payer account, regardless of whether the payer account itself is subscribed. When you initially create a subscription, your subscription is set to be automatically renewed at the end of the existing subscription period. You can change this by submitting an UpdateSubscription request.
68
68
  */
69
69
  createSubscription(callback?: (err: AWSError, data: Shield.Types.CreateSubscriptionResponse) => void): Request<Shield.Types.CreateSubscriptionResponse, AWSError>;
70
70
  /**
@@ -148,11 +148,11 @@ declare class Shield extends Service {
148
148
  */
149
149
  describeSubscription(callback?: (err: AWSError, data: Shield.Types.DescribeSubscriptionResponse) => void): Request<Shield.Types.DescribeSubscriptionResponse, AWSError>;
150
150
  /**
151
- * Disable the Shield Advanced automatic application layer DDoS mitigation feature for the resource. This stops Shield Advanced from creating, verifying, and applying WAF rules for attacks that it detects for the resource.
151
+ * Disable the Shield Advanced automatic application layer DDoS mitigation feature for the protected resource. This stops Shield Advanced from creating, verifying, and applying WAF rules for attacks that it detects for the resource.
152
152
  */
153
153
  disableApplicationLayerAutomaticResponse(params: Shield.Types.DisableApplicationLayerAutomaticResponseRequest, callback?: (err: AWSError, data: Shield.Types.DisableApplicationLayerAutomaticResponseResponse) => void): Request<Shield.Types.DisableApplicationLayerAutomaticResponseResponse, AWSError>;
154
154
  /**
155
- * Disable the Shield Advanced automatic application layer DDoS mitigation feature for the resource. This stops Shield Advanced from creating, verifying, and applying WAF rules for attacks that it detects for the resource.
155
+ * Disable the Shield Advanced automatic application layer DDoS mitigation feature for the protected resource. This stops Shield Advanced from creating, verifying, and applying WAF rules for attacks that it detects for the resource.
156
156
  */
157
157
  disableApplicationLayerAutomaticResponse(callback?: (err: AWSError, data: Shield.Types.DisableApplicationLayerAutomaticResponseResponse) => void): Request<Shield.Types.DisableApplicationLayerAutomaticResponseResponse, AWSError>;
158
158
  /**
@@ -188,11 +188,11 @@ declare class Shield extends Service {
188
188
  */
189
189
  disassociateHealthCheck(callback?: (err: AWSError, data: Shield.Types.DisassociateHealthCheckResponse) => void): Request<Shield.Types.DisassociateHealthCheckResponse, AWSError>;
190
190
  /**
191
- * Enable the Shield Advanced automatic application layer DDoS mitigation for the resource. This feature is available for Amazon CloudFront distributions only. This causes Shield Advanced to create, verify, and apply WAF rules for DDoS attacks that it detects for the resource. Shield Advanced applies the rules in a Shield rule group inside the web ACL that you've associated with the resource. For information about how automatic mitigation works and the requirements for using it, see Shield Advanced automatic application layer DDoS mitigation. Don't use this action to make changes to automatic mitigation settings when it's already enabled for a resource. Instead, use UpdateApplicationLayerAutomaticResponse. To use this feature, you must associate a web ACL with the protected resource. The web ACL must be created using the latest version of WAF (v2). You can associate the web ACL through the Shield Advanced console at https://console.aws.amazon.com/wafv2/shieldv2#/. For more information, see Getting Started with Shield Advanced. You can also do this through the WAF console or the WAF API, but you must manage Shield Advanced automatic mitigation through Shield Advanced. For information about WAF, see WAF Developer Guide.
191
+ * Enable the Shield Advanced automatic application layer DDoS mitigation for the protected resource. This feature is available for Amazon CloudFront distributions and Application Load Balancers only. This causes Shield Advanced to create, verify, and apply WAF rules for DDoS attacks that it detects for the resource. Shield Advanced applies the rules in a Shield rule group inside the web ACL that you've associated with the resource. For information about how automatic mitigation works and the requirements for using it, see Shield Advanced automatic application layer DDoS mitigation. Don't use this action to make changes to automatic mitigation settings when it's already enabled for a resource. Instead, use UpdateApplicationLayerAutomaticResponse. To use this feature, you must associate a web ACL with the protected resource. The web ACL must be created using the latest version of WAF (v2). You can associate the web ACL through the Shield Advanced console at https://console.aws.amazon.com/wafv2/shieldv2#/. For more information, see Getting Started with Shield Advanced. You can also associate the web ACL to the resource through the WAF console or the WAF API, but you must manage Shield Advanced automatic mitigation through Shield Advanced. For information about WAF, see WAF Developer Guide.
192
192
  */
193
193
  enableApplicationLayerAutomaticResponse(params: Shield.Types.EnableApplicationLayerAutomaticResponseRequest, callback?: (err: AWSError, data: Shield.Types.EnableApplicationLayerAutomaticResponseResponse) => void): Request<Shield.Types.EnableApplicationLayerAutomaticResponseResponse, AWSError>;
194
194
  /**
195
- * Enable the Shield Advanced automatic application layer DDoS mitigation for the resource. This feature is available for Amazon CloudFront distributions only. This causes Shield Advanced to create, verify, and apply WAF rules for DDoS attacks that it detects for the resource. Shield Advanced applies the rules in a Shield rule group inside the web ACL that you've associated with the resource. For information about how automatic mitigation works and the requirements for using it, see Shield Advanced automatic application layer DDoS mitigation. Don't use this action to make changes to automatic mitigation settings when it's already enabled for a resource. Instead, use UpdateApplicationLayerAutomaticResponse. To use this feature, you must associate a web ACL with the protected resource. The web ACL must be created using the latest version of WAF (v2). You can associate the web ACL through the Shield Advanced console at https://console.aws.amazon.com/wafv2/shieldv2#/. For more information, see Getting Started with Shield Advanced. You can also do this through the WAF console or the WAF API, but you must manage Shield Advanced automatic mitigation through Shield Advanced. For information about WAF, see WAF Developer Guide.
195
+ * Enable the Shield Advanced automatic application layer DDoS mitigation for the protected resource. This feature is available for Amazon CloudFront distributions and Application Load Balancers only. This causes Shield Advanced to create, verify, and apply WAF rules for DDoS attacks that it detects for the resource. Shield Advanced applies the rules in a Shield rule group inside the web ACL that you've associated with the resource. For information about how automatic mitigation works and the requirements for using it, see Shield Advanced automatic application layer DDoS mitigation. Don't use this action to make changes to automatic mitigation settings when it's already enabled for a resource. Instead, use UpdateApplicationLayerAutomaticResponse. To use this feature, you must associate a web ACL with the protected resource. The web ACL must be created using the latest version of WAF (v2). You can associate the web ACL through the Shield Advanced console at https://console.aws.amazon.com/wafv2/shieldv2#/. For more information, see Getting Started with Shield Advanced. You can also associate the web ACL to the resource through the WAF console or the WAF API, but you must manage Shield Advanced automatic mitigation through Shield Advanced. For information about WAF, see WAF Developer Guide.
196
196
  */
197
197
  enableApplicationLayerAutomaticResponse(callback?: (err: AWSError, data: Shield.Types.EnableApplicationLayerAutomaticResponseResponse) => void): Request<Shield.Types.EnableApplicationLayerAutomaticResponseResponse, AWSError>;
198
198
  /**
@@ -220,19 +220,19 @@ declare class Shield extends Service {
220
220
  */
221
221
  listAttacks(callback?: (err: AWSError, data: Shield.Types.ListAttacksResponse) => void): Request<Shield.Types.ListAttacksResponse, AWSError>;
222
222
  /**
223
- * Retrieves the ProtectionGroup objects for the account.
223
+ * Retrieves ProtectionGroup objects for the account. You can retrieve all protection groups or you can provide filtering criteria and retrieve just the subset of protection groups that match the criteria.
224
224
  */
225
225
  listProtectionGroups(params: Shield.Types.ListProtectionGroupsRequest, callback?: (err: AWSError, data: Shield.Types.ListProtectionGroupsResponse) => void): Request<Shield.Types.ListProtectionGroupsResponse, AWSError>;
226
226
  /**
227
- * Retrieves the ProtectionGroup objects for the account.
227
+ * Retrieves ProtectionGroup objects for the account. You can retrieve all protection groups or you can provide filtering criteria and retrieve just the subset of protection groups that match the criteria.
228
228
  */
229
229
  listProtectionGroups(callback?: (err: AWSError, data: Shield.Types.ListProtectionGroupsResponse) => void): Request<Shield.Types.ListProtectionGroupsResponse, AWSError>;
230
230
  /**
231
- * Lists all Protection objects for the account.
231
+ * Retrieves Protection objects for the account. You can retrieve all protections or you can provide filtering criteria and retrieve just the subset of protections that match the criteria.
232
232
  */
233
233
  listProtections(params: Shield.Types.ListProtectionsRequest, callback?: (err: AWSError, data: Shield.Types.ListProtectionsResponse) => void): Request<Shield.Types.ListProtectionsResponse, AWSError>;
234
234
  /**
235
- * Lists all Protection objects for the account.
235
+ * Retrieves Protection objects for the account. You can retrieve all protections or you can provide filtering criteria and retrieve just the subset of protections that match the criteria.
236
236
  */
237
237
  listProtections(callback?: (err: AWSError, data: Shield.Types.ListProtectionsResponse) => void): Request<Shield.Types.ListProtectionsResponse, AWSError>;
238
238
  /**
@@ -292,11 +292,11 @@ declare class Shield extends Service {
292
292
  */
293
293
  updateProtectionGroup(callback?: (err: AWSError, data: Shield.Types.UpdateProtectionGroupResponse) => void): Request<Shield.Types.UpdateProtectionGroupResponse, AWSError>;
294
294
  /**
295
- * Updates the details of an existing subscription. Only enter values for parameters you want to change. Empty parameters are not updated.
295
+ * Updates the details of an existing subscription. Only enter values for parameters you want to change. Empty parameters are not updated. For accounts that are members of an Organizations organization, Shield Advanced subscriptions are billed against the organization's payer account, regardless of whether the payer account itself is subscribed.
296
296
  */
297
297
  updateSubscription(params: Shield.Types.UpdateSubscriptionRequest, callback?: (err: AWSError, data: Shield.Types.UpdateSubscriptionResponse) => void): Request<Shield.Types.UpdateSubscriptionResponse, AWSError>;
298
298
  /**
299
- * Updates the details of an existing subscription. Only enter values for parameters you want to change. Empty parameters are not updated.
299
+ * Updates the details of an existing subscription. Only enter values for parameters you want to change. Empty parameters are not updated. For accounts that are members of an Organizations organization, Shield Advanced subscriptions are billed against the organization's payer account, regardless of whether the payer account itself is subscribed.
300
300
  */
301
301
  updateSubscription(callback?: (err: AWSError, data: Shield.Types.UpdateSubscriptionResponse) => void): Request<Shield.Types.UpdateSubscriptionResponse, AWSError>;
302
302
  }
@@ -306,6 +306,9 @@ declare namespace Shield {
306
306
  * Indicates whether automatic application layer DDoS mitigation is enabled for the protection.
307
307
  */
308
308
  Status: ApplicationLayerAutomaticResponseStatus;
309
+ /**
310
+ * Specifies the action setting that Shield Advanced should use in the WAF rules that it creates on behalf of the protected resource in response to DDoS attacks. You specify this as part of the configuration for the automatic application layer DDoS mitigation feature, when you enable or update automatic mitigation. Shield Advanced creates the WAF rules in a Shield Advanced-managed rule group, inside the web ACL that you have associated with the resource.
311
+ */
309
312
  Action: ResponseAction;
310
313
  }
311
314
  export type ApplicationLayerAutomaticResponseStatus = "ENABLED"|"DISABLED"|string;
@@ -517,7 +520,7 @@ declare namespace Shield {
517
520
  */
518
521
  Name: ProtectionName;
519
522
  /**
520
- * The ARN (Amazon Resource Name) of the resource to be protected. The ARN should be in one of the following formats: For an Application Load Balancer: arn:aws:elasticloadbalancing:region:account-id:loadbalancer/app/load-balancer-name/load-balancer-id For an Elastic Load Balancer (Classic Load Balancer): arn:aws:elasticloadbalancing:region:account-id:loadbalancer/load-balancer-name For an Amazon CloudFront distribution: arn:aws:cloudfront::account-id:distribution/distribution-id For an Global Accelerator accelerator: arn:aws:globalaccelerator::account-id:accelerator/accelerator-id For Amazon Route 53: arn:aws:route53:::hostedzone/hosted-zone-id For an Elastic IP address: arn:aws:ec2:region:account-id:eip-allocation/allocation-id
523
+ * The ARN (Amazon Resource Name) of the resource to be protected. The ARN should be in one of the following formats: For an Application Load Balancer: arn:aws:elasticloadbalancing:region:account-id:loadbalancer/app/load-balancer-name/load-balancer-id For an Elastic Load Balancer (Classic Load Balancer): arn:aws:elasticloadbalancing:region:account-id:loadbalancer/load-balancer-name For an Amazon CloudFront distribution: arn:aws:cloudfront::account-id:distribution/distribution-id For an Global Accelerator standard accelerator: arn:aws:globalaccelerator::account-id:accelerator/accelerator-id For Amazon Route 53: arn:aws:route53:::hostedzone/hosted-zone-id For an Elastic IP address: arn:aws:ec2:region:account-id:eip-allocation/allocation-id
521
524
  */
522
525
  ResourceArn: ResourceArn;
523
526
  /**
@@ -563,13 +566,16 @@ declare namespace Shield {
563
566
  }
564
567
  export interface DescribeAttackResponse {
565
568
  /**
566
- * The attack that is described.
569
+ * The attack that you requested.
567
570
  */
568
571
  Attack?: AttackDetail;
569
572
  }
570
573
  export interface DescribeAttackStatisticsRequest {
571
574
  }
572
575
  export interface DescribeAttackStatisticsResponse {
576
+ /**
577
+ * The time range of the attack.
578
+ */
573
579
  TimeRange: TimeRange;
574
580
  /**
575
581
  * The data that describes the attacks detected during the time period.
@@ -610,17 +616,17 @@ declare namespace Shield {
610
616
  }
611
617
  export interface DescribeProtectionRequest {
612
618
  /**
613
- * The unique identifier (ID) for the Protection object that is described. When submitting the DescribeProtection request you must provide either the ResourceArn or the ProtectionID, but not both.
619
+ * The unique identifier (ID) for the Protection object to describe. You must provide either the ResourceArn of the protected resource or the ProtectionID of the protection, but not both.
614
620
  */
615
621
  ProtectionId?: ProtectionId;
616
622
  /**
617
- * The ARN (Amazon Resource Name) of the Amazon Web Services resource for the Protection object that is described. When submitting the DescribeProtection request you must provide either the ResourceArn or the ProtectionID, but not both.
623
+ * The ARN (Amazon Resource Name) of the protected Amazon Web Services resource. You must provide either the ResourceArn of the protected resource or the ProtectionID of the protection, but not both.
618
624
  */
619
625
  ResourceArn?: ResourceArn;
620
626
  }
621
627
  export interface DescribeProtectionResponse {
622
628
  /**
623
- * The Protection object that is described.
629
+ * The Protection that you requested.
624
630
  */
625
631
  Protection?: Protection;
626
632
  }
@@ -634,7 +640,7 @@ declare namespace Shield {
634
640
  }
635
641
  export interface DisableApplicationLayerAutomaticResponseRequest {
636
642
  /**
637
- * The ARN (Amazon Resource Name) of the resource.
643
+ * The ARN (Amazon Resource Name) of the protected resource.
638
644
  */
639
645
  ResourceArn: ResourceArn;
640
646
  }
@@ -688,7 +694,7 @@ declare namespace Shield {
688
694
  export type EmergencyContactList = EmergencyContact[];
689
695
  export interface EnableApplicationLayerAutomaticResponseRequest {
690
696
  /**
691
- * The ARN (Amazon Resource Name) of the resource.
697
+ * The ARN (Amazon Resource Name) of the protected resource.
692
698
  */
693
699
  ResourceArn: ResourceArn;
694
700
  /**
@@ -713,6 +719,38 @@ declare namespace Shield {
713
719
  export type HealthCheckArn = string;
714
720
  export type HealthCheckId = string;
715
721
  export type HealthCheckIds = HealthCheckId[];
722
+ export interface InclusionProtectionFilters {
723
+ /**
724
+ * The ARN (Amazon Resource Name) of the resource whose protection you want to retrieve.
725
+ */
726
+ ResourceArns?: ResourceArnFilters;
727
+ /**
728
+ * The name of the protection that you want to retrieve.
729
+ */
730
+ ProtectionNames?: ProtectionNameFilters;
731
+ /**
732
+ * The type of protected resource whose protections you want to retrieve.
733
+ */
734
+ ResourceTypes?: ProtectedResourceTypeFilters;
735
+ }
736
+ export interface InclusionProtectionGroupFilters {
737
+ /**
738
+ * The ID of the protection group that you want to retrieve.
739
+ */
740
+ ProtectionGroupIds?: ProtectionGroupIdFilters;
741
+ /**
742
+ * The pattern specification of the protection groups that you want to retrieve.
743
+ */
744
+ Patterns?: ProtectionGroupPatternFilters;
745
+ /**
746
+ * The resource type configuration of the protection groups that you want to retrieve. In the protection group configuration, you specify the resource type when you set the group's Pattern to BY_RESOURCE_TYPE.
747
+ */
748
+ ResourceTypes?: ProtectedResourceTypeFilters;
749
+ /**
750
+ * The aggregation setting of the protection groups that you want to retrieve.
751
+ */
752
+ Aggregations?: ProtectionGroupAggregationFilters;
753
+ }
716
754
  export type Integer = number;
717
755
  export interface Limit {
718
756
  /**
@@ -766,6 +804,10 @@ declare namespace Shield {
766
804
  * The greatest number of objects that you want Shield Advanced to return to the list request. Shield Advanced might return fewer objects than you indicate in this setting, even if more objects are available. If there are more objects remaining, Shield Advanced will always also return a NextToken value in the response. The default setting is 20.
767
805
  */
768
806
  MaxResults?: MaxResults;
807
+ /**
808
+ * Narrows the set of protection groups that the call retrieves. You can retrieve a single protection group by its name and you can retrieve all protection groups that are configured with specific pattern or aggregation settings. You can provide up to one criteria per filter type. Shield Advanced returns the protection groups that exactly match all of the search criteria that you provide.
809
+ */
810
+ InclusionFilters?: InclusionProtectionGroupFilters;
769
811
  }
770
812
  export interface ListProtectionGroupsResponse {
771
813
  /**
@@ -786,6 +828,10 @@ declare namespace Shield {
786
828
  * The greatest number of objects that you want Shield Advanced to return to the list request. Shield Advanced might return fewer objects than you indicate in this setting, even if more objects are available. If there are more objects remaining, Shield Advanced will always also return a NextToken value in the response. The default setting is 20.
787
829
  */
788
830
  MaxResults?: MaxResults;
831
+ /**
832
+ * Narrows the set of protections that the call retrieves. You can retrieve a single protection by providing its name or the ARN (Amazon Resource Name) of its protected resource. You can also retrieve all protections for a specific resource type. You can provide up to one criteria per filter type. Shield Advanced returns protections that exactly match all of the filter criteria that you provide.
833
+ */
834
+ InclusionFilters?: InclusionProtectionFilters;
789
835
  }
790
836
  export interface ListProtectionsResponse {
791
837
  /**
@@ -847,6 +893,7 @@ declare namespace Shield {
847
893
  export type PhoneNumber = string;
848
894
  export type ProactiveEngagementStatus = "ENABLED"|"DISABLED"|"PENDING"|string;
849
895
  export type ProtectedResourceType = "CLOUDFRONT_DISTRIBUTION"|"ROUTE_53_HOSTED_ZONE"|"ELASTIC_IP_ALLOCATION"|"CLASSIC_LOAD_BALANCER"|"APPLICATION_LOAD_BALANCER"|"GLOBAL_ACCELERATOR"|string;
896
+ export type ProtectedResourceTypeFilters = ProtectedResourceType[];
850
897
  export interface Protection {
851
898
  /**
852
899
  * The unique identifier (ID) of the protection.
@@ -883,7 +930,7 @@ declare namespace Shield {
883
930
  */
884
931
  Aggregation: ProtectionGroupAggregation;
885
932
  /**
886
- * The criteria to use to choose the protected resources for inclusion in the group. You can include all resources that have protections, provide a list of resource Amazon Resource Names (ARNs), or include all resources of a specified resource type.
933
+ * The criteria to use to choose the protected resources for inclusion in the group. You can include all resources that have protections, provide a list of resource ARNs (Amazon Resource Names), or include all resources of a specified resource type.
887
934
  */
888
935
  Pattern: ProtectionGroupPattern;
889
936
  /**
@@ -891,7 +938,7 @@ declare namespace Shield {
891
938
  */
892
939
  ResourceType?: ProtectedResourceType;
893
940
  /**
894
- * The Amazon Resource Names (ARNs) of the resources to include in the protection group. You must set this when you set Pattern to ARBITRARY and you must not set it for any other Pattern setting.
941
+ * The ARNs (Amazon Resource Names) of the resources to include in the protection group. You must set this when you set Pattern to ARBITRARY and you must not set it for any other Pattern setting.
895
942
  */
896
943
  Members: ProtectionGroupMembers;
897
944
  /**
@@ -900,6 +947,7 @@ declare namespace Shield {
900
947
  ProtectionGroupArn?: ResourceArn;
901
948
  }
902
949
  export type ProtectionGroupAggregation = "SUM"|"MEAN"|"MAX"|string;
950
+ export type ProtectionGroupAggregationFilters = ProtectionGroupAggregation[];
903
951
  export interface ProtectionGroupArbitraryPatternLimits {
904
952
  /**
905
953
  * The maximum number of resources you can specify for a single arbitrary pattern in a protection group.
@@ -907,6 +955,7 @@ declare namespace Shield {
907
955
  MaxMembers: Long;
908
956
  }
909
957
  export type ProtectionGroupId = string;
958
+ export type ProtectionGroupIdFilters = ProtectionGroupId[];
910
959
  export interface ProtectionGroupLimits {
911
960
  /**
912
961
  * The maximum number of protection groups that you can have at one time.
@@ -919,6 +968,7 @@ declare namespace Shield {
919
968
  }
920
969
  export type ProtectionGroupMembers = ResourceArn[];
921
970
  export type ProtectionGroupPattern = "ALL"|"ARBITRARY"|"BY_RESOURCE_TYPE"|string;
971
+ export type ProtectionGroupPatternFilters = ProtectionGroupPattern[];
922
972
  export interface ProtectionGroupPatternTypeLimits {
923
973
  /**
924
974
  * Limits settings on protection groups with arbitrary pattern type.
@@ -934,9 +984,11 @@ declare namespace Shield {
934
984
  ProtectedResourceTypeLimits: Limits;
935
985
  }
936
986
  export type ProtectionName = string;
987
+ export type ProtectionNameFilters = ProtectionName[];
937
988
  export type Protections = Protection[];
938
989
  export type ResourceArn = string;
939
990
  export type ResourceArnFilterList = ResourceArn[];
991
+ export type ResourceArnFilters = ResourceArn[];
940
992
  export type ResourceArnList = ResourceArn[];
941
993
  export interface ResponseAction {
942
994
  /**
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1183.0',
86
+ VERSION: '2.1185.0',
87
87
 
88
88
  /**
89
89
  * @api private