aws-sdk 2.1416.0 → 2.1418.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -1
- package/README.md +1 -1
- package/apis/cloudformation-2010-05-15.min.json +20 -4
- package/apis/grafana-2020-08-18.min.json +41 -4
- package/apis/grafana-2020-08-18.paginators.json +6 -0
- package/apis/m2-2021-04-28.min.json +19 -3
- package/apis/medical-imaging-2023-07-19.examples.json +5 -0
- package/apis/medical-imaging-2023-07-19.min.json +1098 -0
- package/apis/medical-imaging-2023-07-19.paginators.json +28 -0
- package/apis/medical-imaging-2023-07-19.waiters2.json +5 -0
- package/apis/metadata.json +4 -0
- package/apis/models.lex.v2-2020-08-07.min.json +854 -54
- package/apis/models.lex.v2-2020-08-07.paginators.json +30 -0
- package/apis/ram-2018-01-04.min.json +49 -36
- package/apis/snowball-2016-06-30.examples.json +26 -0
- package/apis/snowball-2016-06-30.min.json +113 -55
- package/apis/snowball-2016-06-30.paginators.json +5 -0
- package/apis/ssm-sap-2018-05-10.min.json +98 -24
- package/apis/wafv2-2019-07-29.min.json +134 -123
- package/clients/all.d.ts +1 -0
- package/clients/all.js +2 -1
- package/clients/cloudformation.d.ts +21 -0
- package/clients/codegurusecurity.d.ts +3 -3
- package/clients/connect.d.ts +2 -2
- package/clients/ec2.d.ts +200 -200
- package/clients/grafana.d.ts +47 -5
- package/clients/lexmodelsv2.d.ts +1035 -33
- package/clients/m2.d.ts +14 -4
- package/clients/medicalimaging.d.ts +1102 -0
- package/clients/medicalimaging.js +19 -0
- package/clients/ram.d.ts +14 -1
- package/clients/snowball.d.ts +101 -9
- package/clients/ssmsap.d.ts +131 -7
- package/clients/translate.d.ts +1 -1
- package/clients/wafv2.d.ts +12 -2
- package/dist/aws-sdk-core-react-native.js +60 -81
- package/dist/aws-sdk-react-native.js +175 -173
- package/dist/aws-sdk.js +27 -7
- package/dist/aws-sdk.min.js +97 -97
- package/lib/config_service_placeholders.d.ts +2 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -0,0 +1,19 @@
|
|
1
|
+
require('../lib/node_loader');
|
2
|
+
var AWS = require('../lib/core');
|
3
|
+
var Service = AWS.Service;
|
4
|
+
var apiLoader = AWS.apiLoader;
|
5
|
+
|
6
|
+
apiLoader.services['medicalimaging'] = {};
|
7
|
+
AWS.MedicalImaging = Service.defineService('medicalimaging', ['2023-07-19']);
|
8
|
+
Object.defineProperty(apiLoader.services['medicalimaging'], '2023-07-19', {
|
9
|
+
get: function get() {
|
10
|
+
var model = require('../apis/medical-imaging-2023-07-19.min.json');
|
11
|
+
model.paginators = require('../apis/medical-imaging-2023-07-19.paginators.json').pagination;
|
12
|
+
model.waiters = require('../apis/medical-imaging-2023-07-19.waiters2.json').waiters;
|
13
|
+
return model;
|
14
|
+
},
|
15
|
+
enumerable: true,
|
16
|
+
configurable: true
|
17
|
+
});
|
18
|
+
|
19
|
+
module.exports = AWS.MedicalImaging;
|
package/clients/ram.d.ts
CHANGED
@@ -354,6 +354,10 @@ declare namespace RAM {
|
|
354
354
|
* Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a UUID type of value.. If you don't provide this value, then Amazon Web Services generates a random one for you. If you retry the operation with the same ClientToken, but with different parameters, the retry fails with an IdempotentParameterMismatch error.
|
355
355
|
*/
|
356
356
|
clientToken?: String;
|
357
|
+
/**
|
358
|
+
* Specifies from which source accounts the service principal has access to the resources in this resource share.
|
359
|
+
*/
|
360
|
+
sources?: SourceArnOrAccountList;
|
357
361
|
}
|
358
362
|
export interface AssociateResourceShareResponse {
|
359
363
|
/**
|
@@ -483,6 +487,10 @@ declare namespace RAM {
|
|
483
487
|
* Specifies the Amazon Resource Names (ARNs) of the RAM permission to associate with the resource share. If you do not specify an ARN for the permission, RAM automatically attaches the default version of the permission for each resource type. You can associate only one permission with each resource type included in the resource share.
|
484
488
|
*/
|
485
489
|
permissionArns?: PermissionArnList;
|
490
|
+
/**
|
491
|
+
* Specifies from which source accounts the service principal has access to the resources in this resource share.
|
492
|
+
*/
|
493
|
+
sources?: SourceArnOrAccountList;
|
486
494
|
}
|
487
495
|
export interface CreateResourceShareResponse {
|
488
496
|
/**
|
@@ -608,6 +616,10 @@ declare namespace RAM {
|
|
608
616
|
* Specifies a unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This lets you safely retry the request without accidentally performing the same operation a second time. Passing the same value to a later call to an operation requires that you also pass the same value for all other parameters. We recommend that you use a UUID type of value.. If you don't provide this value, then Amazon Web Services generates a random one for you. If you retry the operation with the same ClientToken, but with different parameters, the retry fails with an IdempotentParameterMismatch error.
|
609
617
|
*/
|
610
618
|
clientToken?: String;
|
619
|
+
/**
|
620
|
+
* Specifies from which source accounts the service principal no longer has access to the resources in this resource share.
|
621
|
+
*/
|
622
|
+
sources?: SourceArnOrAccountList;
|
611
623
|
}
|
612
624
|
export interface DisassociateResourceShareResponse {
|
613
625
|
/**
|
@@ -685,7 +697,7 @@ declare namespace RAM {
|
|
685
697
|
*/
|
686
698
|
resourceArn?: String;
|
687
699
|
/**
|
688
|
-
* Specifies the ID of the principal whose resource shares you want to retrieve. This can be an Amazon Web Services account ID, an organization ID, an organizational unit ID, or the Amazon Resource Name (ARN) of an individual IAM
|
700
|
+
* Specifies the ID of the principal whose resource shares you want to retrieve. This can be an Amazon Web Services account ID, an organization ID, an organizational unit ID, or the Amazon Resource Name (ARN) of an individual IAM role or user. You cannot specify this parameter if the association type is RESOURCE.
|
689
701
|
*/
|
690
702
|
principal?: String;
|
691
703
|
/**
|
@@ -1543,6 +1555,7 @@ declare namespace RAM {
|
|
1543
1555
|
*/
|
1544
1556
|
clientToken?: String;
|
1545
1557
|
}
|
1558
|
+
export type SourceArnOrAccountList = String[];
|
1546
1559
|
export type String = string;
|
1547
1560
|
export interface Tag {
|
1548
1561
|
/**
|
package/clients/snowball.d.ts
CHANGED
@@ -44,11 +44,11 @@ declare class Snowball extends Service {
|
|
44
44
|
*/
|
45
45
|
createCluster(callback?: (err: AWSError, data: Snowball.Types.CreateClusterResult) => void): Request<Snowball.Types.CreateClusterResult, AWSError>;
|
46
46
|
/**
|
47
|
-
* Creates a job to import or export data between Amazon S3 and your on-premises data center. Your Amazon Web Services account must have the right trust policies and permissions in place to create a job for a Snow device. If you're creating a job for a node in a cluster, you only need to provide the clusterId value; the other job attributes are inherited from the cluster. Only the Snowball; Edge device type is supported when ordering clustered jobs. The device capacity is optional. Availability of device types differ by Amazon Web Services Region. For more information about Region availability, see Amazon Web Services Regional Services. Snow Family devices and their capacities. Device type: SNC1_SSD Capacity: T14 Description: Snowcone Device type: SNC1_HDD Capacity: T8 Description: Snowcone Device type: EDGE_S Capacity: T98 Description: Snowball Edge Storage Optimized for data transfer only Device type: EDGE_CG Capacity: T42 Description: Snowball Edge Compute Optimized with GPU Device type: EDGE_C Capacity: T42 Description: Snowball Edge Compute Optimized without GPU Device type: EDGE Capacity: T100 Description: Snowball Edge Storage Optimized with EC2 Compute
|
47
|
+
* Creates a job to import or export data between Amazon S3 and your on-premises data center. Your Amazon Web Services account must have the right trust policies and permissions in place to create a job for a Snow device. If you're creating a job for a node in a cluster, you only need to provide the clusterId value; the other job attributes are inherited from the cluster. Only the Snowball; Edge device type is supported when ordering clustered jobs. The device capacity is optional. Availability of device types differ by Amazon Web Services Region. For more information about Region availability, see Amazon Web Services Regional Services. Snow Family devices and their capacities. Device type: SNC1_SSD Capacity: T14 Description: Snowcone Device type: SNC1_HDD Capacity: T8 Description: Snowcone Device type: EDGE_S Capacity: T98 Description: Snowball Edge Storage Optimized for data transfer only Device type: EDGE_CG Capacity: T42 Description: Snowball Edge Compute Optimized with GPU Device type: EDGE_C Capacity: T42 Description: Snowball Edge Compute Optimized without GPU Device type: EDGE Capacity: T100 Description: Snowball Edge Storage Optimized with EC2 Compute This device is replaced with T98. Device type: STANDARD Capacity: T50 Description: Original Snowball device This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region Device type: STANDARD Capacity: T80 Description: Original Snowball device This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region. Snow Family device type: RACK_5U_C Capacity: T13 Description: Snowblade. Device type: V3_5S Capacity: T240 Description: Snowball Edge Storage Optimized 210TB
|
48
48
|
*/
|
49
49
|
createJob(params: Snowball.Types.CreateJobRequest, callback?: (err: AWSError, data: Snowball.Types.CreateJobResult) => void): Request<Snowball.Types.CreateJobResult, AWSError>;
|
50
50
|
/**
|
51
|
-
* Creates a job to import or export data between Amazon S3 and your on-premises data center. Your Amazon Web Services account must have the right trust policies and permissions in place to create a job for a Snow device. If you're creating a job for a node in a cluster, you only need to provide the clusterId value; the other job attributes are inherited from the cluster. Only the Snowball; Edge device type is supported when ordering clustered jobs. The device capacity is optional. Availability of device types differ by Amazon Web Services Region. For more information about Region availability, see Amazon Web Services Regional Services. Snow Family devices and their capacities. Device type: SNC1_SSD Capacity: T14 Description: Snowcone Device type: SNC1_HDD Capacity: T8 Description: Snowcone Device type: EDGE_S Capacity: T98 Description: Snowball Edge Storage Optimized for data transfer only Device type: EDGE_CG Capacity: T42 Description: Snowball Edge Compute Optimized with GPU Device type: EDGE_C Capacity: T42 Description: Snowball Edge Compute Optimized without GPU Device type: EDGE Capacity: T100 Description: Snowball Edge Storage Optimized with EC2 Compute
|
51
|
+
* Creates a job to import or export data between Amazon S3 and your on-premises data center. Your Amazon Web Services account must have the right trust policies and permissions in place to create a job for a Snow device. If you're creating a job for a node in a cluster, you only need to provide the clusterId value; the other job attributes are inherited from the cluster. Only the Snowball; Edge device type is supported when ordering clustered jobs. The device capacity is optional. Availability of device types differ by Amazon Web Services Region. For more information about Region availability, see Amazon Web Services Regional Services. Snow Family devices and their capacities. Device type: SNC1_SSD Capacity: T14 Description: Snowcone Device type: SNC1_HDD Capacity: T8 Description: Snowcone Device type: EDGE_S Capacity: T98 Description: Snowball Edge Storage Optimized for data transfer only Device type: EDGE_CG Capacity: T42 Description: Snowball Edge Compute Optimized with GPU Device type: EDGE_C Capacity: T42 Description: Snowball Edge Compute Optimized without GPU Device type: EDGE Capacity: T100 Description: Snowball Edge Storage Optimized with EC2 Compute This device is replaced with T98. Device type: STANDARD Capacity: T50 Description: Original Snowball device This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region Device type: STANDARD Capacity: T80 Description: Original Snowball device This device is only available in the Ningxia, Beijing, and Singapore Amazon Web Services Region. Snow Family device type: RACK_5U_C Capacity: T13 Description: Snowblade. Device type: V3_5S Capacity: T240 Description: Snowball Edge Storage Optimized 210TB
|
52
52
|
*/
|
53
53
|
createJob(callback?: (err: AWSError, data: Snowball.Types.CreateJobResult) => void): Request<Snowball.Types.CreateJobResult, AWSError>;
|
54
54
|
/**
|
@@ -156,11 +156,11 @@ declare class Snowball extends Service {
|
|
156
156
|
*/
|
157
157
|
listClusters(callback?: (err: AWSError, data: Snowball.Types.ListClustersResult) => void): Request<Snowball.Types.ListClustersResult, AWSError>;
|
158
158
|
/**
|
159
|
-
* This action returns a list of the different Amazon EC2 Amazon Machine Images (AMIs) that are owned by your Amazon Web Services accountthat would be supported for use on a Snow device. Currently, supported AMIs are based on the Amazon Linux-2, Ubuntu 20.04 LTS - Focal, or Ubuntu 22.04 LTS - Jammy images, available on the Amazon Web Services Marketplace. Ubuntu 16.04 LTS - Xenial (HVM) images are no longer supported in the Market, but still supported for use on devices through Amazon EC2 VM Import/Export and running locally in AMIs.
|
159
|
+
* This action returns a list of the different Amazon EC2-compatible Amazon Machine Images (AMIs) that are owned by your Amazon Web Services accountthat would be supported for use on a Snow device. Currently, supported AMIs are based on the Amazon Linux-2, Ubuntu 20.04 LTS - Focal, or Ubuntu 22.04 LTS - Jammy images, available on the Amazon Web Services Marketplace. Ubuntu 16.04 LTS - Xenial (HVM) images are no longer supported in the Market, but still supported for use on devices through Amazon EC2 VM Import/Export and running locally in AMIs.
|
160
160
|
*/
|
161
161
|
listCompatibleImages(params: Snowball.Types.ListCompatibleImagesRequest, callback?: (err: AWSError, data: Snowball.Types.ListCompatibleImagesResult) => void): Request<Snowball.Types.ListCompatibleImagesResult, AWSError>;
|
162
162
|
/**
|
163
|
-
* This action returns a list of the different Amazon EC2 Amazon Machine Images (AMIs) that are owned by your Amazon Web Services accountthat would be supported for use on a Snow device. Currently, supported AMIs are based on the Amazon Linux-2, Ubuntu 20.04 LTS - Focal, or Ubuntu 22.04 LTS - Jammy images, available on the Amazon Web Services Marketplace. Ubuntu 16.04 LTS - Xenial (HVM) images are no longer supported in the Market, but still supported for use on devices through Amazon EC2 VM Import/Export and running locally in AMIs.
|
163
|
+
* This action returns a list of the different Amazon EC2-compatible Amazon Machine Images (AMIs) that are owned by your Amazon Web Services accountthat would be supported for use on a Snow device. Currently, supported AMIs are based on the Amazon Linux-2, Ubuntu 20.04 LTS - Focal, or Ubuntu 22.04 LTS - Jammy images, available on the Amazon Web Services Marketplace. Ubuntu 16.04 LTS - Xenial (HVM) images are no longer supported in the Market, but still supported for use on devices through Amazon EC2 VM Import/Export and running locally in AMIs.
|
164
164
|
*/
|
165
165
|
listCompatibleImages(callback?: (err: AWSError, data: Snowball.Types.ListCompatibleImagesResult) => void): Request<Snowball.Types.ListCompatibleImagesResult, AWSError>;
|
166
166
|
/**
|
@@ -179,6 +179,14 @@ declare class Snowball extends Service {
|
|
179
179
|
* Lists all long-term pricing types.
|
180
180
|
*/
|
181
181
|
listLongTermPricing(callback?: (err: AWSError, data: Snowball.Types.ListLongTermPricingResult) => void): Request<Snowball.Types.ListLongTermPricingResult, AWSError>;
|
182
|
+
/**
|
183
|
+
* A list of locations from which the customer can choose to pickup a device.
|
184
|
+
*/
|
185
|
+
listPickupLocations(params: Snowball.Types.ListPickupLocationsRequest, callback?: (err: AWSError, data: Snowball.Types.ListPickupLocationsResult) => void): Request<Snowball.Types.ListPickupLocationsResult, AWSError>;
|
186
|
+
/**
|
187
|
+
* A list of locations from which the customer can choose to pickup a device.
|
188
|
+
*/
|
189
|
+
listPickupLocations(callback?: (err: AWSError, data: Snowball.Types.ListPickupLocationsResult) => void): Request<Snowball.Types.ListPickupLocationsResult, AWSError>;
|
182
190
|
/**
|
183
191
|
* Lists all supported versions for Snow on-device services. Returns an array of ServiceVersion object containing the supported versions for a particular service.
|
184
192
|
*/
|
@@ -278,9 +286,14 @@ declare namespace Snowball {
|
|
278
286
|
* If the address you are creating is a primary address, then set this option to true. This field is not supported in most regions.
|
279
287
|
*/
|
280
288
|
IsRestricted?: Boolean;
|
289
|
+
/**
|
290
|
+
* Differentiates between delivery address and pickup address in the customer account. Provided at job creation.
|
291
|
+
*/
|
292
|
+
Type?: AddressType;
|
281
293
|
}
|
282
294
|
export type AddressId = string;
|
283
295
|
export type AddressList = Address[];
|
296
|
+
export type AddressType = "CUST_PICKUP"|"AWS_SHIP"|string;
|
284
297
|
export type AmiId = string;
|
285
298
|
export type Boolean = boolean;
|
286
299
|
export interface CancelClusterRequest {
|
@@ -547,13 +560,21 @@ declare namespace Snowball {
|
|
547
560
|
*/
|
548
561
|
DeviceConfiguration?: DeviceConfiguration;
|
549
562
|
/**
|
550
|
-
* Allows you to securely operate and manage Snowcone devices remotely from outside of your internal network. When set to INSTALLED_AUTOSTART, remote management will automatically be available when the device arrives at your location. Otherwise, you need to use the Snowball
|
563
|
+
* Allows you to securely operate and manage Snowcone devices remotely from outside of your internal network. When set to INSTALLED_AUTOSTART, remote management will automatically be available when the device arrives at your location. Otherwise, you need to use the Snowball Edge client to manage the device. When set to NOT_INSTALLED, remote management will not be available on the device.
|
551
564
|
*/
|
552
565
|
RemoteManagement?: RemoteManagement;
|
553
566
|
/**
|
554
567
|
* The ID of the long-term pricing type for the device.
|
555
568
|
*/
|
556
569
|
LongTermPricingId?: LongTermPricingId;
|
570
|
+
/**
|
571
|
+
* The highest impact level of data that will be stored or processed on the device, provided at job creation.
|
572
|
+
*/
|
573
|
+
ImpactLevel?: ImpactLevel;
|
574
|
+
/**
|
575
|
+
* Information identifying the person picking up the device.
|
576
|
+
*/
|
577
|
+
PickupDetails?: PickupDetails;
|
557
578
|
}
|
558
579
|
export interface CreateJobResult {
|
559
580
|
/**
|
@@ -573,7 +594,7 @@ declare namespace Snowball {
|
|
573
594
|
/**
|
574
595
|
* The type of Snow Family devices to use for the long-term pricing job.
|
575
596
|
*/
|
576
|
-
SnowballType
|
597
|
+
SnowballType: SnowballType;
|
577
598
|
}
|
578
599
|
export interface CreateLongTermPricingResult {
|
579
600
|
/**
|
@@ -712,6 +733,7 @@ declare namespace Snowball {
|
|
712
733
|
*/
|
713
734
|
SnowconeDeviceConfiguration?: SnowconeDeviceConfiguration;
|
714
735
|
}
|
736
|
+
export type DevicePickupId = string;
|
715
737
|
export type DeviceServiceName = "NFS_ON_DEVICE_SERVICE"|"S3_ON_DEVICE_SERVICE"|string;
|
716
738
|
export interface EKSOnDeviceServiceConfiguration {
|
717
739
|
/**
|
@@ -734,6 +756,7 @@ declare namespace Snowball {
|
|
734
756
|
SnowballAmiId?: String;
|
735
757
|
}
|
736
758
|
export type Ec2AmiResourceList = Ec2AmiResource[];
|
759
|
+
export type Email = string;
|
737
760
|
export interface EventTriggerDefinition {
|
738
761
|
/**
|
739
762
|
* The Amazon Resource Name (ARN) for any local Amazon S3 resource that is an Lambda function's event trigger associated with this job.
|
@@ -796,6 +819,7 @@ declare namespace Snowball {
|
|
796
819
|
*/
|
797
820
|
GSTIN?: GSTIN;
|
798
821
|
}
|
822
|
+
export type ImpactLevel = "IL2"|"IL4"|"IL5"|"IL6"|"IL99"|string;
|
799
823
|
export type InitialClusterSize = number;
|
800
824
|
export type Integer = number;
|
801
825
|
export type JavaBoolean = boolean;
|
@@ -931,6 +955,18 @@ declare namespace Snowball {
|
|
931
955
|
* Represents metadata and configuration settings for services on an Amazon Web Services Snow Family device.
|
932
956
|
*/
|
933
957
|
OnDeviceServiceConfiguration?: OnDeviceServiceConfiguration;
|
958
|
+
/**
|
959
|
+
* The highest impact level of data that will be stored or processed on the device, provided at job creation.
|
960
|
+
*/
|
961
|
+
ImpactLevel?: ImpactLevel;
|
962
|
+
/**
|
963
|
+
* Information identifying the person picking up the device.
|
964
|
+
*/
|
965
|
+
PickupDetails?: PickupDetails;
|
966
|
+
/**
|
967
|
+
* Unique ID associated with a device.
|
968
|
+
*/
|
969
|
+
SnowballId?: String;
|
934
970
|
}
|
935
971
|
export type JobMetadataList = JobMetadata[];
|
936
972
|
export interface JobResource {
|
@@ -1077,6 +1113,26 @@ declare namespace Snowball {
|
|
1077
1113
|
*/
|
1078
1114
|
NextToken?: String;
|
1079
1115
|
}
|
1116
|
+
export interface ListPickupLocationsRequest {
|
1117
|
+
/**
|
1118
|
+
* The maximum number of locations to list per page.
|
1119
|
+
*/
|
1120
|
+
MaxResults?: ListLimit;
|
1121
|
+
/**
|
1122
|
+
* HTTP requests are stateless. To identify what object comes "next" in the list of ListPickupLocationsRequest objects, you have the option of specifying NextToken as the starting point for your returned list.
|
1123
|
+
*/
|
1124
|
+
NextToken?: String;
|
1125
|
+
}
|
1126
|
+
export interface ListPickupLocationsResult {
|
1127
|
+
/**
|
1128
|
+
* Information about the address of pickup locations.
|
1129
|
+
*/
|
1130
|
+
Addresses?: AddressList;
|
1131
|
+
/**
|
1132
|
+
* HTTP requests are stateless. To identify what object comes "next" in the list of ListPickupLocationsResult objects, you have the option of specifying NextToken as the starting point for your returned list.
|
1133
|
+
*/
|
1134
|
+
NextToken?: String;
|
1135
|
+
}
|
1080
1136
|
export interface ListServiceVersionsRequest {
|
1081
1137
|
/**
|
1082
1138
|
* The name of the service for which you're requesting supported versions.
|
@@ -1185,6 +1241,10 @@ declare namespace Snowball {
|
|
1185
1241
|
* Any change in job state will trigger a notification for this job.
|
1186
1242
|
*/
|
1187
1243
|
NotifyAll?: Boolean;
|
1244
|
+
/**
|
1245
|
+
* Used to send SNS notifications for the person picking up the device (identified during job creation).
|
1246
|
+
*/
|
1247
|
+
DevicePickupSnsTopicARN?: SnsTopicARN;
|
1188
1248
|
}
|
1189
1249
|
export interface OnDeviceServiceConfiguration {
|
1190
1250
|
/**
|
@@ -1204,7 +1264,38 @@ declare namespace Snowball {
|
|
1204
1264
|
*/
|
1205
1265
|
S3OnDeviceService?: S3OnDeviceServiceConfiguration;
|
1206
1266
|
}
|
1207
|
-
export type
|
1267
|
+
export type PhoneNumber = string;
|
1268
|
+
export interface PickupDetails {
|
1269
|
+
/**
|
1270
|
+
* The name of the person picking up the device.
|
1271
|
+
*/
|
1272
|
+
Name?: String;
|
1273
|
+
/**
|
1274
|
+
* The phone number of the person picking up the device.
|
1275
|
+
*/
|
1276
|
+
PhoneNumber?: PhoneNumber;
|
1277
|
+
/**
|
1278
|
+
* The email address of the person picking up the device.
|
1279
|
+
*/
|
1280
|
+
Email?: Email;
|
1281
|
+
/**
|
1282
|
+
* The number on the credential identifying the person picking up the device.
|
1283
|
+
*/
|
1284
|
+
IdentificationNumber?: String;
|
1285
|
+
/**
|
1286
|
+
* Expiration date of the credential identifying the person picking up the device.
|
1287
|
+
*/
|
1288
|
+
IdentificationExpirationDate?: Timestamp;
|
1289
|
+
/**
|
1290
|
+
* Organization that issued the credential identifying the person picking up the device.
|
1291
|
+
*/
|
1292
|
+
IdentificationIssuingOrg?: String;
|
1293
|
+
/**
|
1294
|
+
* The unique ID for a device that will be picked up.
|
1295
|
+
*/
|
1296
|
+
DevicePickupId?: DevicePickupId;
|
1297
|
+
}
|
1298
|
+
export type RemoteManagement = "INSTALLED_ONLY"|"INSTALLED_AUTOSTART"|"NOT_INSTALLED"|string;
|
1208
1299
|
export type ResourceARN = string;
|
1209
1300
|
export type RoleARN = string;
|
1210
1301
|
export interface S3OnDeviceServiceConfiguration {
|
@@ -1277,8 +1368,8 @@ declare namespace Snowball {
|
|
1277
1368
|
}
|
1278
1369
|
export type ShippingLabelStatus = "InProgress"|"TimedOut"|"Succeeded"|"Failed"|string;
|
1279
1370
|
export type ShippingOption = "SECOND_DAY"|"NEXT_DAY"|"EXPRESS"|"STANDARD"|string;
|
1280
|
-
export type SnowballCapacity = "T50"|"T80"|"T100"|"T42"|"T98"|"T8"|"T14"|"T32"|"NoPreference"|"T240"|string;
|
1281
|
-
export type SnowballType = "STANDARD"|"EDGE"|"EDGE_C"|"EDGE_CG"|"EDGE_S"|"SNC1_HDD"|"SNC1_SSD"|"V3_5C"|"V3_5S"|string;
|
1371
|
+
export type SnowballCapacity = "T50"|"T80"|"T100"|"T42"|"T98"|"T8"|"T14"|"T32"|"NoPreference"|"T240"|"T13"|string;
|
1372
|
+
export type SnowballType = "STANDARD"|"EDGE"|"EDGE_C"|"EDGE_CG"|"EDGE_S"|"SNC1_HDD"|"SNC1_SSD"|"V3_5C"|"V3_5S"|"RACK_5U_C"|string;
|
1282
1373
|
export interface SnowconeDeviceConfiguration {
|
1283
1374
|
/**
|
1284
1375
|
* Configures the wireless connection for the Snowcone device.
|
@@ -1396,6 +1487,7 @@ declare namespace Snowball {
|
|
1396
1487
|
* The updated ID for the forwarding address for a job. This field is not supported in most regions.
|
1397
1488
|
*/
|
1398
1489
|
ForwardingAddressId?: AddressId;
|
1490
|
+
PickupDetails?: PickupDetails;
|
1399
1491
|
}
|
1400
1492
|
export interface UpdateJobResult {
|
1401
1493
|
}
|
package/clients/ssmsap.d.ts
CHANGED
@@ -123,6 +123,14 @@ declare class SsmSap extends Service {
|
|
123
123
|
* Register an SAP application with AWS Systems Manager for SAP. You must meet the following requirements before registering. The SAP application you want to register with AWS Systems Manager for SAP is running on Amazon EC2. AWS Systems Manager Agent must be setup on an Amazon EC2 instance along with the required IAM permissions. Amazon EC2 instance(s) must have access to the secrets created in AWS Secrets Manager to manage SAP applications and components.
|
124
124
|
*/
|
125
125
|
registerApplication(callback?: (err: AWSError, data: SsmSap.Types.RegisterApplicationOutput) => void): Request<SsmSap.Types.RegisterApplicationOutput, AWSError>;
|
126
|
+
/**
|
127
|
+
* Refreshes a registered application.
|
128
|
+
*/
|
129
|
+
startApplicationRefresh(params: SsmSap.Types.StartApplicationRefreshInput, callback?: (err: AWSError, data: SsmSap.Types.StartApplicationRefreshOutput) => void): Request<SsmSap.Types.StartApplicationRefreshOutput, AWSError>;
|
130
|
+
/**
|
131
|
+
* Refreshes a registered application.
|
132
|
+
*/
|
133
|
+
startApplicationRefresh(callback?: (err: AWSError, data: SsmSap.Types.StartApplicationRefreshOutput) => void): Request<SsmSap.Types.StartApplicationRefreshOutput, AWSError>;
|
126
134
|
/**
|
127
135
|
* Creates tag for a resource by specifying the ARN.
|
128
136
|
*/
|
@@ -171,6 +179,10 @@ declare namespace SsmSap {
|
|
171
179
|
* The status of the application.
|
172
180
|
*/
|
173
181
|
Status?: ApplicationStatus;
|
182
|
+
/**
|
183
|
+
* The latest discovery result for the application.
|
184
|
+
*/
|
185
|
+
DiscoveryStatus?: ApplicationDiscoveryStatus;
|
174
186
|
/**
|
175
187
|
* The components of the application.
|
176
188
|
*/
|
@@ -199,6 +211,7 @@ declare namespace SsmSap {
|
|
199
211
|
SecretId: SecretId;
|
200
212
|
}
|
201
213
|
export type ApplicationCredentialList = ApplicationCredential[];
|
214
|
+
export type ApplicationDiscoveryStatus = "SUCCESS"|"REGISTRATION_FAILED"|"REFRESH_FAILED"|"REGISTERING"|"DELETING"|string;
|
202
215
|
export type ApplicationId = string;
|
203
216
|
export type ApplicationStatus = "ACTIVATED"|"STARTING"|"STOPPED"|"STOPPING"|"FAILED"|"REGISTERING"|"DELETING"|"UNKNOWN"|string;
|
204
217
|
export interface ApplicationSummary {
|
@@ -222,11 +235,46 @@ declare namespace SsmSap {
|
|
222
235
|
export type ApplicationSummaryList = ApplicationSummary[];
|
223
236
|
export type ApplicationType = "HANA"|string;
|
224
237
|
export type Arn = string;
|
238
|
+
export interface AssociatedHost {
|
239
|
+
/**
|
240
|
+
* The name of the host.
|
241
|
+
*/
|
242
|
+
Hostname?: String;
|
243
|
+
/**
|
244
|
+
* The ID of the Amazon EC2 instance.
|
245
|
+
*/
|
246
|
+
Ec2InstanceId?: String;
|
247
|
+
/**
|
248
|
+
* The version of the operating system.
|
249
|
+
*/
|
250
|
+
OsVersion?: String;
|
251
|
+
}
|
252
|
+
export interface BackintConfig {
|
253
|
+
/**
|
254
|
+
* AWS service for your database backup.
|
255
|
+
*/
|
256
|
+
BackintMode: BackintMode;
|
257
|
+
/**
|
258
|
+
*
|
259
|
+
*/
|
260
|
+
EnsureNoBackupInProcess: Boolean;
|
261
|
+
}
|
262
|
+
export type BackintMode = "AWSBackup"|string;
|
263
|
+
export type Boolean = boolean;
|
264
|
+
export type ClusterStatus = "ONLINE"|"STANDBY"|"MAINTENANCE"|"OFFLINE"|"NONE"|string;
|
225
265
|
export interface Component {
|
226
266
|
/**
|
227
267
|
* The ID of the component.
|
228
268
|
*/
|
229
269
|
ComponentId?: ComponentId;
|
270
|
+
/**
|
271
|
+
* The parent component of a highly available environment. For example, in a highly available SAP on AWS workload, the parent component consists of the entire setup, including the child components.
|
272
|
+
*/
|
273
|
+
ParentComponent?: ComponentId;
|
274
|
+
/**
|
275
|
+
* The child components of a highly available environment. For example, in a highly available SAP on AWS workload, the child component consists of the primary and secondar instances.
|
276
|
+
*/
|
277
|
+
ChildComponents?: ComponentIdList;
|
230
278
|
/**
|
231
279
|
* The ID of the application.
|
232
280
|
*/
|
@@ -239,6 +287,26 @@ declare namespace SsmSap {
|
|
239
287
|
* The status of the component.
|
240
288
|
*/
|
241
289
|
Status?: ComponentStatus;
|
290
|
+
/**
|
291
|
+
* The hostname of the component.
|
292
|
+
*/
|
293
|
+
SapHostname?: String;
|
294
|
+
/**
|
295
|
+
* The kernel version of the component.
|
296
|
+
*/
|
297
|
+
SapKernelVersion?: String;
|
298
|
+
/**
|
299
|
+
* The SAP HANA version of the component.
|
300
|
+
*/
|
301
|
+
HdbVersion?: String;
|
302
|
+
/**
|
303
|
+
* Details of the SAP HANA system replication for the component.
|
304
|
+
*/
|
305
|
+
Resilience?: Resilience;
|
306
|
+
/**
|
307
|
+
* The associated host of the component.
|
308
|
+
*/
|
309
|
+
AssociatedHost?: AssociatedHost;
|
242
310
|
/**
|
243
311
|
* The SAP HANA databases of the component.
|
244
312
|
*/
|
@@ -255,10 +323,14 @@ declare namespace SsmSap {
|
|
255
323
|
* The time at which the component was last updated.
|
256
324
|
*/
|
257
325
|
LastUpdated?: Timestamp;
|
326
|
+
/**
|
327
|
+
* The Amazon Resource Name (ARN) of the component.
|
328
|
+
*/
|
329
|
+
Arn?: SsmSapArn;
|
258
330
|
}
|
259
331
|
export type ComponentId = string;
|
260
332
|
export type ComponentIdList = ComponentId[];
|
261
|
-
export type ComponentStatus = "ACTIVATED"|string;
|
333
|
+
export type ComponentStatus = "ACTIVATED"|"STARTING"|"STOPPED"|"STOPPING"|"RUNNING"|"RUNNING_WITH_ERROR"|"UNDEFINED"|string;
|
262
334
|
export interface ComponentSummary {
|
263
335
|
/**
|
264
336
|
* The ID of the application.
|
@@ -276,9 +348,13 @@ declare namespace SsmSap {
|
|
276
348
|
* The tags of the component.
|
277
349
|
*/
|
278
350
|
Tags?: TagMap;
|
351
|
+
/**
|
352
|
+
* The Amazon Resource Name (ARN) of the component summary.
|
353
|
+
*/
|
354
|
+
Arn?: SsmSapArn;
|
279
355
|
}
|
280
356
|
export type ComponentSummaryList = ComponentSummary[];
|
281
|
-
export type ComponentType = "HANA"|string;
|
357
|
+
export type ComponentType = "HANA"|"HANA_NODE"|string;
|
282
358
|
export type CredentialType = "ADMIN"|string;
|
283
359
|
export interface Database {
|
284
360
|
/**
|
@@ -329,7 +405,7 @@ declare namespace SsmSap {
|
|
329
405
|
export type DatabaseId = string;
|
330
406
|
export type DatabaseIdList = DatabaseId[];
|
331
407
|
export type DatabaseName = string;
|
332
|
-
export type DatabaseStatus = "RUNNING"|"STARTING"|"STOPPED"|"WARNING"|"UNKNOWN"|string;
|
408
|
+
export type DatabaseStatus = "RUNNING"|"STARTING"|"STOPPED"|"WARNING"|"UNKNOWN"|"ERROR"|string;
|
333
409
|
export interface DatabaseSummary {
|
334
410
|
/**
|
335
411
|
* The ID of the application.
|
@@ -443,6 +519,10 @@ declare namespace SsmSap {
|
|
443
519
|
* The component of an application registered with AWS Systems Manager for SAP.
|
444
520
|
*/
|
445
521
|
Component?: Component;
|
522
|
+
/**
|
523
|
+
* The tags of a component.
|
524
|
+
*/
|
525
|
+
Tags?: TagMap;
|
446
526
|
}
|
447
527
|
export interface GetDatabaseInput {
|
448
528
|
/**
|
@@ -505,18 +585,26 @@ declare namespace SsmSap {
|
|
505
585
|
* The name of the Dedicated Host.
|
506
586
|
*/
|
507
587
|
HostName?: String;
|
508
|
-
/**
|
509
|
-
* The role of the Dedicated Host.
|
510
|
-
*/
|
511
|
-
HostRole?: HostRole;
|
512
588
|
/**
|
513
589
|
* The IP address of the Dedicated Host.
|
514
590
|
*/
|
515
591
|
HostIp?: String;
|
592
|
+
/**
|
593
|
+
* The ID of Amazon EC2 instance.
|
594
|
+
*/
|
595
|
+
EC2InstanceId?: String;
|
516
596
|
/**
|
517
597
|
* The instance ID of the instance on the Dedicated Host.
|
518
598
|
*/
|
519
599
|
InstanceId?: String;
|
600
|
+
/**
|
601
|
+
* The role of the Dedicated Host.
|
602
|
+
*/
|
603
|
+
HostRole?: HostRole;
|
604
|
+
/**
|
605
|
+
* The version of the operating system.
|
606
|
+
*/
|
607
|
+
OsVersion?: String;
|
520
608
|
}
|
521
609
|
export type HostList = Host[];
|
522
610
|
export type HostRole = "LEADER"|"WORKER"|"STANDBY"|"UNKNOWN"|string;
|
@@ -686,6 +774,7 @@ declare namespace SsmSap {
|
|
686
774
|
export type OperationId = string;
|
687
775
|
export type OperationIdList = OperationId[];
|
688
776
|
export type OperationList = Operation[];
|
777
|
+
export type OperationMode = "PRIMARY"|"LOGREPLAY"|"DELTA_DATASHIPPING"|"LOGREPLAY_READACCESS"|"NONE"|string;
|
689
778
|
export type OperationProperties = {[key: string]: String};
|
690
779
|
export type OperationStatus = "INPROGRESS"|"SUCCESS"|"ERROR"|string;
|
691
780
|
export type OperationType = string;
|
@@ -750,12 +839,43 @@ declare namespace SsmSap {
|
|
750
839
|
*/
|
751
840
|
OperationId?: OperationId;
|
752
841
|
}
|
842
|
+
export type ReplicationMode = "PRIMARY"|"NONE"|"SYNC"|"SYNCMEM"|"ASYNC"|string;
|
843
|
+
export interface Resilience {
|
844
|
+
/**
|
845
|
+
* The tier of the component.
|
846
|
+
*/
|
847
|
+
HsrTier?: String;
|
848
|
+
/**
|
849
|
+
* The replication mode of the component.
|
850
|
+
*/
|
851
|
+
HsrReplicationMode?: ReplicationMode;
|
852
|
+
/**
|
853
|
+
* The operation mode of the component.
|
854
|
+
*/
|
855
|
+
HsrOperationMode?: OperationMode;
|
856
|
+
/**
|
857
|
+
* The cluster status of the component.
|
858
|
+
*/
|
859
|
+
ClusterStatus?: ClusterStatus;
|
860
|
+
}
|
753
861
|
export type ResourceId = string;
|
754
862
|
export type ResourceType = string;
|
755
863
|
export type SAPInstanceNumber = string;
|
756
864
|
export type SID = string;
|
757
865
|
export type SecretId = string;
|
758
866
|
export type SsmSapArn = string;
|
867
|
+
export interface StartApplicationRefreshInput {
|
868
|
+
/**
|
869
|
+
* The ID of the application.
|
870
|
+
*/
|
871
|
+
ApplicationId: ApplicationId;
|
872
|
+
}
|
873
|
+
export interface StartApplicationRefreshOutput {
|
874
|
+
/**
|
875
|
+
* The ID of the operation.
|
876
|
+
*/
|
877
|
+
OperationId?: OperationId;
|
878
|
+
}
|
759
879
|
export type String = string;
|
760
880
|
export type TagKey = string;
|
761
881
|
export type TagKeyList = TagKey[];
|
@@ -799,6 +919,10 @@ declare namespace SsmSap {
|
|
799
919
|
* The credentials to be removed.
|
800
920
|
*/
|
801
921
|
CredentialsToRemove?: ApplicationCredentialList;
|
922
|
+
/**
|
923
|
+
* Installation of AWS Backint Agent for SAP HANA.
|
924
|
+
*/
|
925
|
+
Backint?: BackintConfig;
|
802
926
|
}
|
803
927
|
export interface UpdateApplicationSettingsOutput {
|
804
928
|
/**
|
package/clients/translate.d.ts
CHANGED
@@ -255,7 +255,7 @@ declare namespace Translate {
|
|
255
255
|
*/
|
256
256
|
Content: DocumentContent;
|
257
257
|
/**
|
258
|
-
* Describes the format of the document. You can specify one of the following:
|
258
|
+
* Describes the format of the document. You can specify one of the following: text/html - The input data consists of HTML content. Amazon Translate translates only the text in the HTML element. text/plain - The input data consists of unformatted text. Amazon Translate translates every character in the content. application/vnd.openxmlformats-officedocument.wordprocessingml.document - The input data consists of a Word document (.docx).
|
259
259
|
*/
|
260
260
|
ContentType: ContentType;
|
261
261
|
}
|
package/clients/wafv2.d.ts
CHANGED
@@ -686,7 +686,7 @@ declare namespace WAFV2 {
|
|
686
686
|
export type CookieNames = SingleCookieName[];
|
687
687
|
export interface Cookies {
|
688
688
|
/**
|
689
|
-
* The filter to use to identify the subset of cookies to inspect in a web request. You must specify exactly one setting: either All, IncludedCookies, or ExcludedCookies. Example JSON: "MatchPattern": { "IncludedCookies":
|
689
|
+
* The filter to use to identify the subset of cookies to inspect in a web request. You must specify exactly one setting: either All, IncludedCookies, or ExcludedCookies. Example JSON: "MatchPattern": { "IncludedCookies": [ "session-id-time", "session-id" ] }
|
690
690
|
*/
|
691
691
|
MatchPattern: CookieMatchPattern;
|
692
692
|
/**
|
@@ -1619,7 +1619,7 @@ declare namespace WAFV2 {
|
|
1619
1619
|
export type HeaderValue = string;
|
1620
1620
|
export interface Headers {
|
1621
1621
|
/**
|
1622
|
-
* The filter to use to identify the subset of headers to inspect in a web request. You must specify exactly one setting: either All, IncludedHeaders, or ExcludedHeaders. Example JSON: "MatchPattern": { "ExcludedHeaders":
|
1622
|
+
* The filter to use to identify the subset of headers to inspect in a web request. You must specify exactly one setting: either All, IncludedHeaders, or ExcludedHeaders. Example JSON: "MatchPattern": { "ExcludedHeaders": [ "KeyToExclude1", "KeyToExclude2" ] }
|
1623
1623
|
*/
|
1624
1624
|
MatchPattern: HeaderMatchPattern;
|
1625
1625
|
/**
|
@@ -2513,6 +2513,10 @@ declare namespace WAFV2 {
|
|
2513
2513
|
* Use the specified label namespace as an aggregate key. Each distinct fully qualified label name that has the specified label namespace contributes to the aggregation instance. If you use just one label namespace as your custom key, then each label name fully defines an aggregation instance. This uses only labels that have been added to the request by rules that are evaluated before this rate-based rule in the web ACL. For information about label namespaces and names, see Label syntax and naming requirements in the WAF Developer Guide.
|
2514
2514
|
*/
|
2515
2515
|
LabelNamespace?: RateLimitLabelNamespace;
|
2516
|
+
/**
|
2517
|
+
* Use the request's URI path as an aggregate key. Each distinct URI path contributes to the aggregation instance. If you use just the URI path as your custom key, then each URI path fully defines an aggregation instance.
|
2518
|
+
*/
|
2519
|
+
UriPath?: RateLimitUriPath;
|
2516
2520
|
}
|
2517
2521
|
export type RateBasedStatementCustomKeys = RateBasedStatementCustomKey[];
|
2518
2522
|
export interface RateBasedStatementManagedKeysIPSet {
|
@@ -2574,6 +2578,12 @@ declare namespace WAFV2 {
|
|
2574
2578
|
*/
|
2575
2579
|
TextTransformations: TextTransformations;
|
2576
2580
|
}
|
2581
|
+
export interface RateLimitUriPath {
|
2582
|
+
/**
|
2583
|
+
* Text transformations eliminate some of the unusual formatting that attackers use in web requests in an effort to bypass detection. Text transformations are used in rule match statements, to transform the FieldToMatch request component before inspecting it, and they're used in rate-based rule statements, to transform request components before using them as custom aggregation keys. If you specify one or more transformations to apply, WAF performs all transformations on the specified content, starting from the lowest priority setting, and then uses the component contents.
|
2584
|
+
*/
|
2585
|
+
TextTransformations: TextTransformations;
|
2586
|
+
}
|
2577
2587
|
export type RedactedFields = FieldToMatch[];
|
2578
2588
|
export interface Regex {
|
2579
2589
|
/**
|