cdk-comprehend-s3olap 2.0.95 → 2.0.97
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 +3 -3
- 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 +10 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/amplifyuibuilder-2021-08-11.min.json +651 -18
- package/node_modules/aws-sdk/apis/amplifyuibuilder-2021-08-11.paginators.json +11 -0
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1377 -1108
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +510 -494
- package/node_modules/aws-sdk/clients/amplifyuibuilder.d.ts +632 -0
- package/node_modules/aws-sdk/clients/dynamodb.d.ts +7 -7
- package/node_modules/aws-sdk/clients/ec2.d.ts +267 -3
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +32 -10
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +24 -11
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +51 -25
- package/node_modules/aws-sdk/dist/aws-sdk.js +1380 -1111
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +70 -70
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/dynamodb/document_client.d.ts +3 -3
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/is-callable/.editorconfig +5 -0
- package/node_modules/is-callable/CHANGELOG.md +12 -0
- package/node_modules/is-callable/README.md +13 -0
- package/node_modules/is-callable/index.js +23 -10
- package/node_modules/is-callable/package.json +1 -1
- package/node_modules/is-callable/test/index.js +40 -4
- package/package.json +3 -3
@@ -351,19 +351,19 @@ declare class DynamoDB extends DynamoDBCustomizations {
|
|
351
351
|
*/
|
352
352
|
tagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
353
353
|
/**
|
354
|
-
* TransactGetItems is a synchronous operation that atomically retrieves multiple items from one or more tables (but not from indexes) in a single account and Region. A TransactGetItems call can contain up to
|
354
|
+
* TransactGetItems is a synchronous operation that atomically retrieves multiple items from one or more tables (but not from indexes) in a single account and Region. A TransactGetItems call can contain up to 100 TransactGetItem objects, each of which contains a Get structure that specifies an item to retrieve from a table in the account and Region. A call to TransactGetItems cannot retrieve items from tables in more than one Amazon Web Services account or Region. The aggregate size of the items in the transaction cannot exceed 4 MB. DynamoDB rejects the entire TransactGetItems request if any of the following is true: A conflicting operation is in the process of updating an item to be read. There is insufficient provisioned capacity for the transaction to be completed. There is a user error, such as an invalid data format. The aggregate size of the items in the transaction cannot exceed 4 MB.
|
355
355
|
*/
|
356
356
|
transactGetItems(params: DynamoDB.Types.TransactGetItemsInput, callback?: (err: AWSError, data: DynamoDB.Types.TransactGetItemsOutput) => void): Request<DynamoDB.Types.TransactGetItemsOutput, AWSError>;
|
357
357
|
/**
|
358
|
-
* TransactGetItems is a synchronous operation that atomically retrieves multiple items from one or more tables (but not from indexes) in a single account and Region. A TransactGetItems call can contain up to
|
358
|
+
* TransactGetItems is a synchronous operation that atomically retrieves multiple items from one or more tables (but not from indexes) in a single account and Region. A TransactGetItems call can contain up to 100 TransactGetItem objects, each of which contains a Get structure that specifies an item to retrieve from a table in the account and Region. A call to TransactGetItems cannot retrieve items from tables in more than one Amazon Web Services account or Region. The aggregate size of the items in the transaction cannot exceed 4 MB. DynamoDB rejects the entire TransactGetItems request if any of the following is true: A conflicting operation is in the process of updating an item to be read. There is insufficient provisioned capacity for the transaction to be completed. There is a user error, such as an invalid data format. The aggregate size of the items in the transaction cannot exceed 4 MB.
|
359
359
|
*/
|
360
360
|
transactGetItems(callback?: (err: AWSError, data: DynamoDB.Types.TransactGetItemsOutput) => void): Request<DynamoDB.Types.TransactGetItemsOutput, AWSError>;
|
361
361
|
/**
|
362
|
-
* TransactWriteItems is a synchronous write operation that groups up to
|
362
|
+
* TransactWriteItems is a synchronous write operation that groups up to 100 action requests. These actions can target items in different tables, but not in different Amazon Web Services accounts or Regions, and no two actions can target the same item. For example, you cannot both ConditionCheck and Update the same item. The aggregate size of the items in the transaction cannot exceed 4 MB. The actions are completed atomically so that either all of them succeed, or all of them fail. They are defined by the following objects: Put — Initiates a PutItem operation to write a new item. This structure specifies the primary key of the item to be written, the name of the table to write it in, an optional condition expression that must be satisfied for the write to succeed, a list of the item's attributes, and a field indicating whether to retrieve the item's attributes if the condition is not met. Update — Initiates an UpdateItem operation to update an existing item. This structure specifies the primary key of the item to be updated, the name of the table where it resides, an optional condition expression that must be satisfied for the update to succeed, an expression that defines one or more attributes to be updated, and a field indicating whether to retrieve the item's attributes if the condition is not met. Delete — Initiates a DeleteItem operation to delete an existing item. This structure specifies the primary key of the item to be deleted, the name of the table where it resides, an optional condition expression that must be satisfied for the deletion to succeed, and a field indicating whether to retrieve the item's attributes if the condition is not met. ConditionCheck — Applies a condition to an item that is not being modified by the transaction. This structure specifies the primary key of the item to be checked, the name of the table where it resides, a condition expression that must be satisfied for the transaction to succeed, and a field indicating whether to retrieve the item's attributes if the condition is not met. DynamoDB rejects the entire TransactWriteItems request if any of the following is true: A condition in one of the condition expressions is not met. An ongoing operation is in the process of updating the same item. There is insufficient provisioned capacity for the transaction to be completed. An item size becomes too large (bigger than 400 KB), a local secondary index (LSI) becomes too large, or a similar validation error occurs because of changes made by the transaction. The aggregate size of the items in the transaction exceeds 4 MB. There is a user error, such as an invalid data format.
|
363
363
|
*/
|
364
364
|
transactWriteItems(params: DynamoDB.Types.TransactWriteItemsInput, callback?: (err: AWSError, data: DynamoDB.Types.TransactWriteItemsOutput) => void): Request<DynamoDB.Types.TransactWriteItemsOutput, AWSError>;
|
365
365
|
/**
|
366
|
-
* TransactWriteItems is a synchronous write operation that groups up to
|
366
|
+
* TransactWriteItems is a synchronous write operation that groups up to 100 action requests. These actions can target items in different tables, but not in different Amazon Web Services accounts or Regions, and no two actions can target the same item. For example, you cannot both ConditionCheck and Update the same item. The aggregate size of the items in the transaction cannot exceed 4 MB. The actions are completed atomically so that either all of them succeed, or all of them fail. They are defined by the following objects: Put — Initiates a PutItem operation to write a new item. This structure specifies the primary key of the item to be written, the name of the table to write it in, an optional condition expression that must be satisfied for the write to succeed, a list of the item's attributes, and a field indicating whether to retrieve the item's attributes if the condition is not met. Update — Initiates an UpdateItem operation to update an existing item. This structure specifies the primary key of the item to be updated, the name of the table where it resides, an optional condition expression that must be satisfied for the update to succeed, an expression that defines one or more attributes to be updated, and a field indicating whether to retrieve the item's attributes if the condition is not met. Delete — Initiates a DeleteItem operation to delete an existing item. This structure specifies the primary key of the item to be deleted, the name of the table where it resides, an optional condition expression that must be satisfied for the deletion to succeed, and a field indicating whether to retrieve the item's attributes if the condition is not met. ConditionCheck — Applies a condition to an item that is not being modified by the transaction. This structure specifies the primary key of the item to be checked, the name of the table where it resides, a condition expression that must be satisfied for the transaction to succeed, and a field indicating whether to retrieve the item's attributes if the condition is not met. DynamoDB rejects the entire TransactWriteItems request if any of the following is true: A condition in one of the condition expressions is not met. An ongoing operation is in the process of updating the same item. There is insufficient provisioned capacity for the transaction to be completed. An item size becomes too large (bigger than 400 KB), a local secondary index (LSI) becomes too large, or a similar validation error occurs because of changes made by the transaction. The aggregate size of the items in the transaction exceeds 4 MB. There is a user error, such as an invalid data format.
|
367
367
|
*/
|
368
368
|
transactWriteItems(callback?: (err: AWSError, data: DynamoDB.Types.TransactWriteItemsOutput) => void): Request<DynamoDB.Types.TransactWriteItemsOutput, AWSError>;
|
369
369
|
/**
|
@@ -3459,7 +3459,7 @@ declare namespace DynamoDB {
|
|
3459
3459
|
export type TransactGetItemList = TransactGetItem[];
|
3460
3460
|
export interface TransactGetItemsInput {
|
3461
3461
|
/**
|
3462
|
-
* An ordered array of up to
|
3462
|
+
* An ordered array of up to 100 TransactGetItem objects, each of which contains a Get structure.
|
3463
3463
|
*/
|
3464
3464
|
TransactItems: TransactGetItemList;
|
3465
3465
|
/**
|
@@ -3473,7 +3473,7 @@ declare namespace DynamoDB {
|
|
3473
3473
|
*/
|
3474
3474
|
ConsumedCapacity?: ConsumedCapacityMultiple;
|
3475
3475
|
/**
|
3476
|
-
* An ordered array of up to
|
3476
|
+
* An ordered array of up to 100 ItemResponse objects, each of which corresponds to the TransactGetItem object in the same position in the TransactItems array. Each ItemResponse object contains a Map of the name-value pairs that are the projected attributes of the requested item. If a requested item could not be retrieved, the corresponding ItemResponse object is Null, or if the requested item has no projected attributes, the corresponding ItemResponse object is an empty Map.
|
3477
3477
|
*/
|
3478
3478
|
Responses?: ItemResponseList;
|
3479
3479
|
}
|
@@ -3498,7 +3498,7 @@ declare namespace DynamoDB {
|
|
3498
3498
|
export type TransactWriteItemList = TransactWriteItem[];
|
3499
3499
|
export interface TransactWriteItemsInput {
|
3500
3500
|
/**
|
3501
|
-
* An ordered array of up to
|
3501
|
+
* An ordered array of up to 100 TransactWriteItem objects, each of which contains a ConditionCheck, Put, Update, or Delete object. These can operate on items in different tables, but the tables must reside in the same Amazon Web Services account and Region, and no two of them can operate on the same item.
|
3502
3502
|
*/
|
3503
3503
|
TransactItems: TransactWriteItemList;
|
3504
3504
|
ReturnConsumedCapacity?: ReturnConsumedCapacity;
|
@@ -436,6 +436,22 @@ declare class EC2 extends Service {
|
|
436
436
|
* Adds a route to a network to a Client VPN endpoint. Each Client VPN endpoint has a route table that describes the available destination network routes. Each route in the route table specifies the path for traffic to specific resources or networks.
|
437
437
|
*/
|
438
438
|
createClientVpnRoute(callback?: (err: AWSError, data: EC2.Types.CreateClientVpnRouteResult) => void): Request<EC2.Types.CreateClientVpnRouteResult, AWSError>;
|
439
|
+
/**
|
440
|
+
* Creates a range of customer-owned IP addresses.
|
441
|
+
*/
|
442
|
+
createCoipCidr(params: EC2.Types.CreateCoipCidrRequest, callback?: (err: AWSError, data: EC2.Types.CreateCoipCidrResult) => void): Request<EC2.Types.CreateCoipCidrResult, AWSError>;
|
443
|
+
/**
|
444
|
+
* Creates a range of customer-owned IP addresses.
|
445
|
+
*/
|
446
|
+
createCoipCidr(callback?: (err: AWSError, data: EC2.Types.CreateCoipCidrResult) => void): Request<EC2.Types.CreateCoipCidrResult, AWSError>;
|
447
|
+
/**
|
448
|
+
* Creates a pool of customer-owned IP (CoIP) addresses.
|
449
|
+
*/
|
450
|
+
createCoipPool(params: EC2.Types.CreateCoipPoolRequest, callback?: (err: AWSError, data: EC2.Types.CreateCoipPoolResult) => void): Request<EC2.Types.CreateCoipPoolResult, AWSError>;
|
451
|
+
/**
|
452
|
+
* Creates a pool of customer-owned IP (CoIP) addresses.
|
453
|
+
*/
|
454
|
+
createCoipPool(callback?: (err: AWSError, data: EC2.Types.CreateCoipPoolResult) => void): Request<EC2.Types.CreateCoipPoolResult, AWSError>;
|
439
455
|
/**
|
440
456
|
* Provides information to Amazon Web Services about your customer gateway device. The customer gateway device is the appliance at your end of the VPN connection. You must provide the IP address of the customer gateway device’s external interface. The IP address must be static and can be behind a device performing network address translation (NAT). For devices that use Border Gateway Protocol (BGP), you can also provide the device's BGP Autonomous System Number (ASN). You can use an existing ASN assigned to your network. If you don't have an ASN already, you can use a private ASN. For more information, see Customer gateway options for your Site-to-Site VPN connection in the Amazon Web Services Site-to-Site VPN User Guide. To create more than one customer gateway with the same VPN type, IP address, and BGP ASN, specify a unique device name for each customer gateway. An identical request returns information about the existing customer gateway; it doesn't create a new customer gateway.
|
441
457
|
*/
|
@@ -588,6 +604,22 @@ declare class EC2 extends Service {
|
|
588
604
|
* Creates a static route for the specified local gateway route table. You must specify one of the following targets: LocalGatewayVirtualInterfaceGroupId NetworkInterfaceId
|
589
605
|
*/
|
590
606
|
createLocalGatewayRoute(callback?: (err: AWSError, data: EC2.Types.CreateLocalGatewayRouteResult) => void): Request<EC2.Types.CreateLocalGatewayRouteResult, AWSError>;
|
607
|
+
/**
|
608
|
+
* Creates a local gateway route table.
|
609
|
+
*/
|
610
|
+
createLocalGatewayRouteTable(params: EC2.Types.CreateLocalGatewayRouteTableRequest, callback?: (err: AWSError, data: EC2.Types.CreateLocalGatewayRouteTableResult) => void): Request<EC2.Types.CreateLocalGatewayRouteTableResult, AWSError>;
|
611
|
+
/**
|
612
|
+
* Creates a local gateway route table.
|
613
|
+
*/
|
614
|
+
createLocalGatewayRouteTable(callback?: (err: AWSError, data: EC2.Types.CreateLocalGatewayRouteTableResult) => void): Request<EC2.Types.CreateLocalGatewayRouteTableResult, AWSError>;
|
615
|
+
/**
|
616
|
+
* Creates a local gateway route table virtual interface group association.
|
617
|
+
*/
|
618
|
+
createLocalGatewayRouteTableVirtualInterfaceGroupAssociation(params: EC2.Types.CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest, callback?: (err: AWSError, data: EC2.Types.CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult) => void): Request<EC2.Types.CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult, AWSError>;
|
619
|
+
/**
|
620
|
+
* Creates a local gateway route table virtual interface group association.
|
621
|
+
*/
|
622
|
+
createLocalGatewayRouteTableVirtualInterfaceGroupAssociation(callback?: (err: AWSError, data: EC2.Types.CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult) => void): Request<EC2.Types.CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult, AWSError>;
|
591
623
|
/**
|
592
624
|
* Associates the specified VPC with the specified local gateway route table.
|
593
625
|
*/
|
@@ -996,6 +1028,22 @@ declare class EC2 extends Service {
|
|
996
1028
|
* Deletes a route from a Client VPN endpoint. You can only delete routes that you manually added using the CreateClientVpnRoute action. You cannot delete routes that were automatically added when associating a subnet. To remove routes that have been automatically added, disassociate the target subnet from the Client VPN endpoint.
|
997
1029
|
*/
|
998
1030
|
deleteClientVpnRoute(callback?: (err: AWSError, data: EC2.Types.DeleteClientVpnRouteResult) => void): Request<EC2.Types.DeleteClientVpnRouteResult, AWSError>;
|
1031
|
+
/**
|
1032
|
+
* Deletes a range of customer-owned IP addresses.
|
1033
|
+
*/
|
1034
|
+
deleteCoipCidr(params: EC2.Types.DeleteCoipCidrRequest, callback?: (err: AWSError, data: EC2.Types.DeleteCoipCidrResult) => void): Request<EC2.Types.DeleteCoipCidrResult, AWSError>;
|
1035
|
+
/**
|
1036
|
+
* Deletes a range of customer-owned IP addresses.
|
1037
|
+
*/
|
1038
|
+
deleteCoipCidr(callback?: (err: AWSError, data: EC2.Types.DeleteCoipCidrResult) => void): Request<EC2.Types.DeleteCoipCidrResult, AWSError>;
|
1039
|
+
/**
|
1040
|
+
* Deletes a pool of customer-owned IP (CoIP) addresses.
|
1041
|
+
*/
|
1042
|
+
deleteCoipPool(params: EC2.Types.DeleteCoipPoolRequest, callback?: (err: AWSError, data: EC2.Types.DeleteCoipPoolResult) => void): Request<EC2.Types.DeleteCoipPoolResult, AWSError>;
|
1043
|
+
/**
|
1044
|
+
* Deletes a pool of customer-owned IP (CoIP) addresses.
|
1045
|
+
*/
|
1046
|
+
deleteCoipPool(callback?: (err: AWSError, data: EC2.Types.DeleteCoipPoolResult) => void): Request<EC2.Types.DeleteCoipPoolResult, AWSError>;
|
999
1047
|
/**
|
1000
1048
|
* Deletes the specified customer gateway. You must delete the VPN connection before you can delete the customer gateway.
|
1001
1049
|
*/
|
@@ -1116,6 +1164,22 @@ declare class EC2 extends Service {
|
|
1116
1164
|
* Deletes the specified route from the specified local gateway route table.
|
1117
1165
|
*/
|
1118
1166
|
deleteLocalGatewayRoute(callback?: (err: AWSError, data: EC2.Types.DeleteLocalGatewayRouteResult) => void): Request<EC2.Types.DeleteLocalGatewayRouteResult, AWSError>;
|
1167
|
+
/**
|
1168
|
+
* Deletes a local gateway route table.
|
1169
|
+
*/
|
1170
|
+
deleteLocalGatewayRouteTable(params: EC2.Types.DeleteLocalGatewayRouteTableRequest, callback?: (err: AWSError, data: EC2.Types.DeleteLocalGatewayRouteTableResult) => void): Request<EC2.Types.DeleteLocalGatewayRouteTableResult, AWSError>;
|
1171
|
+
/**
|
1172
|
+
* Deletes a local gateway route table.
|
1173
|
+
*/
|
1174
|
+
deleteLocalGatewayRouteTable(callback?: (err: AWSError, data: EC2.Types.DeleteLocalGatewayRouteTableResult) => void): Request<EC2.Types.DeleteLocalGatewayRouteTableResult, AWSError>;
|
1175
|
+
/**
|
1176
|
+
* Deletes a local gateway route table virtual interface group association.
|
1177
|
+
*/
|
1178
|
+
deleteLocalGatewayRouteTableVirtualInterfaceGroupAssociation(params: EC2.Types.DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest, callback?: (err: AWSError, data: EC2.Types.DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult) => void): Request<EC2.Types.DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult, AWSError>;
|
1179
|
+
/**
|
1180
|
+
* Deletes a local gateway route table virtual interface group association.
|
1181
|
+
*/
|
1182
|
+
deleteLocalGatewayRouteTableVirtualInterfaceGroupAssociation(callback?: (err: AWSError, data: EC2.Types.DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult) => void): Request<EC2.Types.DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult, AWSError>;
|
1119
1183
|
/**
|
1120
1184
|
* Deletes the specified association between a VPC and local gateway route table.
|
1121
1185
|
*/
|
@@ -4820,6 +4884,25 @@ declare namespace EC2 {
|
|
4820
4884
|
*/
|
4821
4885
|
Description?: String;
|
4822
4886
|
}
|
4887
|
+
export interface AddedPrincipal {
|
4888
|
+
/**
|
4889
|
+
* The type of principal.
|
4890
|
+
*/
|
4891
|
+
PrincipalType?: PrincipalType;
|
4892
|
+
/**
|
4893
|
+
* The Amazon Resource Name (ARN) of the principal.
|
4894
|
+
*/
|
4895
|
+
Principal?: String;
|
4896
|
+
/**
|
4897
|
+
* The ID of the service permission.
|
4898
|
+
*/
|
4899
|
+
ServicePermissionId?: String;
|
4900
|
+
/**
|
4901
|
+
* The ID of the service.
|
4902
|
+
*/
|
4903
|
+
ServiceId?: String;
|
4904
|
+
}
|
4905
|
+
export type AddedPrincipalSet = AddedPrincipal[];
|
4823
4906
|
export interface AdditionalDetail {
|
4824
4907
|
/**
|
4825
4908
|
* The information type.
|
@@ -5091,6 +5174,18 @@ declare namespace EC2 {
|
|
5091
5174
|
* The Amazon Resource Name (ARN) of the principal.
|
5092
5175
|
*/
|
5093
5176
|
Principal?: String;
|
5177
|
+
/**
|
5178
|
+
* The ID of the service permission.
|
5179
|
+
*/
|
5180
|
+
ServicePermissionId?: String;
|
5181
|
+
/**
|
5182
|
+
* The tags.
|
5183
|
+
*/
|
5184
|
+
Tags?: TagList;
|
5185
|
+
/**
|
5186
|
+
* The ID of the service.
|
5187
|
+
*/
|
5188
|
+
ServiceId?: String;
|
5094
5189
|
}
|
5095
5190
|
export type AllowedPrincipalSet = AllowedPrincipal[];
|
5096
5191
|
export type AllowsMultipleInstanceTypes = "on"|"off"|string;
|
@@ -7241,6 +7336,20 @@ declare namespace EC2 {
|
|
7241
7336
|
CoIp?: String;
|
7242
7337
|
}
|
7243
7338
|
export type CoipAddressUsageSet = CoipAddressUsage[];
|
7339
|
+
export interface CoipCidr {
|
7340
|
+
/**
|
7341
|
+
* An address range in a customer-owned IP address space.
|
7342
|
+
*/
|
7343
|
+
Cidr?: String;
|
7344
|
+
/**
|
7345
|
+
* The ID of the address pool.
|
7346
|
+
*/
|
7347
|
+
CoipPoolId?: Ipv4PoolCoipId;
|
7348
|
+
/**
|
7349
|
+
* The ID of the local gateway route table.
|
7350
|
+
*/
|
7351
|
+
LocalGatewayRouteTableId?: String;
|
7352
|
+
}
|
7244
7353
|
export interface CoipPool {
|
7245
7354
|
/**
|
7246
7355
|
* The ID of the address pool.
|
@@ -7843,6 +7952,43 @@ declare namespace EC2 {
|
|
7843
7952
|
*/
|
7844
7953
|
Status?: ClientVpnRouteStatus;
|
7845
7954
|
}
|
7955
|
+
export interface CreateCoipCidrRequest {
|
7956
|
+
/**
|
7957
|
+
* A customer-owned IP address range to create.
|
7958
|
+
*/
|
7959
|
+
Cidr: String;
|
7960
|
+
/**
|
7961
|
+
* The ID of the address pool.
|
7962
|
+
*/
|
7963
|
+
CoipPoolId: Ipv4PoolCoipId;
|
7964
|
+
/**
|
7965
|
+
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
7966
|
+
*/
|
7967
|
+
DryRun?: Boolean;
|
7968
|
+
}
|
7969
|
+
export interface CreateCoipCidrResult {
|
7970
|
+
/**
|
7971
|
+
* Information about a range of customer-owned IP addresses.
|
7972
|
+
*/
|
7973
|
+
CoipCidr?: CoipCidr;
|
7974
|
+
}
|
7975
|
+
export interface CreateCoipPoolRequest {
|
7976
|
+
/**
|
7977
|
+
* The ID of the local gateway route table.
|
7978
|
+
*/
|
7979
|
+
LocalGatewayRouteTableId: LocalGatewayRoutetableId;
|
7980
|
+
/**
|
7981
|
+
* The tags to assign to the CoIP address pool.
|
7982
|
+
*/
|
7983
|
+
TagSpecifications?: TagSpecificationList;
|
7984
|
+
/**
|
7985
|
+
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
7986
|
+
*/
|
7987
|
+
DryRun?: Boolean;
|
7988
|
+
}
|
7989
|
+
export interface CreateCoipPoolResult {
|
7990
|
+
CoipPool?: CoipPool;
|
7991
|
+
}
|
7846
7992
|
export interface CreateCustomerGatewayRequest {
|
7847
7993
|
/**
|
7848
7994
|
* For devices that support BGP, the customer gateway's BGP ASN. Default: 65000
|
@@ -8547,6 +8693,48 @@ declare namespace EC2 {
|
|
8547
8693
|
*/
|
8548
8694
|
Route?: LocalGatewayRoute;
|
8549
8695
|
}
|
8696
|
+
export interface CreateLocalGatewayRouteTableRequest {
|
8697
|
+
/**
|
8698
|
+
* The ID of the local gateway.
|
8699
|
+
*/
|
8700
|
+
LocalGatewayId: LocalGatewayId;
|
8701
|
+
/**
|
8702
|
+
* The mode of the local gateway route table.
|
8703
|
+
*/
|
8704
|
+
Mode?: LocalGatewayRouteTableMode;
|
8705
|
+
/**
|
8706
|
+
* The tags assigned to the local gateway route table.
|
8707
|
+
*/
|
8708
|
+
TagSpecifications?: TagSpecificationList;
|
8709
|
+
/**
|
8710
|
+
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
8711
|
+
*/
|
8712
|
+
DryRun?: Boolean;
|
8713
|
+
}
|
8714
|
+
export interface CreateLocalGatewayRouteTableResult {
|
8715
|
+
LocalGatewayRouteTable?: LocalGatewayRouteTable;
|
8716
|
+
}
|
8717
|
+
export interface CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest {
|
8718
|
+
/**
|
8719
|
+
* The ID of the local gateway route table.
|
8720
|
+
*/
|
8721
|
+
LocalGatewayRouteTableId: LocalGatewayRoutetableId;
|
8722
|
+
/**
|
8723
|
+
* The ID of the local gateway route table virtual interface group association.
|
8724
|
+
*/
|
8725
|
+
LocalGatewayVirtualInterfaceGroupId: LocalGatewayVirtualInterfaceGroupId;
|
8726
|
+
/**
|
8727
|
+
* The tags assigned to the local gateway route table virtual interface group association.
|
8728
|
+
*/
|
8729
|
+
TagSpecifications?: TagSpecificationList;
|
8730
|
+
/**
|
8731
|
+
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
8732
|
+
*/
|
8733
|
+
DryRun?: Boolean;
|
8734
|
+
}
|
8735
|
+
export interface CreateLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult {
|
8736
|
+
LocalGatewayRouteTableVirtualInterfaceGroupAssociation?: LocalGatewayRouteTableVirtualInterfaceGroupAssociation;
|
8737
|
+
}
|
8550
8738
|
export interface CreateLocalGatewayRouteTableVpcAssociationRequest {
|
8551
8739
|
/**
|
8552
8740
|
* The ID of the local gateway route table.
|
@@ -10338,6 +10526,39 @@ declare namespace EC2 {
|
|
10338
10526
|
*/
|
10339
10527
|
Status?: ClientVpnRouteStatus;
|
10340
10528
|
}
|
10529
|
+
export interface DeleteCoipCidrRequest {
|
10530
|
+
/**
|
10531
|
+
* A customer-owned IP address range that you want to delete.
|
10532
|
+
*/
|
10533
|
+
Cidr: String;
|
10534
|
+
/**
|
10535
|
+
* The ID of the customer-owned address pool.
|
10536
|
+
*/
|
10537
|
+
CoipPoolId: Ipv4PoolCoipId;
|
10538
|
+
/**
|
10539
|
+
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
10540
|
+
*/
|
10541
|
+
DryRun?: Boolean;
|
10542
|
+
}
|
10543
|
+
export interface DeleteCoipCidrResult {
|
10544
|
+
/**
|
10545
|
+
* Information about a range of customer-owned IP addresses.
|
10546
|
+
*/
|
10547
|
+
CoipCidr?: CoipCidr;
|
10548
|
+
}
|
10549
|
+
export interface DeleteCoipPoolRequest {
|
10550
|
+
/**
|
10551
|
+
* The ID of the CoIP pool that you want to delete.
|
10552
|
+
*/
|
10553
|
+
CoipPoolId: Ipv4PoolCoipId;
|
10554
|
+
/**
|
10555
|
+
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
10556
|
+
*/
|
10557
|
+
DryRun?: Boolean;
|
10558
|
+
}
|
10559
|
+
export interface DeleteCoipPoolResult {
|
10560
|
+
CoipPool?: CoipPool;
|
10561
|
+
}
|
10341
10562
|
export interface DeleteCustomerGatewayRequest {
|
10342
10563
|
/**
|
10343
10564
|
* The ID of the customer gateway.
|
@@ -10665,6 +10886,32 @@ declare namespace EC2 {
|
|
10665
10886
|
*/
|
10666
10887
|
Route?: LocalGatewayRoute;
|
10667
10888
|
}
|
10889
|
+
export interface DeleteLocalGatewayRouteTableRequest {
|
10890
|
+
/**
|
10891
|
+
* The ID of the local gateway route table.
|
10892
|
+
*/
|
10893
|
+
LocalGatewayRouteTableId: LocalGatewayRoutetableId;
|
10894
|
+
/**
|
10895
|
+
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
10896
|
+
*/
|
10897
|
+
DryRun?: Boolean;
|
10898
|
+
}
|
10899
|
+
export interface DeleteLocalGatewayRouteTableResult {
|
10900
|
+
LocalGatewayRouteTable?: LocalGatewayRouteTable;
|
10901
|
+
}
|
10902
|
+
export interface DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationRequest {
|
10903
|
+
/**
|
10904
|
+
* The ID of the local gateway route table virtual interface group association.
|
10905
|
+
*/
|
10906
|
+
LocalGatewayRouteTableVirtualInterfaceGroupAssociationId: LocalGatewayRouteTableVirtualInterfaceGroupAssociationId;
|
10907
|
+
/**
|
10908
|
+
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
10909
|
+
*/
|
10910
|
+
DryRun?: Boolean;
|
10911
|
+
}
|
10912
|
+
export interface DeleteLocalGatewayRouteTableVirtualInterfaceGroupAssociationResult {
|
10913
|
+
LocalGatewayRouteTableVirtualInterfaceGroupAssociation?: LocalGatewayRouteTableVirtualInterfaceGroupAssociation;
|
10914
|
+
}
|
10668
10915
|
export interface DeleteLocalGatewayRouteTableVpcAssociationRequest {
|
10669
10916
|
/**
|
10670
10917
|
* The ID of the association.
|
@@ -23573,6 +23820,7 @@ declare namespace EC2 {
|
|
23573
23820
|
* The mode of the local gateway route table.
|
23574
23821
|
*/
|
23575
23822
|
Mode?: LocalGatewayRouteTableMode;
|
23823
|
+
StateReason?: StateReason;
|
23576
23824
|
}
|
23577
23825
|
export type LocalGatewayRouteTableIdSet = LocalGatewayRoutetableId[];
|
23578
23826
|
export type LocalGatewayRouteTableMode = "direct-vpc-routing"|"coip"|string;
|
@@ -24649,10 +24897,14 @@ declare namespace EC2 {
|
|
24649
24897
|
* The ID of the local gateway route table.
|
24650
24898
|
*/
|
24651
24899
|
LocalGatewayRouteTableId: LocalGatewayRoutetableId;
|
24900
|
+
/**
|
24901
|
+
* The ID of the virtual interface group.
|
24902
|
+
*/
|
24903
|
+
LocalGatewayVirtualInterfaceGroupId?: LocalGatewayVirtualInterfaceGroupId;
|
24652
24904
|
/**
|
24653
24905
|
* The ID of the network interface.
|
24654
24906
|
*/
|
24655
|
-
NetworkInterfaceId
|
24907
|
+
NetworkInterfaceId?: NetworkInterfaceId;
|
24656
24908
|
/**
|
24657
24909
|
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
24658
24910
|
*/
|
@@ -25419,6 +25671,10 @@ declare namespace EC2 {
|
|
25419
25671
|
RemoveAllowedPrincipals?: ValueStringList;
|
25420
25672
|
}
|
25421
25673
|
export interface ModifyVpcEndpointServicePermissionsResult {
|
25674
|
+
/**
|
25675
|
+
* Information about the added principals.
|
25676
|
+
*/
|
25677
|
+
AddedPrincipals?: AddedPrincipalSet;
|
25422
25678
|
/**
|
25423
25679
|
* Returns true if the request succeeds; otherwise, it returns an error.
|
25424
25680
|
*/
|
@@ -28852,7 +29108,7 @@ declare namespace EC2 {
|
|
28852
29108
|
*/
|
28853
29109
|
ResourceTypes?: ValueStringList;
|
28854
29110
|
}
|
28855
|
-
export type ResourceType = "capacity-reservation"|"client-vpn-endpoint"|"customer-gateway"|"carrier-gateway"|"dedicated-host"|"dhcp-options"|"egress-only-internet-gateway"|"elastic-ip"|"elastic-gpu"|"export-image-task"|"export-instance-task"|"fleet"|"fpga-image"|"host-reservation"|"image"|"import-image-task"|"import-snapshot-task"|"instance"|"instance-event-window"|"internet-gateway"|"ipam"|"ipam-pool"|"ipam-scope"|"ipv4pool-ec2"|"ipv6pool-ec2"|"key-pair"|"launch-template"|"local-gateway"|"local-gateway-route-table"|"local-gateway-virtual-interface"|"local-gateway-virtual-interface-group"|"local-gateway-route-table-vpc-association"|"local-gateway-route-table-virtual-interface-group-association"|"natgateway"|"network-acl"|"network-interface"|"network-insights-analysis"|"network-insights-path"|"network-insights-access-scope"|"network-insights-access-scope-analysis"|"placement-group"|"prefix-list"|"replace-root-volume-task"|"reserved-instances"|"route-table"|"security-group"|"security-group-rule"|"snapshot"|"spot-fleet-request"|"spot-instances-request"|"subnet"|"subnet-cidr-reservation"|"traffic-mirror-filter"|"traffic-mirror-session"|"traffic-mirror-target"|"transit-gateway"|"transit-gateway-attachment"|"transit-gateway-connect-peer"|"transit-gateway-multicast-domain"|"transit-gateway-policy-table"|"transit-gateway-route-table"|"transit-gateway-route-table-announcement"|"volume"|"vpc"|"vpc-endpoint"|"vpc-endpoint-service"|"vpc-peering-connection"|"vpn-connection"|"vpn-gateway"|"vpc-flow-log"|"capacity-reservation-fleet"|"traffic-mirror-filter-rule"|"vpc-endpoint-connection-device-type"|"vpn-connection-device-type"|string;
|
29111
|
+
export type ResourceType = "capacity-reservation"|"client-vpn-endpoint"|"customer-gateway"|"carrier-gateway"|"coip-pool"|"dedicated-host"|"dhcp-options"|"egress-only-internet-gateway"|"elastic-ip"|"elastic-gpu"|"export-image-task"|"export-instance-task"|"fleet"|"fpga-image"|"host-reservation"|"image"|"import-image-task"|"import-snapshot-task"|"instance"|"instance-event-window"|"internet-gateway"|"ipam"|"ipam-pool"|"ipam-scope"|"ipv4pool-ec2"|"ipv6pool-ec2"|"key-pair"|"launch-template"|"local-gateway"|"local-gateway-route-table"|"local-gateway-virtual-interface"|"local-gateway-virtual-interface-group"|"local-gateway-route-table-vpc-association"|"local-gateway-route-table-virtual-interface-group-association"|"natgateway"|"network-acl"|"network-interface"|"network-insights-analysis"|"network-insights-path"|"network-insights-access-scope"|"network-insights-access-scope-analysis"|"placement-group"|"prefix-list"|"replace-root-volume-task"|"reserved-instances"|"route-table"|"security-group"|"security-group-rule"|"snapshot"|"spot-fleet-request"|"spot-instances-request"|"subnet"|"subnet-cidr-reservation"|"traffic-mirror-filter"|"traffic-mirror-session"|"traffic-mirror-target"|"transit-gateway"|"transit-gateway-attachment"|"transit-gateway-connect-peer"|"transit-gateway-multicast-domain"|"transit-gateway-policy-table"|"transit-gateway-route-table"|"transit-gateway-route-table-announcement"|"volume"|"vpc"|"vpc-endpoint"|"vpc-endpoint-connection"|"vpc-endpoint-service"|"vpc-endpoint-service-permission"|"vpc-peering-connection"|"vpn-connection"|"vpn-gateway"|"vpc-flow-log"|"capacity-reservation-fleet"|"traffic-mirror-filter-rule"|"vpc-endpoint-connection-device-type"|"vpn-connection-device-type"|string;
|
28856
29112
|
export interface ResponseError {
|
28857
29113
|
/**
|
28858
29114
|
* The error code.
|
@@ -30390,7 +30646,7 @@ declare namespace EC2 {
|
|
30390
30646
|
*/
|
30391
30647
|
PrivateDnsName?: String;
|
30392
30648
|
/**
|
30393
|
-
* The private DNS names assigned to the VPC endpoint service.
|
30649
|
+
* The private DNS names assigned to the VPC endpoint service.
|
30394
30650
|
*/
|
30395
30651
|
PrivateDnsNames?: PrivateDnsDetailsSet;
|
30396
30652
|
/**
|
@@ -34068,6 +34324,14 @@ declare namespace EC2 {
|
|
34068
34324
|
* The IP address type for the endpoint.
|
34069
34325
|
*/
|
34070
34326
|
IpAddressType?: IpAddressType;
|
34327
|
+
/**
|
34328
|
+
* The ID of the VPC endpoint connection.
|
34329
|
+
*/
|
34330
|
+
VpcEndpointConnectionId?: String;
|
34331
|
+
/**
|
34332
|
+
* The tags.
|
34333
|
+
*/
|
34334
|
+
Tags?: TagList;
|
34071
34335
|
}
|
34072
34336
|
export type VpcEndpointConnectionSet = VpcEndpointConnection[];
|
34073
34337
|
export type VpcEndpointId = string;
|
@@ -61,11 +61,11 @@ declare class SageMaker extends Service {
|
|
61
61
|
*/
|
62
62
|
createAlgorithm(callback?: (err: AWSError, data: SageMaker.Types.CreateAlgorithmOutput) => void): Request<SageMaker.Types.CreateAlgorithmOutput, AWSError>;
|
63
63
|
/**
|
64
|
-
* Creates a running app for the specified UserProfile.
|
64
|
+
* Creates a running app for the specified UserProfile. This operation is automatically invoked by Amazon SageMaker Studio upon access to the associated Domain, and when new kernel configurations are selected by the user. A user may have multiple Apps active simultaneously.
|
65
65
|
*/
|
66
66
|
createApp(params: SageMaker.Types.CreateAppRequest, callback?: (err: AWSError, data: SageMaker.Types.CreateAppResponse) => void): Request<SageMaker.Types.CreateAppResponse, AWSError>;
|
67
67
|
/**
|
68
|
-
* Creates a running app for the specified UserProfile.
|
68
|
+
* Creates a running app for the specified UserProfile. This operation is automatically invoked by Amazon SageMaker Studio upon access to the associated Domain, and when new kernel configurations are selected by the user. A user may have multiple Apps active simultaneously.
|
69
69
|
*/
|
70
70
|
createApp(callback?: (err: AWSError, data: SageMaker.Types.CreateAppResponse) => void): Request<SageMaker.Types.CreateAppResponse, AWSError>;
|
71
71
|
/**
|
@@ -3652,7 +3652,7 @@ declare namespace SageMaker {
|
|
3652
3652
|
*/
|
3653
3653
|
UserProfileName: UserProfileName;
|
3654
3654
|
/**
|
3655
|
-
* The type of app.
|
3655
|
+
* The type of app.
|
3656
3656
|
*/
|
3657
3657
|
AppType: AppType;
|
3658
3658
|
/**
|
@@ -8855,7 +8855,7 @@ declare namespace SageMaker {
|
|
8855
8855
|
*/
|
8856
8856
|
RStudioServerProDomainSettings?: RStudioServerProDomainSettings;
|
8857
8857
|
/**
|
8858
|
-
* The configuration for attaching a SageMaker user profile name to the execution role as a
|
8858
|
+
* The configuration for attaching a SageMaker user profile name to the execution role as a sts:SourceIdentity key.
|
8859
8859
|
*/
|
8860
8860
|
ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig;
|
8861
8861
|
}
|
@@ -8865,7 +8865,7 @@ declare namespace SageMaker {
|
|
8865
8865
|
*/
|
8866
8866
|
RStudioServerProDomainSettingsForUpdate?: RStudioServerProDomainSettingsForUpdate;
|
8867
8867
|
/**
|
8868
|
-
* The configuration for attaching a SageMaker user profile name to the execution role as a
|
8868
|
+
* The configuration for attaching a SageMaker user profile name to the execution role as a sts:SourceIdentity key. This configuration can only be modified if there are no apps in the InService or Pending state.
|
8869
8869
|
*/
|
8870
8870
|
ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig;
|
8871
8871
|
}
|
@@ -9985,7 +9985,7 @@ declare namespace SageMaker {
|
|
9985
9985
|
*/
|
9986
9986
|
TaskAvailabilityLifetimeInSeconds?: TaskAvailabilityLifetimeInSeconds;
|
9987
9987
|
/**
|
9988
|
-
* Defines the maximum number of data objects that can be labeled by human workers at the same time. Also referred to as batch size. Each object may have more than one worker at one time. The default value is 1000 objects.
|
9988
|
+
* Defines the maximum number of data objects that can be labeled by human workers at the same time. Also referred to as batch size. Each object may have more than one worker at one time. The default value is 1000 objects. To increase the maximum value to 5000 objects, contact Amazon Web Services Support.
|
9989
9989
|
*/
|
9990
9990
|
MaxConcurrentTaskCount?: MaxConcurrentTaskCount;
|
9991
9991
|
/**
|
@@ -10196,9 +10196,13 @@ declare namespace SageMaker {
|
|
10196
10196
|
export type HyperParameterTuningJobArn = string;
|
10197
10197
|
export interface HyperParameterTuningJobConfig {
|
10198
10198
|
/**
|
10199
|
-
* Specifies how hyperparameter tuning chooses the combinations of hyperparameter values to use for the training job it launches.
|
10199
|
+
* Specifies how hyperparameter tuning chooses the combinations of hyperparameter values to use for the training job it launches. For information about search strategies, see How Hyperparameter Tuning Works.
|
10200
10200
|
*/
|
10201
10201
|
Strategy: HyperParameterTuningJobStrategyType;
|
10202
|
+
/**
|
10203
|
+
* The configuration for the Hyperband optimization strategy. This parameter should be provided only if Hyperband is selected as the strategy for HyperParameterTuningJobConfig.
|
10204
|
+
*/
|
10205
|
+
StrategyConfig?: HyperParameterTuningJobStrategyConfig;
|
10202
10206
|
/**
|
10203
10207
|
* The HyperParameterTuningJobObjective object that specifies the objective metric for this tuning job.
|
10204
10208
|
*/
|
@@ -10212,7 +10216,7 @@ declare namespace SageMaker {
|
|
10212
10216
|
*/
|
10213
10217
|
ParameterRanges?: ParameterRanges;
|
10214
10218
|
/**
|
10215
|
-
* Specifies whether to use early stopping for training jobs launched by the hyperparameter tuning job. This can
|
10219
|
+
* Specifies whether to use early stopping for training jobs launched by the hyperparameter tuning job. Because the Hyperband strategy has its own advanced internal early stopping mechanism, TrainingJobEarlyStoppingType must be OFF to use Hyperband. This parameter can take on one of the following values (the default value is OFF): OFF Training jobs launched by the hyperparameter tuning job do not use early stopping. AUTO SageMaker stops training jobs launched by the hyperparameter tuning job when they are unlikely to perform better than previously completed training jobs. For more information, see Stop Training Jobs Early.
|
10216
10220
|
*/
|
10217
10221
|
TrainingJobEarlyStoppingType?: TrainingJobEarlyStoppingType;
|
10218
10222
|
/**
|
@@ -10280,7 +10284,13 @@ declare namespace SageMaker {
|
|
10280
10284
|
}
|
10281
10285
|
export type HyperParameterTuningJobSortByOptions = "Name"|"Status"|"CreationTime"|string;
|
10282
10286
|
export type HyperParameterTuningJobStatus = "Completed"|"InProgress"|"Failed"|"Stopped"|"Stopping"|string;
|
10283
|
-
export
|
10287
|
+
export interface HyperParameterTuningJobStrategyConfig {
|
10288
|
+
/**
|
10289
|
+
* The configuration for the object that specifies the Hyperband strategy. This parameter is only supported for the Hyperband selection for Strategy within the HyperParameterTuningJobConfig API.
|
10290
|
+
*/
|
10291
|
+
HyperbandStrategyConfig?: HyperbandStrategyConfig;
|
10292
|
+
}
|
10293
|
+
export type HyperParameterTuningJobStrategyType = "Bayesian"|"Random"|"Hyperband"|string;
|
10284
10294
|
export type HyperParameterTuningJobSummaries = HyperParameterTuningJobSummary[];
|
10285
10295
|
export interface HyperParameterTuningJobSummary {
|
10286
10296
|
/**
|
@@ -10296,7 +10306,7 @@ declare namespace SageMaker {
|
|
10296
10306
|
*/
|
10297
10307
|
HyperParameterTuningJobStatus: HyperParameterTuningJobStatus;
|
10298
10308
|
/**
|
10299
|
-
* Specifies the search strategy hyperparameter tuning uses to choose which hyperparameters to
|
10309
|
+
* Specifies the search strategy hyperparameter tuning uses to choose which hyperparameters to evaluate at each iteration.
|
10300
10310
|
*/
|
10301
10311
|
Strategy: HyperParameterTuningJobStrategyType;
|
10302
10312
|
/**
|
@@ -10363,6 +10373,18 @@ declare namespace SageMaker {
|
|
10363
10373
|
}
|
10364
10374
|
export type HyperParameterValue = string;
|
10365
10375
|
export type HyperParameters = {[key: string]: HyperParameterValue};
|
10376
|
+
export interface HyperbandStrategyConfig {
|
10377
|
+
/**
|
10378
|
+
* The minimum number of resources (such as epochs) that can be used by a training job launched by a hyperparameter tuning job. If the value for MinResource has not been reached, the training job will not be stopped by Hyperband.
|
10379
|
+
*/
|
10380
|
+
MinResource?: HyperbandStrategyMinResource;
|
10381
|
+
/**
|
10382
|
+
* The maximum number of resources (such as epochs) that can be used by a training job launched by a hyperparameter tuning job. Once a job reaches the MaxResource value, it is stopped. If a value for MaxResource is not provided, and Hyperband is selected as the hyperparameter tuning strategy, HyperbandTrainingJ attempts to infer MaxResource from the following keys (if present) in StaticsHyperParameters: epochs numepochs n-epochs n_epochs num_epochs If HyperbandStrategyConfig is unable to infer a value for MaxResource, it generates a validation error. The maximum value is 20,000 epochs. All metrics that correspond to an objective metric are used to derive early stopping decisions. For distributive training jobs, ensure that duplicate metrics are not printed in the logs across the individual nodes in a training job. If multiple nodes are publishing duplicate or incorrect metrics, training jobs may make an incorrect stopping decision and stop the job prematurely.
|
10383
|
+
*/
|
10384
|
+
MaxResource?: HyperbandStrategyMaxResource;
|
10385
|
+
}
|
10386
|
+
export type HyperbandStrategyMaxResource = number;
|
10387
|
+
export type HyperbandStrategyMinResource = number;
|
10366
10388
|
export type IdempotencyToken = string;
|
10367
10389
|
export interface Image {
|
10368
10390
|
/**
|
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
83
83
|
/**
|
84
84
|
* @constant
|
85
85
|
*/
|
86
|
-
VERSION: '2.
|
86
|
+
VERSION: '2.1217.0',
|
87
87
|
|
88
88
|
/**
|
89
89
|
* @api private
|
@@ -10091,19 +10091,33 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
10091
10091
|
}
|
10092
10092
|
};
|
10093
10093
|
var toStr = Object.prototype.toString;
|
10094
|
+
var objectClass = '[object Object]';
|
10094
10095
|
var fnClass = '[object Function]';
|
10095
10096
|
var genClass = '[object GeneratorFunction]';
|
10097
|
+
var ddaClass = '[object HTMLAllCollection]';
|
10096
10098
|
var hasToStringTag = typeof Symbol === 'function' && !!Symbol.toStringTag; // better: use `has-tostringtag`
|
10097
|
-
|
10098
|
-
|
10099
|
-
|
10100
|
-
|
10101
|
-
|
10102
|
-
|
10103
|
-
|
10099
|
+
|
10100
|
+
var isIE68 = !(0 in [,]); // eslint-disable-line no-sparse-arrays, comma-spacing
|
10101
|
+
|
10102
|
+
var isDDA = function isDocumentDotAll() { return false; };
|
10103
|
+
if (typeof document === 'object') {
|
10104
|
+
// Firefox 3 canonicalized DDA to undefined when it's not accessed directly
|
10105
|
+
var all = document.all;
|
10106
|
+
if (toStr.call(all) === toStr.call(document.all)) {
|
10107
|
+
isDDA = function isDocumentDotAll(value) {
|
10108
|
+
/* globals document: false */
|
10109
|
+
// in IE 6-8, typeof document.all is "object" and it's truthy
|
10110
|
+
if ((isIE68 || !value) && (typeof value === 'undefined' || typeof value === 'object')) {
|
10111
|
+
try {
|
10112
|
+
var str = toStr.call(value);
|
10113
|
+
// IE 6-8 uses `objectClass`
|
10114
|
+
return (str === ddaClass || str === objectClass) && value('') == null; // eslint-disable-line eqeqeq
|
10115
|
+
} catch (e) { /**/ }
|
10116
|
+
}
|
10117
|
+
return false;
|
10118
|
+
};
|
10104
10119
|
}
|
10105
|
-
|
10106
|
-
} : function () { return false; };
|
10120
|
+
}
|
10107
10121
|
|
10108
10122
|
module.exports = reflectApply
|
10109
10123
|
? function isCallable(value) {
|
@@ -10122,7 +10136,6 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
10122
10136
|
if (isDDA(value)) { return true; }
|
10123
10137
|
if (!value) { return false; }
|
10124
10138
|
if (typeof value !== 'function' && typeof value !== 'object') { return false; }
|
10125
|
-
if (typeof value === 'function' && !value.prototype) { return true; }
|
10126
10139
|
if (hasToStringTag) { return tryFunctionObject(value); }
|
10127
10140
|
if (isES6ClassFn(value)) { return false; }
|
10128
10141
|
var strClass = toStr.call(value);
|