cdk-comprehend-s3olap 2.0.49 → 2.0.52
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.
- package/.jsii +5 -5
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +20 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/chime-2018-05-01.min.json +116 -0
- package/node_modules/aws-sdk/apis/config-2014-11-12.min.json +67 -20
- package/node_modules/aws-sdk/apis/config-2014-11-12.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/es-2015-01-01.min.json +3 -0
- package/node_modules/aws-sdk/apis/globalaccelerator-2018-08-08.min.json +70 -53
- package/node_modules/aws-sdk/apis/lookoutvision-2020-11-20.min.json +22 -2
- package/node_modules/aws-sdk/apis/marketplace-catalog-2018-09-17.min.json +3 -1
- package/node_modules/aws-sdk/apis/opensearch-2021-01-01.min.json +3 -0
- package/node_modules/aws-sdk/apis/shield-2016-06-02.min.json +40 -0
- package/node_modules/aws-sdk/apis/workspaces-2015-04-08.min.json +104 -66
- package/node_modules/aws-sdk/clients/chime.d.ts +135 -4
- package/node_modules/aws-sdk/clients/configservice.d.ts +66 -0
- package/node_modules/aws-sdk/clients/ec2.d.ts +79 -79
- package/node_modules/aws-sdk/clients/es.d.ts +7 -3
- package/node_modules/aws-sdk/clients/fsx.d.ts +4 -4
- package/node_modules/aws-sdk/clients/globalaccelerator.d.ts +109 -85
- package/node_modules/aws-sdk/clients/lookoutvision.d.ts +39 -7
- package/node_modules/aws-sdk/clients/marketplacecatalog.d.ts +1 -1
- package/node_modules/aws-sdk/clients/opensearch.d.ts +7 -3
- package/node_modules/aws-sdk/clients/polly.d.ts +1 -1
- package/node_modules/aws-sdk/clients/shield.d.ts +75 -23
- package/node_modules/aws-sdk/clients/ssm.d.ts +12 -12
- package/node_modules/aws-sdk/clients/workspaces.d.ts +65 -5
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +11 -11
- package/node_modules/aws-sdk/dist/aws-sdk.js +75 -23
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +72 -72
- package/node_modules/aws-sdk/dist-tools/service-collector.js +4 -6
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/esbuild/install.js +4 -4
- package/node_modules/esbuild/lib/main.d.ts +5 -1
- package/node_modules/esbuild/lib/main.js +13 -7
- package/node_modules/esbuild/package.json +21 -21
- package/node_modules/esbuild-linux-64/bin/esbuild +0 -0
- package/node_modules/esbuild-linux-64/package.json +1 -1
- package/package.json +10 -10
@@ -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
|
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
|
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)
|
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)
|
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
|
1145
|
+
Accelerator?: TargetPlatformAccelerator;
|
1114
1146
|
}
|
1115
1147
|
export type TargetPlatformAccelerator = "NVIDIA"|string;
|
1116
1148
|
export type TargetPlatformArch = "ARM64"|"X86_64"|string;
|
@@ -233,7 +233,7 @@ declare namespace MarketplaceCatalog {
|
|
233
233
|
*/
|
234
234
|
EntityIdentifier?: Identifier;
|
235
235
|
/**
|
236
|
-
* The ARN associated to the unique identifier for the
|
236
|
+
* The ARN associated to the unique identifier for the entity referenced in this request.
|
237
237
|
*/
|
238
238
|
EntityArn?: ARN;
|
239
239
|
/**
|
@@ -1456,9 +1456,13 @@ declare namespace OpenSearch {
|
|
1456
1456
|
*/
|
1457
1457
|
VolumeSize?: IntegerClass;
|
1458
1458
|
/**
|
1459
|
-
* The
|
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.
|
@@ -488,7 +488,7 @@ declare namespace Polly {
|
|
488
488
|
*/
|
489
489
|
SupportedEngines?: EngineList;
|
490
490
|
}
|
491
|
-
export type VoiceId = "Aditi"|"Amy"|"Astrid"|"Bianca"|"Brian"|"Camila"|"Carla"|"Carmen"|"Celine"|"Chantal"|"Conchita"|"Cristiano"|"Dora"|"Emma"|"Enrique"|"Ewa"|"Filiz"|"Gabrielle"|"Geraint"|"Giorgio"|"Gwyneth"|"Hans"|"Ines"|"Ivy"|"Jacek"|"Jan"|"Joanna"|"Joey"|"Justin"|"Karl"|"Kendra"|"Kevin"|"Kimberly"|"Lea"|"Liv"|"Lotte"|"Lucia"|"Lupe"|"Mads"|"Maja"|"Marlene"|"Mathieu"|"Matthew"|"Maxim"|"Mia"|"Miguel"|"Mizuki"|"Naja"|"Nicole"|"Olivia"|"Penelope"|"Raveena"|"Ricardo"|"Ruben"|"Russell"|"Salli"|"Seoyeon"|"Takumi"|"Tatyana"|"Vicki"|"Vitoria"|"Zeina"|"Zhiyu"|"Aria"|"Ayanda"|"Arlet"|"Hannah"|"Arthur"|"Daniel"|"Liam"|"Pedro"|string;
|
491
|
+
export type VoiceId = "Aditi"|"Amy"|"Astrid"|"Bianca"|"Brian"|"Camila"|"Carla"|"Carmen"|"Celine"|"Chantal"|"Conchita"|"Cristiano"|"Dora"|"Emma"|"Enrique"|"Ewa"|"Filiz"|"Gabrielle"|"Geraint"|"Giorgio"|"Gwyneth"|"Hans"|"Ines"|"Ivy"|"Jacek"|"Jan"|"Joanna"|"Joey"|"Justin"|"Karl"|"Kendra"|"Kevin"|"Kimberly"|"Lea"|"Liv"|"Lotte"|"Lucia"|"Lupe"|"Mads"|"Maja"|"Marlene"|"Mathieu"|"Matthew"|"Maxim"|"Mia"|"Miguel"|"Mizuki"|"Naja"|"Nicole"|"Olivia"|"Penelope"|"Raveena"|"Ricardo"|"Ruben"|"Russell"|"Salli"|"Seoyeon"|"Takumi"|"Tatyana"|"Vicki"|"Vitoria"|"Zeina"|"Zhiyu"|"Aria"|"Ayanda"|"Arlet"|"Hannah"|"Arthur"|"Daniel"|"Liam"|"Pedro"|"Kajal"|string;
|
492
492
|
export type VoiceList = Voice[];
|
493
493
|
export type VoiceName = string;
|
494
494
|
/**
|
@@ -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,
|
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,
|
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
|
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
|
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.
|
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.
|
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
|
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
|
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
|
-
*
|
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
|
-
*
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|
/**
|
@@ -829,11 +829,11 @@ declare class SSM extends Service {
|
|
829
829
|
*/
|
830
830
|
modifyDocumentPermission(callback?: (err: AWSError, data: SSM.Types.ModifyDocumentPermissionResponse) => void): Request<SSM.Types.ModifyDocumentPermissionResponse, AWSError>;
|
831
831
|
/**
|
832
|
-
* Registers a compliance type and other compliance details on a designated resource. This operation lets you register custom compliance details with a resource. This call overwrites existing compliance information on the resource, so you must provide a full list of compliance items each time that you send the request. ComplianceType can be one of the following: ExecutionId: The execution ID when the patch, association, or custom compliance item was applied. ExecutionType: Specify patch, association, or Custom:string. ExecutionTime. The time the patch, association, or custom compliance item was applied to the managed node. Id: The patch, association, or custom compliance ID. Title: A title. Status: The status of the compliance item. For example, approved for patches, or Failed for associations. Severity: A patch severity. For example,
|
832
|
+
* Registers a compliance type and other compliance details on a designated resource. This operation lets you register custom compliance details with a resource. This call overwrites existing compliance information on the resource, so you must provide a full list of compliance items each time that you send the request. ComplianceType can be one of the following: ExecutionId: The execution ID when the patch, association, or custom compliance item was applied. ExecutionType: Specify patch, association, or Custom:string. ExecutionTime. The time the patch, association, or custom compliance item was applied to the managed node. Id: The patch, association, or custom compliance ID. Title: A title. Status: The status of the compliance item. For example, approved for patches, or Failed for associations. Severity: A patch severity. For example, Critical. DocumentName: An SSM document name. For example, AWS-RunPatchBaseline. DocumentVersion: An SSM document version number. For example, 4. Classification: A patch classification. For example, security updates. PatchBaselineId: A patch baseline ID. PatchSeverity: A patch severity. For example, Critical. PatchState: A patch state. For example, InstancesWithFailedPatches. PatchGroup: The name of a patch group. InstalledTime: The time the association, patch, or custom compliance item was applied to the resource. Specify the time by using the following format: yyyy-MM-dd'T'HH:mm:ss'Z'
|
833
833
|
*/
|
834
834
|
putComplianceItems(params: SSM.Types.PutComplianceItemsRequest, callback?: (err: AWSError, data: SSM.Types.PutComplianceItemsResult) => void): Request<SSM.Types.PutComplianceItemsResult, AWSError>;
|
835
835
|
/**
|
836
|
-
* Registers a compliance type and other compliance details on a designated resource. This operation lets you register custom compliance details with a resource. This call overwrites existing compliance information on the resource, so you must provide a full list of compliance items each time that you send the request. ComplianceType can be one of the following: ExecutionId: The execution ID when the patch, association, or custom compliance item was applied. ExecutionType: Specify patch, association, or Custom:string. ExecutionTime. The time the patch, association, or custom compliance item was applied to the managed node. Id: The patch, association, or custom compliance ID. Title: A title. Status: The status of the compliance item. For example, approved for patches, or Failed for associations. Severity: A patch severity. For example,
|
836
|
+
* Registers a compliance type and other compliance details on a designated resource. This operation lets you register custom compliance details with a resource. This call overwrites existing compliance information on the resource, so you must provide a full list of compliance items each time that you send the request. ComplianceType can be one of the following: ExecutionId: The execution ID when the patch, association, or custom compliance item was applied. ExecutionType: Specify patch, association, or Custom:string. ExecutionTime. The time the patch, association, or custom compliance item was applied to the managed node. Id: The patch, association, or custom compliance ID. Title: A title. Status: The status of the compliance item. For example, approved for patches, or Failed for associations. Severity: A patch severity. For example, Critical. DocumentName: An SSM document name. For example, AWS-RunPatchBaseline. DocumentVersion: An SSM document version number. For example, 4. Classification: A patch classification. For example, security updates. PatchBaselineId: A patch baseline ID. PatchSeverity: A patch severity. For example, Critical. PatchState: A patch state. For example, InstancesWithFailedPatches. PatchGroup: The name of a patch group. InstalledTime: The time the association, patch, or custom compliance item was applied to the resource. Specify the time by using the following format: yyyy-MM-dd'T'HH:mm:ss'Z'
|
837
837
|
*/
|
838
838
|
putComplianceItems(callback?: (err: AWSError, data: SSM.Types.PutComplianceItemsResult) => void): Request<SSM.Types.PutComplianceItemsResult, AWSError>;
|
839
839
|
/**
|
@@ -2026,7 +2026,7 @@ declare namespace SSM {
|
|
2026
2026
|
*/
|
2027
2027
|
Comment?: Comment;
|
2028
2028
|
/**
|
2029
|
-
* If
|
2029
|
+
* If a command expires, it changes status to DeliveryTimedOut for all invocations that have the status InProgress, Pending, or Delayed. ExpiresAfter is calculated based on the total timeout for the overall command. For more information, see Understanding command timeout values in the Amazon Web Services Systems Manager User Guide.
|
2030
2030
|
*/
|
2031
2031
|
ExpiresAfter?: DateTime;
|
2032
2032
|
/**
|
@@ -2050,7 +2050,7 @@ declare namespace SSM {
|
|
2050
2050
|
*/
|
2051
2051
|
Status?: CommandStatus;
|
2052
2052
|
/**
|
2053
|
-
* A detailed status of the command execution. StatusDetails includes more information than Status because it includes states resulting from error and concurrency control parameters. StatusDetails can show different results than Status. For more information about these statuses, see Understanding command statuses in the Amazon Web Services Systems Manager User Guide. StatusDetails can be one of the following values: Pending: The command hasn't been sent to any managed nodes. In Progress: The command has been sent to at least one managed node but hasn't reached a final state on all managed nodes. Success: The command successfully ran on all invocations. This is a terminal state. Delivery Timed Out: The value of MaxErrors or more command invocations shows a status of Delivery Timed Out. This is a terminal state. Execution Timed Out: The value of MaxErrors or more command invocations shows a status of Execution Timed Out. This is a terminal state. Failed: The value of MaxErrors or more command invocations shows a status of Failed. This is a terminal state. Incomplete: The command was attempted on all managed nodes and one or more invocations doesn't have a value of Success but not enough invocations failed for the status to be Failed. This is a terminal state. Cancelled: The command was terminated before it was completed. This is a terminal state. Rate Exceeded: The number of managed nodes targeted by the command exceeded the account limit for pending invocations. The system has canceled the command before running it on any managed node. This is a terminal state.
|
2053
|
+
* A detailed status of the command execution. StatusDetails includes more information than Status because it includes states resulting from error and concurrency control parameters. StatusDetails can show different results than Status. For more information about these statuses, see Understanding command statuses in the Amazon Web Services Systems Manager User Guide. StatusDetails can be one of the following values: Pending: The command hasn't been sent to any managed nodes. In Progress: The command has been sent to at least one managed node but hasn't reached a final state on all managed nodes. Success: The command successfully ran on all invocations. This is a terminal state. Delivery Timed Out: The value of MaxErrors or more command invocations shows a status of Delivery Timed Out. This is a terminal state. Execution Timed Out: The value of MaxErrors or more command invocations shows a status of Execution Timed Out. This is a terminal state. Failed: The value of MaxErrors or more command invocations shows a status of Failed. This is a terminal state. Incomplete: The command was attempted on all managed nodes and one or more invocations doesn't have a value of Success but not enough invocations failed for the status to be Failed. This is a terminal state. Cancelled: The command was terminated before it was completed. This is a terminal state. Rate Exceeded: The number of managed nodes targeted by the command exceeded the account limit for pending invocations. The system has canceled the command before running it on any managed node. This is a terminal state. Delayed: The system attempted to send the command to the managed node but wasn't successful. The system retries again.
|
2054
2054
|
*/
|
2055
2055
|
StatusDetails?: StatusDetails;
|
2056
2056
|
/**
|
@@ -2154,7 +2154,7 @@ declare namespace SSM {
|
|
2154
2154
|
*/
|
2155
2155
|
Status?: CommandInvocationStatus;
|
2156
2156
|
/**
|
2157
|
-
* A detailed status of the command execution for each invocation (each managed node targeted by the command). StatusDetails includes more information than Status because it includes states resulting from error and concurrency control parameters. StatusDetails can show different results than Status. For more information about these statuses, see Understanding command statuses in the Amazon Web Services Systems Manager User Guide. StatusDetails can be one of the following values: Pending: The command hasn't been sent to the managed node. In Progress: The command has been sent to the managed node but hasn't reached a terminal state. Success: The execution of the command or plugin was successfully completed. This is a terminal state. Delivery Timed Out: The command wasn't delivered to the managed node before the delivery timeout expired. Delivery timeouts don't count against the parent command's MaxErrors limit, but they do contribute to whether the parent command status is Success or Incomplete. This is a terminal state. Execution Timed Out: Command execution started on the managed node, but the execution wasn't complete before the execution timeout expired. Execution timeouts count against the MaxErrors limit of the parent command. This is a terminal state. Failed: The command wasn't successful on the managed node. For a plugin, this indicates that the result code wasn't zero. For a command invocation, this indicates that the result code for one or more plugins wasn't zero. Invocation failures count against the MaxErrors limit of the parent command. This is a terminal state. Cancelled: The command was terminated before it was completed. This is a terminal state. Undeliverable: The command can't be delivered to the managed node. The managed node might not exist or might not be responding. Undeliverable invocations don't count against the parent command's MaxErrors limit and don't contribute to whether the parent command status is Success or Incomplete. This is a terminal state. Terminated: The parent command exceeded its MaxErrors limit and subsequent command invocations were canceled by the system. This is a terminal state.
|
2157
|
+
* A detailed status of the command execution for each invocation (each managed node targeted by the command). StatusDetails includes more information than Status because it includes states resulting from error and concurrency control parameters. StatusDetails can show different results than Status. For more information about these statuses, see Understanding command statuses in the Amazon Web Services Systems Manager User Guide. StatusDetails can be one of the following values: Pending: The command hasn't been sent to the managed node. In Progress: The command has been sent to the managed node but hasn't reached a terminal state. Success: The execution of the command or plugin was successfully completed. This is a terminal state. Delivery Timed Out: The command wasn't delivered to the managed node before the delivery timeout expired. Delivery timeouts don't count against the parent command's MaxErrors limit, but they do contribute to whether the parent command status is Success or Incomplete. This is a terminal state. Execution Timed Out: Command execution started on the managed node, but the execution wasn't complete before the execution timeout expired. Execution timeouts count against the MaxErrors limit of the parent command. This is a terminal state. Failed: The command wasn't successful on the managed node. For a plugin, this indicates that the result code wasn't zero. For a command invocation, this indicates that the result code for one or more plugins wasn't zero. Invocation failures count against the MaxErrors limit of the parent command. This is a terminal state. Cancelled: The command was terminated before it was completed. This is a terminal state. Undeliverable: The command can't be delivered to the managed node. The managed node might not exist or might not be responding. Undeliverable invocations don't count against the parent command's MaxErrors limit and don't contribute to whether the parent command status is Success or Incomplete. This is a terminal state. Terminated: The parent command exceeded its MaxErrors limit and subsequent command invocations were canceled by the system. This is a terminal state. Delayed: The system attempted to send the command to the managed node but wasn't successful. The system retries again.
|
2158
2158
|
*/
|
2159
2159
|
StatusDetails?: StatusDetails;
|
2160
2160
|
/**
|
@@ -2618,7 +2618,7 @@ declare namespace SSM {
|
|
2618
2618
|
*/
|
2619
2619
|
DisplayName?: DocumentDisplayName;
|
2620
2620
|
/**
|
2621
|
-
* An optional field specifying the version of the artifact you are creating with the document. For example,
|
2621
|
+
* An optional field specifying the version of the artifact you are creating with the document. For example, Release12.1. This value is unique across all versions of a document, and can't be changed.
|
2622
2622
|
*/
|
2623
2623
|
VersionName?: DocumentVersionName;
|
2624
2624
|
/**
|
@@ -5322,7 +5322,7 @@ declare namespace SSM {
|
|
5322
5322
|
}
|
5323
5323
|
export interface GetServiceSettingRequest {
|
5324
5324
|
/**
|
5325
|
-
* The ID of the service setting to get. The setting ID can be one of the following. /ssm/automation/customer-script-log-destination /ssm/automation/customer-script-log-group-name /ssm/documents/console/public-sharing-permission /ssm/parameter-store/default-parameter-tier /ssm/parameter-store/high-throughput-enabled
|
5325
|
+
* The ID of the service setting to get. The setting ID can be one of the following. /ssm/automation/customer-script-log-destination /ssm/automation/customer-script-log-group-name /ssm/documents/console/public-sharing-permission /ssm/managed-instance/activation-tier /ssm/opsinsights/opscenter /ssm/parameter-store/default-parameter-tier /ssm/parameter-store/high-throughput-enabled
|
5326
5326
|
*/
|
5327
5327
|
SettingId: ServiceSettingId;
|
5328
5328
|
}
|
@@ -8155,7 +8155,7 @@ declare namespace SSM {
|
|
8155
8155
|
}
|
8156
8156
|
export interface ResetServiceSettingRequest {
|
8157
8157
|
/**
|
8158
|
-
* The Amazon Resource Name (ARN) of the service setting to reset. The setting ID can be one of the following. /ssm/automation/customer-script-log-destination /ssm/automation/customer-script-log-group-name /ssm/documents/console/public-sharing-permission /ssm/parameter-store/default-parameter-tier /ssm/parameter-store/high-throughput-enabled
|
8158
|
+
* The Amazon Resource Name (ARN) of the service setting to reset. The setting ID can be one of the following. /ssm/automation/customer-script-log-destination /ssm/automation/customer-script-log-group-name /ssm/documents/console/public-sharing-permission /ssm/managed-instance/activation-tier /ssm/opsinsights/opscenter /ssm/parameter-store/default-parameter-tier /ssm/parameter-store/high-throughput-enabled
|
8159
8159
|
*/
|
8160
8160
|
SettingId: ServiceSettingId;
|
8161
8161
|
}
|
@@ -8704,7 +8704,7 @@ declare namespace SSM {
|
|
8704
8704
|
export type SessionTarget = string;
|
8705
8705
|
export interface SeveritySummary {
|
8706
8706
|
/**
|
8707
|
-
* The total number of resources or compliance items that have a severity level of
|
8707
|
+
* The total number of resources or compliance items that have a severity level of Critical. Critical severity is determined by the organization that published the compliance items.
|
8708
8708
|
*/
|
8709
8709
|
CriticalCount?: ComplianceSummaryCount;
|
8710
8710
|
/**
|
@@ -8858,7 +8858,7 @@ declare namespace SSM {
|
|
8858
8858
|
*/
|
8859
8859
|
Target: SessionTarget;
|
8860
8860
|
/**
|
8861
|
-
* The name of the SSM document to define the parameters
|
8861
|
+
* The name of the SSM document you want to use to define the type of session, input parameters, or preferences for the session. For example, SSM-SessionManagerRunShell. You can call the GetDocument API to verify the document exists before attempting to start a session. If no document name is provided, a shell to the managed node is launched by default. For more information, see Start a session in the Amazon Web Services Systems Manager User Guide.
|
8862
8862
|
*/
|
8863
8863
|
DocumentName?: DocumentARN;
|
8864
8864
|
/**
|
@@ -9786,11 +9786,11 @@ declare namespace SSM {
|
|
9786
9786
|
}
|
9787
9787
|
export interface UpdateServiceSettingRequest {
|
9788
9788
|
/**
|
9789
|
-
* The Amazon Resource Name (ARN) of the service setting to reset. For example, arn:aws:ssm:us-east-1:111122223333:servicesetting/ssm/parameter-store/high-throughput-enabled. The setting ID can be one of the following. /ssm/automation/customer-script-log-destination /ssm/automation/customer-script-log-group-name /ssm/documents/console/public-sharing-permission /ssm/parameter-store/default-parameter-tier /ssm/parameter-store/high-throughput-enabled
|
9789
|
+
* The Amazon Resource Name (ARN) of the service setting to reset. For example, arn:aws:ssm:us-east-1:111122223333:servicesetting/ssm/parameter-store/high-throughput-enabled. The setting ID can be one of the following. /ssm/automation/customer-script-log-destination /ssm/automation/customer-script-log-group-name /ssm/documents/console/public-sharing-permission /ssm/managed-instance/activation-tier /ssm/opsinsights/opscenter /ssm/parameter-store/default-parameter-tier /ssm/parameter-store/high-throughput-enabled
|
9790
9790
|
*/
|
9791
9791
|
SettingId: ServiceSettingId;
|
9792
9792
|
/**
|
9793
|
-
* The new value to specify for the service setting. The following list specifies the available values for each setting. /ssm/
|
9793
|
+
* The new value to specify for the service setting. The following list specifies the available values for each setting. /ssm/automation/customer-script-log-destination: CloudWatch /ssm/automation/customer-script-log-group-name: the name of an Amazon CloudWatch Logs log group /ssm/documents/console/public-sharing-permission: Enable or Disable /ssm/managed-instance/activation-tier: standard or advanced /ssm/opsinsights/opscenter: Enabled or Disabled /ssm/parameter-store/default-parameter-tier: Standard, Advanced, Intelligent-Tiering /ssm/parameter-store/high-throughput-enabled: true or false
|
9794
9794
|
*/
|
9795
9795
|
SettingValue: ServiceSettingValue;
|
9796
9796
|
}
|