cdk-comprehend-s3olap 2.0.115 → 2.0.117
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 +4 -4
- 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 +17 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/amplifyuibuilder-2021-08-11.min.json +563 -490
- package/node_modules/aws-sdk/apis/amplifyuibuilder-2021-08-11.waiters2.json +5 -0
- package/node_modules/aws-sdk/apis/ivs-realtime-2020-07-14.min.json +6 -2
- package/node_modules/aws-sdk/apis/runtime.sagemaker-2017-05-13.min.json +4 -0
- package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +657 -655
- package/node_modules/aws-sdk/apis/wafv2-2019-07-29.min.json +28 -55
- package/node_modules/aws-sdk/clients/amplifyuibuilder.d.ts +451 -350
- package/node_modules/aws-sdk/clients/amplifyuibuilder.js +1 -0
- package/node_modules/aws-sdk/clients/autoscaling.d.ts +18 -18
- package/node_modules/aws-sdk/clients/configservice.d.ts +2 -2
- package/node_modules/aws-sdk/clients/ec2.d.ts +1 -1
- package/node_modules/aws-sdk/clients/ecs.d.ts +10 -10
- package/node_modules/aws-sdk/clients/elasticinference.d.ts +12 -12
- package/node_modules/aws-sdk/clients/identitystore.d.ts +27 -27
- package/node_modules/aws-sdk/clients/networkfirewall.d.ts +1 -1
- package/node_modules/aws-sdk/clients/sagemaker.d.ts +30 -20
- package/node_modules/aws-sdk/clients/sagemakerruntime.d.ts +4 -0
- package/node_modules/aws-sdk/clients/servicecatalog.d.ts +2 -2
- package/node_modules/aws-sdk/clients/vpclattice.d.ts +18 -18
- package/node_modules/aws-sdk/clients/wafv2.d.ts +62 -89
- 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 +294 -287
- package/node_modules/aws-sdk/dist/aws-sdk.js +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +2 -2
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
@@ -28,11 +28,11 @@ declare class IdentityStore extends Service {
|
|
28
28
|
*/
|
29
29
|
createGroupMembership(callback?: (err: AWSError, data: IdentityStore.Types.CreateGroupMembershipResponse) => void): Request<IdentityStore.Types.CreateGroupMembershipResponse, AWSError>;
|
30
30
|
/**
|
31
|
-
* Creates a
|
31
|
+
* Creates a user within the specified identity store.
|
32
32
|
*/
|
33
33
|
createUser(params: IdentityStore.Types.CreateUserRequest, callback?: (err: AWSError, data: IdentityStore.Types.CreateUserResponse) => void): Request<IdentityStore.Types.CreateUserResponse, AWSError>;
|
34
34
|
/**
|
35
|
-
* Creates a
|
35
|
+
* Creates a user within the specified identity store.
|
36
36
|
*/
|
37
37
|
createUser(callback?: (err: AWSError, data: IdentityStore.Types.CreateUserResponse) => void): Request<IdentityStore.Types.CreateUserResponse, AWSError>;
|
38
38
|
/**
|
@@ -254,7 +254,7 @@ declare namespace IdentityStore {
|
|
254
254
|
*/
|
255
255
|
IdentityStoreId: IdentityStoreId;
|
256
256
|
/**
|
257
|
-
* A string containing the name of the group. This value is commonly displayed when the group is referenced.
|
257
|
+
* A string containing the name of the group. This value is commonly displayed when the group is referenced. "Administrator" and "AWSAdministrators" are reserved names and can't be used for users or groups.
|
258
258
|
*/
|
259
259
|
DisplayName?: GroupDisplayName;
|
260
260
|
/**
|
@@ -278,15 +278,15 @@ declare namespace IdentityStore {
|
|
278
278
|
*/
|
279
279
|
IdentityStoreId: IdentityStoreId;
|
280
280
|
/**
|
281
|
-
* A unique string used to identify the user. The length limit is 128 characters. This value can consist of letters, accented characters, symbols, numbers, and punctuation. This value is specified at the time the user is created and stored as an attribute of the user object in the identity store.
|
281
|
+
* A unique string used to identify the user. The length limit is 128 characters. This value can consist of letters, accented characters, symbols, numbers, and punctuation. This value is specified at the time the user is created and stored as an attribute of the user object in the identity store. "Administrator" and "AWSAdministrators" are reserved names and can't be used for users or groups.
|
282
282
|
*/
|
283
283
|
UserName?: UserName;
|
284
284
|
/**
|
285
|
-
* An object containing the user
|
285
|
+
* An object containing the name of the user.
|
286
286
|
*/
|
287
287
|
Name?: Name;
|
288
288
|
/**
|
289
|
-
* A string containing the user
|
289
|
+
* A string containing the name of the user. This value is typically formatted for display when the user is referenced. For example, "John Doe."
|
290
290
|
*/
|
291
291
|
DisplayName?: SensitiveStringType;
|
292
292
|
/**
|
@@ -294,7 +294,7 @@ declare namespace IdentityStore {
|
|
294
294
|
*/
|
295
295
|
NickName?: SensitiveStringType;
|
296
296
|
/**
|
297
|
-
* A string containing a URL that
|
297
|
+
* A string containing a URL that might be associated with the user.
|
298
298
|
*/
|
299
299
|
ProfileUrl?: SensitiveStringType;
|
300
300
|
/**
|
@@ -310,11 +310,11 @@ declare namespace IdentityStore {
|
|
310
310
|
*/
|
311
311
|
PhoneNumbers?: PhoneNumbers;
|
312
312
|
/**
|
313
|
-
* A string indicating the user
|
313
|
+
* A string indicating the type of user. Possible values are left unspecified. The value can vary based on your specific use case.
|
314
314
|
*/
|
315
315
|
UserType?: SensitiveStringType;
|
316
316
|
/**
|
317
|
-
* A string containing the user
|
317
|
+
* A string containing the title of the user. Possible values are left unspecified. The value can vary based on your specific use case.
|
318
318
|
*/
|
319
319
|
Title?: SensitiveStringType;
|
320
320
|
/**
|
@@ -322,11 +322,11 @@ declare namespace IdentityStore {
|
|
322
322
|
*/
|
323
323
|
PreferredLanguage?: SensitiveStringType;
|
324
324
|
/**
|
325
|
-
* A string containing the
|
325
|
+
* A string containing the geographical region or location of the user.
|
326
326
|
*/
|
327
327
|
Locale?: SensitiveStringType;
|
328
328
|
/**
|
329
|
-
* A string containing the
|
329
|
+
* A string containing the time zone of the user.
|
330
330
|
*/
|
331
331
|
Timezone?: SensitiveStringType;
|
332
332
|
}
|
@@ -461,7 +461,7 @@ declare namespace IdentityStore {
|
|
461
461
|
*/
|
462
462
|
Name?: Name;
|
463
463
|
/**
|
464
|
-
* The
|
464
|
+
* The display name of the user.
|
465
465
|
*/
|
466
466
|
DisplayName?: SensitiveStringType;
|
467
467
|
/**
|
@@ -473,11 +473,11 @@ declare namespace IdentityStore {
|
|
473
473
|
*/
|
474
474
|
ProfileUrl?: SensitiveStringType;
|
475
475
|
/**
|
476
|
-
* The
|
476
|
+
* The email address of the user.
|
477
477
|
*/
|
478
478
|
Emails?: Emails;
|
479
479
|
/**
|
480
|
-
* The
|
480
|
+
* The physical address of the user.
|
481
481
|
*/
|
482
482
|
Addresses?: Addresses;
|
483
483
|
/**
|
@@ -485,11 +485,11 @@ declare namespace IdentityStore {
|
|
485
485
|
*/
|
486
486
|
PhoneNumbers?: PhoneNumbers;
|
487
487
|
/**
|
488
|
-
* A string indicating the user
|
488
|
+
* A string indicating the type of user.
|
489
489
|
*/
|
490
490
|
UserType?: SensitiveStringType;
|
491
491
|
/**
|
492
|
-
* A string containing the user
|
492
|
+
* A string containing the title of the user.
|
493
493
|
*/
|
494
494
|
Title?: SensitiveStringType;
|
495
495
|
/**
|
@@ -497,7 +497,7 @@ declare namespace IdentityStore {
|
|
497
497
|
*/
|
498
498
|
PreferredLanguage?: SensitiveStringType;
|
499
499
|
/**
|
500
|
-
* A string containing the
|
500
|
+
* A string containing the geographical region or location of the user.
|
501
501
|
*/
|
502
502
|
Locale?: SensitiveStringType;
|
503
503
|
/**
|
@@ -554,7 +554,7 @@ declare namespace IdentityStore {
|
|
554
554
|
*/
|
555
555
|
IdentityStoreId: IdentityStoreId;
|
556
556
|
/**
|
557
|
-
* A unique identifier for a user or group that is not the primary identifier. This value can be an identifier from an external identity provider (IdP) that is associated with the user, the group, or a unique attribute. For
|
557
|
+
* A unique identifier for a user or group that is not the primary identifier. This value can be an identifier from an external identity provider (IdP) that is associated with the user, the group, or a unique attribute. For the unique attribute, the only valid path is displayName.
|
558
558
|
*/
|
559
559
|
AlternateIdentifier: AlternateIdentifier;
|
560
560
|
}
|
@@ -598,7 +598,7 @@ declare namespace IdentityStore {
|
|
598
598
|
*/
|
599
599
|
IdentityStoreId: IdentityStoreId;
|
600
600
|
/**
|
601
|
-
* A unique identifier for a user or group that is not the primary identifier. This value can be an identifier from an external identity provider (IdP) that is associated with the user, the group, or a unique attribute. For
|
601
|
+
* A unique identifier for a user or group that is not the primary identifier. This value can be an identifier from an external identity provider (IdP) that is associated with the user, the group, or a unique attribute. For the unique attribute, the only valid paths are userName and emails.value.
|
602
602
|
*/
|
603
603
|
AlternateIdentifier: AlternateIdentifier;
|
604
604
|
}
|
@@ -618,7 +618,7 @@ declare namespace IdentityStore {
|
|
618
618
|
*/
|
619
619
|
GroupId: ResourceId;
|
620
620
|
/**
|
621
|
-
* The
|
621
|
+
* The display name value for the group. The length limit is 1,024 characters. This value can consist of letters, accented characters, symbols, numbers, punctuation, tab, new line, carriage return, space, and nonbreaking space in this attribute. This value is specified at the time the group is created and stored as an attribute of the group object in the identity store.
|
622
622
|
*/
|
623
623
|
DisplayName?: GroupDisplayName;
|
624
624
|
/**
|
@@ -912,11 +912,11 @@ declare namespace IdentityStore {
|
|
912
912
|
*/
|
913
913
|
ExternalIds?: ExternalIds;
|
914
914
|
/**
|
915
|
-
* An object containing the user
|
915
|
+
* An object containing the name of the user.
|
916
916
|
*/
|
917
917
|
Name?: Name;
|
918
918
|
/**
|
919
|
-
* A string containing the user
|
919
|
+
* A string containing the name of the user that is formatted for display when the user is referenced. For example, "John Doe."
|
920
920
|
*/
|
921
921
|
DisplayName?: SensitiveStringType;
|
922
922
|
/**
|
@@ -924,7 +924,7 @@ declare namespace IdentityStore {
|
|
924
924
|
*/
|
925
925
|
NickName?: SensitiveStringType;
|
926
926
|
/**
|
927
|
-
* A string containing a URL that
|
927
|
+
* A string containing a URL that might be associated with the user.
|
928
928
|
*/
|
929
929
|
ProfileUrl?: SensitiveStringType;
|
930
930
|
/**
|
@@ -940,11 +940,11 @@ declare namespace IdentityStore {
|
|
940
940
|
*/
|
941
941
|
PhoneNumbers?: PhoneNumbers;
|
942
942
|
/**
|
943
|
-
* A string indicating the user
|
943
|
+
* A string indicating the type of user. Possible values are left unspecified. The value can vary based on your specific use case.
|
944
944
|
*/
|
945
945
|
UserType?: SensitiveStringType;
|
946
946
|
/**
|
947
|
-
* A string containing the user
|
947
|
+
* A string containing the title of the user. Possible values are left unspecified. The value can vary based on your specific use case.
|
948
948
|
*/
|
949
949
|
Title?: SensitiveStringType;
|
950
950
|
/**
|
@@ -952,11 +952,11 @@ declare namespace IdentityStore {
|
|
952
952
|
*/
|
953
953
|
PreferredLanguage?: SensitiveStringType;
|
954
954
|
/**
|
955
|
-
* A string containing the
|
955
|
+
* A string containing the geographical region or location of the user.
|
956
956
|
*/
|
957
957
|
Locale?: SensitiveStringType;
|
958
958
|
/**
|
959
|
-
* A string containing the
|
959
|
+
* A string containing the time zone of the user.
|
960
960
|
*/
|
961
961
|
Timezone?: SensitiveStringType;
|
962
962
|
/**
|
@@ -1118,7 +1118,7 @@ declare namespace NetworkFirewall {
|
|
1118
1118
|
*/
|
1119
1119
|
DestinationPort: Port;
|
1120
1120
|
}
|
1121
|
-
export type IPAddressType = "DUALSTACK"|"IPV4"|string;
|
1121
|
+
export type IPAddressType = "DUALSTACK"|"IPV4"|"IPV6"|string;
|
1122
1122
|
export interface IPSet {
|
1123
1123
|
/**
|
1124
1124
|
* The list of IP addresses and address ranges, in CIDR notation.
|
@@ -85,19 +85,19 @@ declare class SageMaker extends Service {
|
|
85
85
|
*/
|
86
86
|
createArtifact(callback?: (err: AWSError, data: SageMaker.Types.CreateArtifactResponse) => void): Request<SageMaker.Types.CreateArtifactResponse, AWSError>;
|
87
87
|
/**
|
88
|
-
* Creates an Autopilot job. Find the best-performing model after you run an Autopilot job by calling
|
88
|
+
* Creates an Autopilot job. Find the best-performing model after you run an Autopilot job by calling DescribeAutoMLJob. For information about how to use Autopilot, see Automate Model Development with Amazon SageMaker Autopilot.
|
89
89
|
*/
|
90
90
|
createAutoMLJob(params: SageMaker.Types.CreateAutoMLJobRequest, callback?: (err: AWSError, data: SageMaker.Types.CreateAutoMLJobResponse) => void): Request<SageMaker.Types.CreateAutoMLJobResponse, AWSError>;
|
91
91
|
/**
|
92
|
-
* Creates an Autopilot job. Find the best-performing model after you run an Autopilot job by calling
|
92
|
+
* Creates an Autopilot job. Find the best-performing model after you run an Autopilot job by calling DescribeAutoMLJob. For information about how to use Autopilot, see Automate Model Development with Amazon SageMaker Autopilot.
|
93
93
|
*/
|
94
94
|
createAutoMLJob(callback?: (err: AWSError, data: SageMaker.Types.CreateAutoMLJobResponse) => void): Request<SageMaker.Types.CreateAutoMLJobResponse, AWSError>;
|
95
95
|
/**
|
96
|
-
* Creates an Amazon SageMaker AutoML job that uses non-tabular data such as images or text for Computer Vision or Natural Language Processing problems. Find the resulting model after you run an AutoML job V2 by calling
|
96
|
+
* Creates an Amazon SageMaker AutoML job that uses non-tabular data such as images or text for Computer Vision or Natural Language Processing problems. Find the resulting model after you run an AutoML job V2 by calling DescribeAutoMLJobV2. To create an AutoMLJob using tabular data, see CreateAutoMLJob. This API action is callable through SageMaker Canvas only. Calling it directly from the CLI or an SDK results in an error.
|
97
97
|
*/
|
98
98
|
createAutoMLJobV2(params: SageMaker.Types.CreateAutoMLJobV2Request, callback?: (err: AWSError, data: SageMaker.Types.CreateAutoMLJobV2Response) => void): Request<SageMaker.Types.CreateAutoMLJobV2Response, AWSError>;
|
99
99
|
/**
|
100
|
-
* Creates an Amazon SageMaker AutoML job that uses non-tabular data such as images or text for Computer Vision or Natural Language Processing problems. Find the resulting model after you run an AutoML job V2 by calling
|
100
|
+
* Creates an Amazon SageMaker AutoML job that uses non-tabular data such as images or text for Computer Vision or Natural Language Processing problems. Find the resulting model after you run an AutoML job V2 by calling DescribeAutoMLJobV2. To create an AutoMLJob using tabular data, see CreateAutoMLJob. This API action is callable through SageMaker Canvas only. Calling it directly from the CLI or an SDK results in an error.
|
101
101
|
*/
|
102
102
|
createAutoMLJobV2(callback?: (err: AWSError, data: SageMaker.Types.CreateAutoMLJobV2Response) => void): Request<SageMaker.Types.CreateAutoMLJobV2Response, AWSError>;
|
103
103
|
/**
|
@@ -3005,6 +3005,10 @@ declare namespace SageMaker {
|
|
3005
3005
|
* Amazon SNS topic to post a notification to when inference fails. If no topic is provided, no notification is sent on failure.
|
3006
3006
|
*/
|
3007
3007
|
ErrorTopic?: SnsTopicArn;
|
3008
|
+
/**
|
3009
|
+
* The Amazon SNS topics where you want the inference response to be included.
|
3010
|
+
*/
|
3011
|
+
IncludeInferenceResponseIn?: AsyncNotificationTopicTypeList;
|
3008
3012
|
}
|
3009
3013
|
export interface AsyncInferenceOutputConfig {
|
3010
3014
|
/**
|
@@ -3014,12 +3018,18 @@ declare namespace SageMaker {
|
|
3014
3018
|
/**
|
3015
3019
|
* The Amazon S3 location to upload inference responses to.
|
3016
3020
|
*/
|
3017
|
-
S3OutputPath
|
3021
|
+
S3OutputPath?: DestinationS3Uri;
|
3018
3022
|
/**
|
3019
3023
|
* Specifies the configuration for notifications of inference results for asynchronous inference.
|
3020
3024
|
*/
|
3021
3025
|
NotificationConfig?: AsyncInferenceNotificationConfig;
|
3026
|
+
/**
|
3027
|
+
* The Amazon S3 location to upload failure inference responses to.
|
3028
|
+
*/
|
3029
|
+
S3FailurePath?: DestinationS3Uri;
|
3022
3030
|
}
|
3031
|
+
export type AsyncNotificationTopicTypeList = AsyncNotificationTopicTypes[];
|
3032
|
+
export type AsyncNotificationTopicTypes = "SUCCESS_NOTIFICATION_TOPIC"|"ERROR_NOTIFICATION_TOPIC"|string;
|
3023
3033
|
export type AthenaCatalog = string;
|
3024
3034
|
export type AthenaDatabase = string;
|
3025
3035
|
export interface AthenaDatasetDefinition {
|
@@ -3049,7 +3059,7 @@ declare namespace SageMaker {
|
|
3049
3059
|
export type AutoMLAlgorithm = "xgboost"|"linear-learner"|"mlp"|"lightgbm"|"catboost"|"randomforest"|"extra-trees"|"nn-torch"|"fastai"|string;
|
3050
3060
|
export interface AutoMLAlgorithmConfig {
|
3051
3061
|
/**
|
3052
|
-
* The selection of algorithms run on a dataset to train the model candidates of an Autopilot job. Selected algorithms must belong to the list corresponding to the training mode set in
|
3062
|
+
* The selection of algorithms run on a dataset to train the model candidates of an Autopilot job. Selected algorithms must belong to the list corresponding to the training mode set in AutoMLJobConfig.Mode (ENSEMBLING or HYPERPARAMETER_TUNING). Choose a minimum of 1 algorithm. In ENSEMBLING mode: "catboost" "extra-trees" "fastai" "lightgbm" "linear-learner" "nn-torch" "randomforest" "xgboost" In HYPERPARAMETER_TUNING mode: "linear-learner" "mlp" "xgboost"
|
3053
3063
|
*/
|
3054
3064
|
AutoMLAlgorithms: AutoMLAlgorithms;
|
3055
3065
|
}
|
@@ -3108,7 +3118,7 @@ declare namespace SageMaker {
|
|
3108
3118
|
*/
|
3109
3119
|
FeatureSpecificationS3Uri?: S3Uri;
|
3110
3120
|
/**
|
3111
|
-
* Stores the configuration information for the selection of algorithms used to train the model candidates. The list of available algorithms to choose from depends on the training mode set in AutoMLJobConfig.Mode . AlgorithmsConfig should not be set in AUTO training mode. When AlgorithmsConfig is provided, one AutoMLAlgorithms attribute must be set and one only. If the list of algorithms provided as values for AutoMLAlgorithms is empty, AutoMLCandidateGenerationConfig uses the full set of algorithms for the given training mode. When AlgorithmsConfig is not provided, AutoMLCandidateGenerationConfig uses the full set of algorithms for the given training mode. For the list of all algorithms per training mode, see
|
3121
|
+
* Stores the configuration information for the selection of algorithms used to train the model candidates. The list of available algorithms to choose from depends on the training mode set in AutoMLJobConfig.Mode . AlgorithmsConfig should not be set in AUTO training mode. When AlgorithmsConfig is provided, one AutoMLAlgorithms attribute must be set and one only. If the list of algorithms provided as values for AutoMLAlgorithms is empty, AutoMLCandidateGenerationConfig uses the full set of algorithms for the given training mode. When AlgorithmsConfig is not provided, AutoMLCandidateGenerationConfig uses the full set of algorithms for the given training mode. For the list of all algorithms per training mode, see AutoMLAlgorithmConfig. For more information on each algorithm, see the Algorithm support section in Autopilot developer guide.
|
3112
3122
|
*/
|
3113
3123
|
AlgorithmsConfig?: AutoMLAlgorithmsConfig;
|
3114
3124
|
}
|
@@ -3145,22 +3155,22 @@ declare namespace SageMaker {
|
|
3145
3155
|
*/
|
3146
3156
|
ContentType?: ContentType;
|
3147
3157
|
/**
|
3148
|
-
* The channel type (optional) is an enum string. The default value is training. Channels for training and validation must share the same ContentType and TargetAttributeName. For information on specifying training and validation channel types, see
|
3158
|
+
* The channel type (optional) is an enum string. The default value is training. Channels for training and validation must share the same ContentType and TargetAttributeName. For information on specifying training and validation channel types, see How to specify training and validation datasets.
|
3149
3159
|
*/
|
3150
3160
|
ChannelType?: AutoMLChannelType;
|
3151
3161
|
}
|
3152
3162
|
export type AutoMLChannelType = "training"|"validation"|string;
|
3153
3163
|
export interface AutoMLContainerDefinition {
|
3154
3164
|
/**
|
3155
|
-
* The Amazon Elastic Container Registry (Amazon ECR) path of the container. For more information, see
|
3165
|
+
* The Amazon Elastic Container Registry (Amazon ECR) path of the container. For more information, see ContainerDefinition.
|
3156
3166
|
*/
|
3157
3167
|
Image: ContainerImage;
|
3158
3168
|
/**
|
3159
|
-
* The location of the model artifacts. For more information, see
|
3169
|
+
* The location of the model artifacts. For more information, see ContainerDefinition.
|
3160
3170
|
*/
|
3161
3171
|
ModelDataUrl: Url;
|
3162
3172
|
/**
|
3163
|
-
* The environment variables to set in the container. For more information, see
|
3173
|
+
* The environment variables to set in the container. For more information, see ContainerDefinition.
|
3164
3174
|
*/
|
3165
3175
|
Environment?: EnvironmentMap;
|
3166
3176
|
}
|
@@ -3215,7 +3225,7 @@ declare namespace SageMaker {
|
|
3215
3225
|
*/
|
3216
3226
|
MaxCandidates?: MaxCandidates;
|
3217
3227
|
/**
|
3218
|
-
* The maximum time, in seconds, that each training job executed inside hyperparameter tuning is allowed to run as part of a hyperparameter tuning job. For more information, see the
|
3228
|
+
* The maximum time, in seconds, that each training job executed inside hyperparameter tuning is allowed to run as part of a hyperparameter tuning job. For more information, see the StoppingCondition used by the CreateHyperParameterTuningJob action. For V2 jobs (jobs created by calling CreateAutoMLJobV2), this field controls the runtime of the job candidate.
|
3219
3229
|
*/
|
3220
3230
|
MaxRuntimePerTrainingJobInSeconds?: MaxRuntimePerTrainingJobInSeconds;
|
3221
3231
|
/**
|
@@ -4024,11 +4034,11 @@ declare namespace SageMaker {
|
|
4024
4034
|
*/
|
4025
4035
|
ContainerHostname?: ContainerHostname;
|
4026
4036
|
/**
|
4027
|
-
* The path where inference code is stored. This can be either in Amazon EC2 Container Registry or in a Docker registry that is accessible from the same VPC that you configure for your endpoint. If you are using your own custom algorithm instead of an algorithm provided by SageMaker, the inference code must meet SageMaker requirements. SageMaker supports both registry/repository[:tag] and registry/repository[@digest] image path formats. For more information, see Using Your Own Algorithms with Amazon SageMaker
|
4037
|
+
* The path where inference code is stored. This can be either in Amazon EC2 Container Registry or in a Docker registry that is accessible from the same VPC that you configure for your endpoint. If you are using your own custom algorithm instead of an algorithm provided by SageMaker, the inference code must meet SageMaker requirements. SageMaker supports both registry/repository[:tag] and registry/repository[@digest] image path formats. For more information, see Using Your Own Algorithms with Amazon SageMaker. The model artifacts in an Amazon S3 bucket and the Docker image for inference container in Amazon EC2 Container Registry must be in the same region as the model or endpoint you are creating.
|
4028
4038
|
*/
|
4029
4039
|
Image?: ContainerImage;
|
4030
4040
|
/**
|
4031
|
-
* Specifies whether the model container is in Amazon ECR or a private Docker registry accessible from your Amazon Virtual Private Cloud (VPC). For information about storing containers in a private Docker registry, see Use a Private Docker Registry for Real-Time Inference Containers
|
4041
|
+
* Specifies whether the model container is in Amazon ECR or a private Docker registry accessible from your Amazon Virtual Private Cloud (VPC). For information about storing containers in a private Docker registry, see Use a Private Docker Registry for Real-Time Inference Containers. The model artifacts in an Amazon S3 bucket and the Docker image for inference container in Amazon EC2 Container Registry must be in the same region as the model or endpoint you are creating.
|
4032
4042
|
*/
|
4033
4043
|
ImageConfig?: ImageConfig;
|
4034
4044
|
/**
|
@@ -4309,7 +4319,7 @@ declare namespace SageMaker {
|
|
4309
4319
|
*/
|
4310
4320
|
AutoMLJobName: AutoMLJobName;
|
4311
4321
|
/**
|
4312
|
-
* An array of channel objects that describes the input data and its location. Each channel is a named input source. Similar to InputDataConfig supported by
|
4322
|
+
* An array of channel objects that describes the input data and its location. Each channel is a named input source. Similar to InputDataConfig supported by HyperParameterTrainingJobDefinition. Format(s) supported: CSV, Parquet. A minimum of 500 rows is required for the training dataset. There is not a minimum number of rows required for the validation dataset.
|
4313
4323
|
*/
|
4314
4324
|
InputDataConfig: AutoMLInputDataConfig;
|
4315
4325
|
/**
|
@@ -4321,7 +4331,7 @@ declare namespace SageMaker {
|
|
4321
4331
|
*/
|
4322
4332
|
ProblemType?: ProblemType;
|
4323
4333
|
/**
|
4324
|
-
* Defines the objective metric used to measure the predictive quality of an AutoML job. You provide an
|
4334
|
+
* Defines the objective metric used to measure the predictive quality of an AutoML job. You provide an AutoMLJobObjective$MetricName and Autopilot infers whether to minimize or maximize it. For CreateAutoMLJobV2, only Accuracy is supported.
|
4325
4335
|
*/
|
4326
4336
|
AutoMLJobObjective?: AutoMLJobObjective;
|
4327
4337
|
/**
|
@@ -4357,7 +4367,7 @@ declare namespace SageMaker {
|
|
4357
4367
|
*/
|
4358
4368
|
AutoMLJobName: AutoMLJobName;
|
4359
4369
|
/**
|
4360
|
-
* An array of channel objects describing the input data and their location. Each channel is a named input source. Similar to
|
4370
|
+
* An array of channel objects describing the input data and their location. Each channel is a named input source. Similar to InputDataConfig supported by CreateAutoMLJob. The supported formats depend on the problem type: ImageClassification: S3Prefix, ManifestFile, AugmentedManifestFile TextClassification: S3Prefix
|
4361
4371
|
*/
|
4362
4372
|
AutoMLJobInputDataConfig: AutoMLJobInputDataConfig;
|
4363
4373
|
/**
|
@@ -4381,7 +4391,7 @@ declare namespace SageMaker {
|
|
4381
4391
|
*/
|
4382
4392
|
SecurityConfig?: AutoMLSecurityConfig;
|
4383
4393
|
/**
|
4384
|
-
* Specifies a metric to minimize or maximize as the objective of a job. For
|
4394
|
+
* Specifies a metric to minimize or maximize as the objective of a job. For CreateAutoMLJobV2, only Accuracy is supported.
|
4385
4395
|
*/
|
4386
4396
|
AutoMLJobObjective?: AutoMLJobObjective;
|
4387
4397
|
/**
|
@@ -11213,7 +11223,7 @@ declare namespace SageMaker {
|
|
11213
11223
|
*/
|
11214
11224
|
Type?: AutoMLJobObjectiveType;
|
11215
11225
|
/**
|
11216
|
-
* The name of the metric with the best result. For a description of the possible objective metrics, see
|
11226
|
+
* The name of the metric with the best result. For a description of the possible objective metrics, see AutoMLJobObjective$MetricName.
|
11217
11227
|
*/
|
11218
11228
|
MetricName: AutoMLMetricEnum;
|
11219
11229
|
/**
|
@@ -12040,7 +12050,7 @@ declare namespace SageMaker {
|
|
12040
12050
|
*/
|
12041
12051
|
MinResource?: HyperbandStrategyMinResource;
|
12042
12052
|
/**
|
12043
|
-
* 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
|
12053
|
+
* 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.
|
12044
12054
|
*/
|
12045
12055
|
MaxResource?: HyperbandStrategyMaxResource;
|
12046
12056
|
}
|
@@ -80,6 +80,10 @@ declare namespace SageMakerRuntime {
|
|
80
80
|
* The Amazon S3 URI where the inference response payload is stored.
|
81
81
|
*/
|
82
82
|
OutputLocation?: Header;
|
83
|
+
/**
|
84
|
+
* The Amazon S3 URI where the inference failure response payload is stored.
|
85
|
+
*/
|
86
|
+
FailureLocation?: Header;
|
83
87
|
}
|
84
88
|
export interface InvokeEndpointInput {
|
85
89
|
/**
|
@@ -2986,7 +2986,7 @@ declare namespace ServiceCatalog {
|
|
2986
2986
|
export type Principals = Principal[];
|
2987
2987
|
export type ProductArn = string;
|
2988
2988
|
export type ProductSource = "ACCOUNT"|string;
|
2989
|
-
export type ProductType = "CLOUD_FORMATION_TEMPLATE"|"MARKETPLACE"|"
|
2989
|
+
export type ProductType = "CLOUD_FORMATION_TEMPLATE"|"MARKETPLACE"|"TERRAFORM_OPEN_SOURCE"|string;
|
2990
2990
|
export type ProductViewAggregationType = string;
|
2991
2991
|
export interface ProductViewAggregationValue {
|
2992
2992
|
/**
|
@@ -3545,7 +3545,7 @@ declare namespace ServiceCatalog {
|
|
3545
3545
|
*/
|
3546
3546
|
ProvisioningArtifactMetadata?: ProvisioningArtifactInfo;
|
3547
3547
|
}
|
3548
|
-
export type ProvisioningArtifactType = "CLOUD_FORMATION_TEMPLATE"|"MARKETPLACE_AMI"|"MARKETPLACE_CAR"|"
|
3548
|
+
export type ProvisioningArtifactType = "CLOUD_FORMATION_TEMPLATE"|"MARKETPLACE_AMI"|"MARKETPLACE_CAR"|"TERRAFORM_OPEN_SOURCE"|string;
|
3549
3549
|
export interface ProvisioningArtifactView {
|
3550
3550
|
/**
|
3551
3551
|
* Summary information about a product view.
|
@@ -68,11 +68,11 @@ declare class VPCLattice extends Service {
|
|
68
68
|
*/
|
69
69
|
createServiceNetworkServiceAssociation(callback?: (err: AWSError, data: VPCLattice.Types.CreateServiceNetworkServiceAssociationResponse) => void): Request<VPCLattice.Types.CreateServiceNetworkServiceAssociationResponse, AWSError>;
|
70
70
|
/**
|
71
|
-
* Associates a VPC with a service network. When you associate a VPC with the service network, it enables all the resources within that VPC to be clients and communicate with other services in the service network. For more information, see Manage VPC associations in the Amazon VPC Lattice User Guide. You can't use this operation if there is a disassociation in progress. If the association fails, retry by deleting the association and recreating it. As a result of this operation, the association gets created in the service network account and the VPC owner account.
|
71
|
+
* Associates a VPC with a service network. When you associate a VPC with the service network, it enables all the resources within that VPC to be clients and communicate with other services in the service network. For more information, see Manage VPC associations in the Amazon VPC Lattice User Guide. You can't use this operation if there is a disassociation in progress. If the association fails, retry by deleting the association and recreating it. As a result of this operation, the association gets created in the service network account and the VPC owner account. If you add a security group to the service network and VPC association, the association must continue to always have at least one security group. You can add or edit security groups at any time. However, to remove all security groups, you must first delete the association and recreate it without security groups.
|
72
72
|
*/
|
73
73
|
createServiceNetworkVpcAssociation(params: VPCLattice.Types.CreateServiceNetworkVpcAssociationRequest, callback?: (err: AWSError, data: VPCLattice.Types.CreateServiceNetworkVpcAssociationResponse) => void): Request<VPCLattice.Types.CreateServiceNetworkVpcAssociationResponse, AWSError>;
|
74
74
|
/**
|
75
|
-
* Associates a VPC with a service network. When you associate a VPC with the service network, it enables all the resources within that VPC to be clients and communicate with other services in the service network. For more information, see Manage VPC associations in the Amazon VPC Lattice User Guide. You can't use this operation if there is a disassociation in progress. If the association fails, retry by deleting the association and recreating it. As a result of this operation, the association gets created in the service network account and the VPC owner account.
|
75
|
+
* Associates a VPC with a service network. When you associate a VPC with the service network, it enables all the resources within that VPC to be clients and communicate with other services in the service network. For more information, see Manage VPC associations in the Amazon VPC Lattice User Guide. You can't use this operation if there is a disassociation in progress. If the association fails, retry by deleting the association and recreating it. As a result of this operation, the association gets created in the service network account and the VPC owner account. If you add a security group to the service network and VPC association, the association must continue to always have at least one security group. You can add or edit security groups at any time. However, to remove all security groups, you must first delete the association and recreate it without security groups.
|
76
76
|
*/
|
77
77
|
createServiceNetworkVpcAssociation(callback?: (err: AWSError, data: VPCLattice.Types.CreateServiceNetworkVpcAssociationResponse) => void): Request<VPCLattice.Types.CreateServiceNetworkVpcAssociationResponse, AWSError>;
|
78
78
|
/**
|
@@ -92,11 +92,11 @@ declare class VPCLattice extends Service {
|
|
92
92
|
*/
|
93
93
|
deleteAccessLogSubscription(callback?: (err: AWSError, data: VPCLattice.Types.DeleteAccessLogSubscriptionResponse) => void): Request<VPCLattice.Types.DeleteAccessLogSubscriptionResponse, AWSError>;
|
94
94
|
/**
|
95
|
-
* Deletes the specified auth policy. If an auth is set to
|
95
|
+
* Deletes the specified auth policy. If an auth is set to AWS_IAM and the auth policy is deleted, all requests will be denied by default. If you are trying to remove the auth policy completely, you must set the auth_type to NONE. If auth is enabled on the resource, but no auth policy is set, all requests will be denied.
|
96
96
|
*/
|
97
97
|
deleteAuthPolicy(params: VPCLattice.Types.DeleteAuthPolicyRequest, callback?: (err: AWSError, data: VPCLattice.Types.DeleteAuthPolicyResponse) => void): Request<VPCLattice.Types.DeleteAuthPolicyResponse, AWSError>;
|
98
98
|
/**
|
99
|
-
* Deletes the specified auth policy. If an auth is set to
|
99
|
+
* Deletes the specified auth policy. If an auth is set to AWS_IAM and the auth policy is deleted, all requests will be denied by default. If you are trying to remove the auth policy completely, you must set the auth_type to NONE. If auth is enabled on the resource, but no auth policy is set, all requests will be denied.
|
100
100
|
*/
|
101
101
|
deleteAuthPolicy(callback?: (err: AWSError, data: VPCLattice.Types.DeleteAuthPolicyResponse) => void): Request<VPCLattice.Types.DeleteAuthPolicyResponse, AWSError>;
|
102
102
|
/**
|
@@ -196,11 +196,11 @@ declare class VPCLattice extends Service {
|
|
196
196
|
*/
|
197
197
|
getListener(callback?: (err: AWSError, data: VPCLattice.Types.GetListenerResponse) => void): Request<VPCLattice.Types.GetListenerResponse, AWSError>;
|
198
198
|
/**
|
199
|
-
* Retrieves information about the resource policy. The resource policy is an IAM policy created
|
199
|
+
* Retrieves information about the resource policy. The resource policy is an IAM policy created on behalf of the resource owner when they share a resource.
|
200
200
|
*/
|
201
201
|
getResourcePolicy(params: VPCLattice.Types.GetResourcePolicyRequest, callback?: (err: AWSError, data: VPCLattice.Types.GetResourcePolicyResponse) => void): Request<VPCLattice.Types.GetResourcePolicyResponse, AWSError>;
|
202
202
|
/**
|
203
|
-
* Retrieves information about the resource policy. The resource policy is an IAM policy created
|
203
|
+
* Retrieves information about the resource policy. The resource policy is an IAM policy created on behalf of the resource owner when they share a resource.
|
204
204
|
*/
|
205
205
|
getResourcePolicy(callback?: (err: AWSError, data: VPCLattice.Types.GetResourcePolicyResponse) => void): Request<VPCLattice.Types.GetResourcePolicyResponse, AWSError>;
|
206
206
|
/**
|
@@ -332,11 +332,11 @@ declare class VPCLattice extends Service {
|
|
332
332
|
*/
|
333
333
|
listTargets(callback?: (err: AWSError, data: VPCLattice.Types.ListTargetsResponse) => void): Request<VPCLattice.Types.ListTargetsResponse, AWSError>;
|
334
334
|
/**
|
335
|
-
* Creates or updates the auth policy.
|
335
|
+
* Creates or updates the auth policy. The policy string in JSON must not contain newlines or blank lines.
|
336
336
|
*/
|
337
337
|
putAuthPolicy(params: VPCLattice.Types.PutAuthPolicyRequest, callback?: (err: AWSError, data: VPCLattice.Types.PutAuthPolicyResponse) => void): Request<VPCLattice.Types.PutAuthPolicyResponse, AWSError>;
|
338
338
|
/**
|
339
|
-
* Creates or updates the auth policy.
|
339
|
+
* Creates or updates the auth policy. The policy string in JSON must not contain newlines or blank lines.
|
340
340
|
*/
|
341
341
|
putAuthPolicy(callback?: (err: AWSError, data: VPCLattice.Types.PutAuthPolicyResponse) => void): Request<VPCLattice.Types.PutAuthPolicyResponse, AWSError>;
|
342
342
|
/**
|
@@ -412,11 +412,11 @@ declare class VPCLattice extends Service {
|
|
412
412
|
*/
|
413
413
|
updateServiceNetwork(callback?: (err: AWSError, data: VPCLattice.Types.UpdateServiceNetworkResponse) => void): Request<VPCLattice.Types.UpdateServiceNetworkResponse, AWSError>;
|
414
414
|
/**
|
415
|
-
* Updates the service network and VPC association.
|
415
|
+
* Updates the service network and VPC association. If you add a security group to the service network and VPC association, the association must continue to always have at least one security group. You can add or edit security groups at any time. However, to remove all security groups, you must first delete the association and recreate it without security groups.
|
416
416
|
*/
|
417
417
|
updateServiceNetworkVpcAssociation(params: VPCLattice.Types.UpdateServiceNetworkVpcAssociationRequest, callback?: (err: AWSError, data: VPCLattice.Types.UpdateServiceNetworkVpcAssociationResponse) => void): Request<VPCLattice.Types.UpdateServiceNetworkVpcAssociationResponse, AWSError>;
|
418
418
|
/**
|
419
|
-
* Updates the service network and VPC association.
|
419
|
+
* Updates the service network and VPC association. If you add a security group to the service network and VPC association, the association must continue to always have at least one security group. You can add or edit security groups at any time. However, to remove all security groups, you must first delete the association and recreate it without security groups.
|
420
420
|
*/
|
421
421
|
updateServiceNetworkVpcAssociation(callback?: (err: AWSError, data: VPCLattice.Types.UpdateServiceNetworkVpcAssociationResponse) => void): Request<VPCLattice.Types.UpdateServiceNetworkVpcAssociationResponse, AWSError>;
|
422
422
|
/**
|
@@ -1138,7 +1138,7 @@ declare namespace VPCLattice {
|
|
1138
1138
|
*/
|
1139
1139
|
policy?: AuthPolicyString;
|
1140
1140
|
/**
|
1141
|
-
* The state of the auth policy. The auth policy is only active when the auth type is set to
|
1141
|
+
* The state of the auth policy. The auth policy is only active when the auth type is set to AWS_IAM. If you provide a policy, then authentication and authorization decisions are made based on this policy and the client's IAM policy. If the auth type is NONE, then any auth policy you provide will remain inactive. For more information, see Create a service network in the Amazon VPC Lattice User Guide.
|
1142
1142
|
*/
|
1143
1143
|
state?: AuthPolicyState;
|
1144
1144
|
}
|
@@ -1196,13 +1196,13 @@ declare namespace VPCLattice {
|
|
1196
1196
|
}
|
1197
1197
|
export interface GetResourcePolicyRequest {
|
1198
1198
|
/**
|
1199
|
-
*
|
1199
|
+
* The Amazon Resource Name (ARN) of the service network or service.
|
1200
1200
|
*/
|
1201
1201
|
resourceArn: ResourceArn;
|
1202
1202
|
}
|
1203
1203
|
export interface GetResourcePolicyResponse {
|
1204
1204
|
/**
|
1205
|
-
*
|
1205
|
+
* An IAM policy.
|
1206
1206
|
*/
|
1207
1207
|
policy?: PolicyString;
|
1208
1208
|
}
|
@@ -1945,7 +1945,7 @@ declare namespace VPCLattice {
|
|
1945
1945
|
export type Port = number;
|
1946
1946
|
export interface PutAuthPolicyRequest {
|
1947
1947
|
/**
|
1948
|
-
* The auth policy.
|
1948
|
+
* The auth policy. The policy string in JSON must not contain newlines or blank lines.
|
1949
1949
|
*/
|
1950
1950
|
policy: AuthPolicyString;
|
1951
1951
|
/**
|
@@ -1955,17 +1955,17 @@ declare namespace VPCLattice {
|
|
1955
1955
|
}
|
1956
1956
|
export interface PutAuthPolicyResponse {
|
1957
1957
|
/**
|
1958
|
-
* The auth policy.
|
1958
|
+
* The auth policy. The policy string in JSON must not contain newlines or blank lines.
|
1959
1959
|
*/
|
1960
1960
|
policy?: AuthPolicyString;
|
1961
1961
|
/**
|
1962
|
-
* The state of the auth policy. The auth policy is only active when the auth type is set to
|
1962
|
+
* The state of the auth policy. The auth policy is only active when the auth type is set to AWS_IAM. If you provide a policy, then authentication and authorization decisions are made based on this policy and the client's IAM policy. If the Auth type is NONE, then, any auth policy you provide will remain inactive. For more information, see Create a service network in the Amazon VPC Lattice User Guide.
|
1963
1963
|
*/
|
1964
1964
|
state?: AuthPolicyState;
|
1965
1965
|
}
|
1966
1966
|
export interface PutResourcePolicyRequest {
|
1967
1967
|
/**
|
1968
|
-
* An IAM policy.
|
1968
|
+
* An IAM policy. The policy string in JSON must not contain newlines or blank lines.
|
1969
1969
|
*/
|
1970
1970
|
policy: PolicyString;
|
1971
1971
|
/**
|
@@ -2634,7 +2634,7 @@ declare namespace VPCLattice {
|
|
2634
2634
|
}
|
2635
2635
|
export interface UpdateServiceNetworkVpcAssociationRequest {
|
2636
2636
|
/**
|
2637
|
-
* The IDs of the security groups.
|
2637
|
+
* The IDs of the security groups.
|
2638
2638
|
*/
|
2639
2639
|
securityGroupIds: UpdateServiceNetworkVpcAssociationRequestSecurityGroupIdsList;
|
2640
2640
|
/**
|