cdk-comprehend-s3olap 2.0.114 → 2.0.116

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/.jsii +4 -4
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +18 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/amplifyuibuilder-2021-08-11.min.json +563 -490
  8. package/node_modules/aws-sdk/apis/amplifyuibuilder-2021-08-11.waiters2.json +5 -0
  9. package/node_modules/aws-sdk/apis/glue-2017-03-31.min.json +202 -181
  10. package/node_modules/aws-sdk/apis/lakeformation-2017-03-31.min.json +23 -14
  11. package/node_modules/aws-sdk/apis/license-manager-2018-08-01.min.json +136 -124
  12. package/node_modules/aws-sdk/apis/mwaa-2020-07-01.min.json +6 -0
  13. package/node_modules/aws-sdk/apis/runtime.sagemaker-2017-05-13.min.json +4 -0
  14. package/node_modules/aws-sdk/apis/sagemaker-2017-07-24.min.json +657 -655
  15. package/node_modules/aws-sdk/apis/servicecatalog-2015-12-10.min.json +99 -9
  16. package/node_modules/aws-sdk/clients/amplifyuibuilder.d.ts +451 -350
  17. package/node_modules/aws-sdk/clients/amplifyuibuilder.js +1 -0
  18. package/node_modules/aws-sdk/clients/autoscaling.d.ts +18 -18
  19. package/node_modules/aws-sdk/clients/ec2.d.ts +1 -1
  20. package/node_modules/aws-sdk/clients/elasticinference.d.ts +12 -12
  21. package/node_modules/aws-sdk/clients/glue.d.ts +45 -8
  22. package/node_modules/aws-sdk/clients/lakeformation.d.ts +12 -0
  23. package/node_modules/aws-sdk/clients/licensemanager.d.ts +25 -10
  24. package/node_modules/aws-sdk/clients/mwaa.d.ts +68 -44
  25. package/node_modules/aws-sdk/clients/sagemaker.d.ts +30 -20
  26. package/node_modules/aws-sdk/clients/sagemakerruntime.d.ts +4 -0
  27. package/node_modules/aws-sdk/clients/servicecatalog.d.ts +210 -81
  28. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  29. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +297 -290
  30. package/node_modules/aws-sdk/dist/aws-sdk.js +102 -12
  31. package/node_modules/aws-sdk/dist/aws-sdk.min.js +20 -20
  32. package/node_modules/aws-sdk/lib/core.js +1 -1
  33. package/node_modules/aws-sdk/package.json +1 -1
  34. package/package.json +5 -5
@@ -44,19 +44,19 @@ declare class LicenseManager extends Service {
44
44
  */
45
45
  checkoutLicense(callback?: (err: AWSError, data: LicenseManager.Types.CheckoutLicenseResponse) => void): Request<LicenseManager.Types.CheckoutLicenseResponse, AWSError>;
46
46
  /**
47
- * Creates a grant for the specified license. A grant shares the use of license entitlements with specific Amazon Web Services accounts.
47
+ * Creates a grant for the specified license. A grant shares the use of license entitlements with a specific Amazon Web Services account, an organization, or an organizational unit (OU). For more information, see Granted licenses in License Manager in the License Manager User Guide.
48
48
  */
49
49
  createGrant(params: LicenseManager.Types.CreateGrantRequest, callback?: (err: AWSError, data: LicenseManager.Types.CreateGrantResponse) => void): Request<LicenseManager.Types.CreateGrantResponse, AWSError>;
50
50
  /**
51
- * Creates a grant for the specified license. A grant shares the use of license entitlements with specific Amazon Web Services accounts.
51
+ * Creates a grant for the specified license. A grant shares the use of license entitlements with a specific Amazon Web Services account, an organization, or an organizational unit (OU). For more information, see Granted licenses in License Manager in the License Manager User Guide.
52
52
  */
53
53
  createGrant(callback?: (err: AWSError, data: LicenseManager.Types.CreateGrantResponse) => void): Request<LicenseManager.Types.CreateGrantResponse, AWSError>;
54
54
  /**
55
- * Creates a new version of the specified grant.
55
+ * Creates a new version of the specified grant. For more information, see Granted licenses in License Manager in the License Manager User Guide.
56
56
  */
57
57
  createGrantVersion(params: LicenseManager.Types.CreateGrantVersionRequest, callback?: (err: AWSError, data: LicenseManager.Types.CreateGrantVersionResponse) => void): Request<LicenseManager.Types.CreateGrantVersionResponse, AWSError>;
58
58
  /**
59
- * Creates a new version of the specified grant.
59
+ * Creates a new version of the specified grant. For more information, see Granted licenses in License Manager in the License Manager User Guide.
60
60
  */
61
61
  createGrantVersion(callback?: (err: AWSError, data: LicenseManager.Types.CreateGrantVersionResponse) => void): Request<LicenseManager.Types.CreateGrantVersionResponse, AWSError>;
62
62
  /**
@@ -292,11 +292,11 @@ declare class LicenseManager extends Service {
292
292
  */
293
293
  listLicenses(callback?: (err: AWSError, data: LicenseManager.Types.ListLicensesResponse) => void): Request<LicenseManager.Types.ListLicensesResponse, AWSError>;
294
294
  /**
295
- * Lists grants that are received but not accepted.
295
+ * Lists grants that are received. Received grants are grants created while specifying the recipient as this Amazon Web Services account, your organization, or an organizational unit (OU) to which this member account belongs.
296
296
  */
297
297
  listReceivedGrants(params: LicenseManager.Types.ListReceivedGrantsRequest, callback?: (err: AWSError, data: LicenseManager.Types.ListReceivedGrantsResponse) => void): Request<LicenseManager.Types.ListReceivedGrantsResponse, AWSError>;
298
298
  /**
299
- * Lists grants that are received but not accepted.
299
+ * Lists grants that are received. Received grants are grants created while specifying the recipient as this Amazon Web Services account, your organization, or an organizational unit (OU) to which this member account belongs.
300
300
  */
301
301
  listReceivedGrants(callback?: (err: AWSError, data: LicenseManager.Types.ListReceivedGrantsResponse) => void): Request<LicenseManager.Types.ListReceivedGrantsResponse, AWSError>;
302
302
  /**
@@ -433,6 +433,7 @@ declare namespace LicenseManager {
433
433
  */
434
434
  Version?: String;
435
435
  }
436
+ export type ActivationOverrideBehavior = "DISTRIBUTED_GRANTS_ONLY"|"ALL_GRANTS_PERMITTED_BY_ISSUER"|string;
436
437
  export type AllowedOperation = "CreateGrant"|"CheckoutLicense"|"CheckoutBorrowLicense"|"CheckInLicense"|"ExtendConsumptionLicense"|"ListPurchasedLicenses"|"CreateToken"|string;
437
438
  export type AllowedOperationList = AllowedOperation[];
438
439
  export type Arn = string;
@@ -635,7 +636,7 @@ declare namespace LicenseManager {
635
636
  */
636
637
  LicenseArn: Arn;
637
638
  /**
638
- * The grant principals. This value should be specified as an Amazon Resource Name (ARN).
639
+ * The grant principals. You can specify one of the following as an Amazon Resource Name (ARN): An Amazon Web Services account, which includes only the account specified. An organizational unit (OU), which includes all accounts in the OU. An organization, which will include all accounts across your organization.
639
640
  */
640
641
  Principals: PrincipalArnList;
641
642
  /**
@@ -690,6 +691,10 @@ declare namespace LicenseManager {
690
691
  * Current version of the grant.
691
692
  */
692
693
  SourceVersion?: String;
694
+ /**
695
+ * The options specified for the grant.
696
+ */
697
+ Options?: Options;
693
698
  }
694
699
  export interface CreateGrantVersionResponse {
695
700
  /**
@@ -755,11 +760,11 @@ declare namespace LicenseManager {
755
760
  */
756
761
  ResourceArn: Arn;
757
762
  /**
758
- * Information that identifies the license type you are converting from. For the structure of the source license, see Convert a license type using the Amazon Web Services CLI in the License Manager User Guide.
763
+ * Information that identifies the license type you are converting from. For the structure of the source license, see Convert a license type using the CLI in the License Manager User Guide.
759
764
  */
760
765
  SourceLicenseContext: LicenseConversionContext;
761
766
  /**
762
- * Information that identifies the license type you are converting to. For the structure of the destination license, see Convert a license type using the Amazon Web Services CLI in the License Manager User Guide.
767
+ * Information that identifies the license type you are converting to. For the structure of the destination license, see Convert a license type using the CLI in the License Manager User Guide.
763
768
  */
764
769
  DestinationLicenseContext: LicenseConversionContext;
765
770
  }
@@ -1138,7 +1143,7 @@ declare namespace LicenseManager {
1138
1143
  */
1139
1144
  Name?: FilterName;
1140
1145
  /**
1141
- * Filter values. Filter values are case-sensitive.
1146
+ * The value of the filter, which is case-sensitive. You can only specify one value for the filter.
1142
1147
  */
1143
1148
  Values?: FilterValues;
1144
1149
  }
@@ -1404,6 +1409,10 @@ declare namespace LicenseManager {
1404
1409
  * Granted operations.
1405
1410
  */
1406
1411
  GrantedOperations: AllowedOperationList;
1412
+ /**
1413
+ * The options specified for the grant.
1414
+ */
1415
+ Options?: Options;
1407
1416
  }
1408
1417
  export type GrantList = Grant[];
1409
1418
  export type GrantStatus = "PENDING_WORKFLOW"|"PENDING_ACCEPT"|"REJECTED"|"ACTIVE"|"FAILED_WORKFLOW"|"DELETED"|"PENDING_DELETE"|"DISABLED"|"WORKFLOW_COMPLETED"|string;
@@ -2244,6 +2253,12 @@ declare namespace LicenseManager {
2244
2253
  Value?: String;
2245
2254
  }
2246
2255
  export type MetadataList = Metadata[];
2256
+ export interface Options {
2257
+ /**
2258
+ * An activation option for your grant that determines the behavior of activating a grant. Activation options can only be used with granted licenses sourced from the Amazon Web Services Marketplace. Additionally, the operation must specify the value of ACTIVE for the Status parameter. As a license administrator, you can optionally specify an ActivationOverrideBehavior when activating a grant. As a grantor, you can optionally specify an ActivationOverrideBehavior when you activate a grant for a grantee account in your organization. As a grantee, if the grantor creating the distributed grant doesn’t specify an ActivationOverrideBehavior, you can optionally specify one when you are activating the grant. DISTRIBUTED_GRANTS_ONLY Use this value to activate a grant without replacing any member account’s active grants for the same product. ALL_GRANTS_PERMITTED_BY_ISSUER Use this value to activate a grant and disable other active grants in any member accounts for the same product. This action will also replace their previously activated grants with this activated grant.
2259
+ */
2260
+ ActivationOverrideBehavior?: ActivationOverrideBehavior;
2261
+ }
2247
2262
  export interface OrganizationConfiguration {
2248
2263
  /**
2249
2264
  * Enables Organizations integration.
@@ -124,7 +124,7 @@ declare namespace MWAA {
124
124
  }
125
125
  export interface CreateEnvironmentInput {
126
126
  /**
127
- * A list of key-value pairs containing the Apache Airflow configuration options you want to attach to your environment. To learn more, see Apache Airflow configuration options.
127
+ * A list of key-value pairs containing the Apache Airflow configuration options you want to attach to your environment. For more information, see Apache Airflow configuration options.
128
128
  */
129
129
  AirflowConfigurationOptions?: AirflowConfigurationOptions;
130
130
  /**
@@ -132,19 +132,19 @@ declare namespace MWAA {
132
132
  */
133
133
  AirflowVersion?: AirflowVersion;
134
134
  /**
135
- * The relative path to the DAGs folder on your Amazon S3 bucket. For example, dags. To learn more, see Adding or updating DAGs.
135
+ * The relative path to the DAGs folder on your Amazon S3 bucket. For example, dags. For more information, see Adding or updating DAGs.
136
136
  */
137
137
  DagS3Path: RelativePath;
138
138
  /**
139
- * The environment class type. Valid values: mw1.small, mw1.medium, mw1.large. To learn more, see Amazon MWAA environment class.
139
+ * The environment class type. Valid values: mw1.small, mw1.medium, mw1.large. For more information, see Amazon MWAA environment class.
140
140
  */
141
141
  EnvironmentClass?: EnvironmentClass;
142
142
  /**
143
- * The Amazon Resource Name (ARN) of the execution role for your environment. An execution role is an Amazon Web Services Identity and Access Management (IAM) role that grants MWAA permission to access Amazon Web Services services and resources used by your environment. For example, arn:aws:iam::123456789:role/my-execution-role. To learn more, see Amazon MWAA Execution role.
143
+ * The Amazon Resource Name (ARN) of the execution role for your environment. An execution role is an Amazon Web Services Identity and Access Management (IAM) role that grants MWAA permission to access Amazon Web Services services and resources used by your environment. For example, arn:aws:iam::123456789:role/my-execution-role. For more information, see Amazon MWAA Execution role.
144
144
  */
145
145
  ExecutionRoleArn: IamRoleArn;
146
146
  /**
147
- * The Amazon Web Services Key Management Service (KMS) key to encrypt the data in your environment. You can use an Amazon Web Services owned CMK, or a Customer managed CMK (advanced). To learn more, see Create an Amazon MWAA environment.
147
+ * The Amazon Web Services Key Management Service (KMS) key to encrypt the data in your environment. You can use an Amazon Web Services owned CMK, or a Customer managed CMK (advanced). For more information, see Create an Amazon MWAA environment.
148
148
  */
149
149
  KmsKey?: KmsKey;
150
150
  /**
@@ -164,23 +164,23 @@ declare namespace MWAA {
164
164
  */
165
165
  Name: EnvironmentName;
166
166
  /**
167
- * The VPC networking components used to secure and enable network traffic between the Amazon Web Services resources for your environment. To learn more, see About networking on Amazon MWAA.
167
+ * The VPC networking components used to secure and enable network traffic between the Amazon Web Services resources for your environment. For more information, see About networking on Amazon MWAA.
168
168
  */
169
169
  NetworkConfiguration: NetworkConfiguration;
170
170
  /**
171
- * The version of the plugins.zip file on your Amazon S3 bucket. A version must be specified each time a plugins.zip file is updated. To learn more, see How S3 Versioning works.
171
+ * The version of the plugins.zip file on your Amazon S3 bucket. You must specify a version each time a plugins.zip file is updated. For more information, see How S3 Versioning works.
172
172
  */
173
173
  PluginsS3ObjectVersion?: S3ObjectVersion;
174
174
  /**
175
- * The relative path to the plugins.zip file on your Amazon S3 bucket. For example, plugins.zip. If specified, then the plugins.zip version is required. To learn more, see Installing custom plugins.
175
+ * The relative path to the plugins.zip file on your Amazon S3 bucket. For example, plugins.zip. If specified, then the plugins.zip version is required. For more information, see Installing custom plugins.
176
176
  */
177
177
  PluginsS3Path?: RelativePath;
178
178
  /**
179
- * The version of the requirements.txt file on your Amazon S3 bucket. A version must be specified each time a requirements.txt file is updated. To learn more, see How S3 Versioning works.
179
+ * The version of the requirements.txt file on your Amazon S3 bucket. You must specify a version each time a requirements.txt file is updated. For more information, see How S3 Versioning works.
180
180
  */
181
181
  RequirementsS3ObjectVersion?: S3ObjectVersion;
182
182
  /**
183
- * The relative path to the requirements.txt file on your Amazon S3 bucket. For example, requirements.txt. If specified, then a file version is required. To learn more, see Installing Python dependencies.
183
+ * The relative path to the requirements.txt file on your Amazon S3 bucket. For example, requirements.txt. If specified, then a version is required. For more information, see Installing Python dependencies.
184
184
  */
185
185
  RequirementsS3Path?: RelativePath;
186
186
  /**
@@ -188,15 +188,23 @@ declare namespace MWAA {
188
188
  */
189
189
  Schedulers?: Schedulers;
190
190
  /**
191
- * The Amazon Resource Name (ARN) of the Amazon S3 bucket where your DAG code and supporting files are stored. For example, arn:aws:s3:::my-airflow-bucket-unique-name. To learn more, see Create an Amazon S3 bucket for Amazon MWAA.
191
+ * The Amazon Resource Name (ARN) of the Amazon S3 bucket where your DAG code and supporting files are stored. For example, arn:aws:s3:::my-airflow-bucket-unique-name. For more information, see Create an Amazon S3 bucket for Amazon MWAA.
192
192
  */
193
193
  SourceBucketArn: S3BucketArn;
194
194
  /**
195
- * The key-value tag pairs you want to associate to your environment. For example, "Environment": "Staging". To learn more, see Tagging Amazon Web Services resources.
195
+ * The version of the startup shell script in your Amazon S3 bucket. You must specify the version ID that Amazon S3 assigns to the file every time you update the script. Version IDs are Unicode, UTF-8 encoded, URL-ready, opaque strings that are no more than 1,024 bytes long. The following is an example: 3sL4kqtJlcpXroDTDmJ+rmSpXd3dIbrHY+MTRCxf3vjVBH40Nr8X8gdRQBpUMLUo For more information, see Using a startup script.
196
+ */
197
+ StartupScriptS3ObjectVersion?: S3ObjectVersion;
198
+ /**
199
+ * The relative path to the startup shell script in your Amazon S3 bucket. For example, s3://mwaa-environment/startup.sh. Amazon MWAA runs the script as your environment starts, and before running the Apache Airflow process. You can use this script to install dependencies, modify Apache Airflow configuration options, and set environment variables. For more information, see Using a startup script.
200
+ */
201
+ StartupScriptS3Path?: RelativePath;
202
+ /**
203
+ * The key-value tag pairs you want to associate to your environment. For example, "Environment": "Staging". For more information, see Tagging Amazon Web Services resources.
196
204
  */
197
205
  Tags?: TagMap;
198
206
  /**
199
- * The Apache Airflow Web server access mode. To learn more, see Apache Airflow access modes.
207
+ * The Apache Airflow Web server access mode. For more information, see Apache Airflow access modes.
200
208
  */
201
209
  WebserverAccessMode?: WebserverAccessMode;
202
210
  /**
@@ -249,7 +257,7 @@ declare namespace MWAA {
249
257
  export type Double = number;
250
258
  export interface Environment {
251
259
  /**
252
- * A list of key-value pairs containing the Apache Airflow configuration options attached to your environment. To learn more, see Apache Airflow configuration options.
260
+ * A list of key-value pairs containing the Apache Airflow configuration options attached to your environment. For more information, see Apache Airflow configuration options.
253
261
  */
254
262
  AirflowConfigurationOptions?: AirflowConfigurationOptions;
255
263
  /**
@@ -265,15 +273,15 @@ declare namespace MWAA {
265
273
  */
266
274
  CreatedAt?: CreatedAt;
267
275
  /**
268
- * The relative path to the DAGs folder on your Amazon S3 bucket. For example, dags. To learn more, see Adding or updating DAGs.
276
+ * The relative path to the DAGs folder in your Amazon S3 bucket. For example, s3://mwaa-environment/dags. For more information, see Adding or updating DAGs.
269
277
  */
270
278
  DagS3Path?: RelativePath;
271
279
  /**
272
- * The environment class type. Valid values: mw1.small, mw1.medium, mw1.large. To learn more, see Amazon MWAA environment class.
280
+ * The environment class type. Valid values: mw1.small, mw1.medium, mw1.large. For more information, see Amazon MWAA environment class.
273
281
  */
274
282
  EnvironmentClass?: EnvironmentClass;
275
283
  /**
276
- * The Amazon Resource Name (ARN) of the execution role in IAM that allows MWAA to access Amazon Web Services resources in your environment. For example, arn:aws:iam::123456789:role/my-execution-role. To learn more, see Amazon MWAA Execution role.
284
+ * The Amazon Resource Name (ARN) of the execution role in IAM that allows MWAA to access Amazon Web Services resources in your environment. For example, arn:aws:iam::123456789:role/my-execution-role. For more information, see Amazon MWAA Execution role.
277
285
  */
278
286
  ExecutionRoleArn?: IamRoleArn;
279
287
  /**
@@ -301,23 +309,23 @@ declare namespace MWAA {
301
309
  */
302
310
  Name?: EnvironmentName;
303
311
  /**
304
- * Describes the VPC networking components used to secure and enable network traffic between the Amazon Web Services resources for your environment. To learn more, see About networking on Amazon MWAA.
312
+ * Describes the VPC networking components used to secure and enable network traffic between the Amazon Web Services resources for your environment. For more information, see About networking on Amazon MWAA.
305
313
  */
306
314
  NetworkConfiguration?: NetworkConfiguration;
307
315
  /**
308
- * The version of the plugins.zip file on your Amazon S3 bucket. To learn more, see Installing custom plugins.
316
+ * The version of the plugins.zip file in your Amazon S3 bucket. You must specify the version ID that Amazon S3 assigns to the file. Version IDs are Unicode, UTF-8 encoded, URL-ready, opaque strings that are no more than 1,024 bytes long. The following is an example: 3sL4kqtJlcpXroDTDmJ+rmSpXd3dIbrHY+MTRCxf3vjVBH40Nr8X8gdRQBpUMLUo For more information, see Installing custom plugins.
309
317
  */
310
318
  PluginsS3ObjectVersion?: S3ObjectVersion;
311
319
  /**
312
- * The relative path to the plugins.zip file on your Amazon S3 bucket. For example, plugins.zip. To learn more, see Installing custom plugins.
320
+ * The relative path to the file in your Amazon S3 bucket. For example, s3://mwaa-environment/plugins.zip. For more information, see Installing custom plugins.
313
321
  */
314
322
  PluginsS3Path?: RelativePath;
315
323
  /**
316
- * The version of the requirements.txt file on your Amazon S3 bucket. To learn more, see Installing Python dependencies.
324
+ * The version of the requirements.txt file on your Amazon S3 bucket. You must specify the version ID that Amazon S3 assigns to the file. Version IDs are Unicode, UTF-8 encoded, URL-ready, opaque strings that are no more than 1,024 bytes long. The following is an example: 3sL4kqtJlcpXroDTDmJ+rmSpXd3dIbrHY+MTRCxf3vjVBH40Nr8X8gdRQBpUMLUo For more information, see Installing Python dependencies.
317
325
  */
318
326
  RequirementsS3ObjectVersion?: S3ObjectVersion;
319
327
  /**
320
- * The relative path to the requirements.txt file on your Amazon S3 bucket. For example, requirements.txt. To learn more, see Installing Python dependencies.
328
+ * The relative path to the requirements.txt file in your Amazon S3 bucket. For example, s3://mwaa-environment/requirements.txt. For more information, see Installing Python dependencies.
321
329
  */
322
330
  RequirementsS3Path?: RelativePath;
323
331
  /**
@@ -325,27 +333,35 @@ declare namespace MWAA {
325
333
  */
326
334
  Schedulers?: Schedulers;
327
335
  /**
328
- * The Amazon Resource Name (ARN) for the service-linked role of the environment. To learn more, see Amazon MWAA Service-linked role.
336
+ * The Amazon Resource Name (ARN) for the service-linked role of the environment. For more information, see Amazon MWAA Service-linked role.
329
337
  */
330
338
  ServiceRoleArn?: IamRoleArn;
331
339
  /**
332
- * The Amazon Resource Name (ARN) of the Amazon S3 bucket where your DAG code and supporting files are stored. For example, arn:aws:s3:::my-airflow-bucket-unique-name. To learn more, see Create an Amazon S3 bucket for Amazon MWAA.
340
+ * The Amazon Resource Name (ARN) of the Amazon S3 bucket where your DAG code and supporting files are stored. For example, arn:aws:s3:::my-airflow-bucket-unique-name. For more information, see Create an Amazon S3 bucket for Amazon MWAA.
333
341
  */
334
342
  SourceBucketArn?: S3BucketArn;
335
343
  /**
336
- * The status of the Amazon MWAA environment. Valid values: CREATING - Indicates the request to create the environment is in progress. CREATE_FAILED - Indicates the request to create the environment failed, and the environment could not be created. AVAILABLE - Indicates the request was successful and the environment is ready to use. UPDATING - Indicates the request to update the environment is in progress. DELETING - Indicates the request to delete the environment is in progress. DELETED - Indicates the request to delete the environment is complete, and the environment has been deleted. UNAVAILABLE - Indicates the request failed, but the environment was unable to rollback and is not in a stable state. UPDATE_FAILED - Indicates the request to update the environment failed, and the environment has rolled back successfully and is ready to use. We recommend reviewing our troubleshooting guide for a list of common errors and their solutions. To learn more, see Amazon MWAA troubleshooting.
344
+ * The version of the startup shell script in your Amazon S3 bucket. You must specify the version ID that Amazon S3 assigns to the file. Version IDs are Unicode, UTF-8 encoded, URL-ready, opaque strings that are no more than 1,024 bytes long. The following is an example: 3sL4kqtJlcpXroDTDmJ+rmSpXd3dIbrHY+MTRCxf3vjVBH40Nr8X8gdRQBpUMLUo For more information, see Using a startup script.
345
+ */
346
+ StartupScriptS3ObjectVersion?: String;
347
+ /**
348
+ * The relative path to the startup shell script in your Amazon S3 bucket. For example, s3://mwaa-environment/startup.sh. Amazon MWAA runs the script as your environment starts, and before running the Apache Airflow process. You can use this script to install dependencies, modify Apache Airflow configuration options, and set environment variables. For more information, see Using a startup script.
349
+ */
350
+ StartupScriptS3Path?: String;
351
+ /**
352
+ * The status of the Amazon MWAA environment. Valid values: CREATING - Indicates the request to create the environment is in progress. CREATE_FAILED - Indicates the request to create the environment failed, and the environment could not be created. AVAILABLE - Indicates the request was successful and the environment is ready to use. UPDATING - Indicates the request to update the environment is in progress. DELETING - Indicates the request to delete the environment is in progress. DELETED - Indicates the request to delete the environment is complete, and the environment has been deleted. UNAVAILABLE - Indicates the request failed, but the environment was unable to rollback and is not in a stable state. UPDATE_FAILED - Indicates the request to update the environment failed, and the environment has rolled back successfully and is ready to use. We recommend reviewing our troubleshooting guide for a list of common errors and their solutions. For more information, see Amazon MWAA troubleshooting.
337
353
  */
338
354
  Status?: EnvironmentStatus;
339
355
  /**
340
- * The key-value tag pairs associated to your environment. For example, "Environment": "Staging". To learn more, see Tagging Amazon Web Services resources.
356
+ * The key-value tag pairs associated to your environment. For example, "Environment": "Staging". For more information, see Tagging Amazon Web Services resources.
341
357
  */
342
358
  Tags?: TagMap;
343
359
  /**
344
- * The Apache Airflow Web server access mode. To learn more, see Apache Airflow access modes.
360
+ * The Apache Airflow Web server access mode. For more information, see Apache Airflow access modes.
345
361
  */
346
362
  WebserverAccessMode?: WebserverAccessMode;
347
363
  /**
348
- * The Apache Airflow Web server host name for the Amazon MWAA environment. To learn more, see Accessing the Apache Airflow UI.
364
+ * The Apache Airflow Web server host name for the Amazon MWAA environment. For more information, see Accessing the Apache Airflow UI.
349
365
  */
350
366
  WebserverUrl?: WebserverUrl;
351
367
  /**
@@ -423,7 +439,7 @@ declare namespace MWAA {
423
439
  }
424
440
  export interface ListTagsForResourceOutput {
425
441
  /**
426
- * The key-value tag pairs associated to your environment. To learn more, see Tagging Amazon Web Services resources.
442
+ * The key-value tag pairs associated to your environment. For more information, see Tagging Amazon Web Services resources.
427
443
  */
428
444
  Tags?: TagMap;
429
445
  }
@@ -528,11 +544,11 @@ declare namespace MWAA {
528
544
  }
529
545
  export interface NetworkConfiguration {
530
546
  /**
531
- * A list of security group IDs. To learn more, see Security in your VPC on Amazon MWAA.
547
+ * A list of security group IDs. For more information, see Security in your VPC on Amazon MWAA.
532
548
  */
533
549
  SecurityGroupIds?: SecurityGroupList;
534
550
  /**
535
- * A list of subnet IDs. To learn more, see About networking on Amazon MWAA.
551
+ * A list of subnet IDs. For more information, see About networking on Amazon MWAA.
536
552
  */
537
553
  SubnetIds?: SubnetList;
538
554
  }
@@ -585,7 +601,7 @@ declare namespace MWAA {
585
601
  */
586
602
  ResourceArn: EnvironmentArn;
587
603
  /**
588
- * The key-value tag pairs you want to associate to your environment. For example, "Environment": "Staging". To learn more, see Tagging Amazon Web Services resources.
604
+ * The key-value tag pairs you want to associate to your environment. For example, "Environment": "Staging". For more information, see Tagging Amazon Web Services resources.
589
605
  */
590
606
  Tags: TagMap;
591
607
  }
@@ -610,7 +626,7 @@ declare namespace MWAA {
610
626
  export type UpdateCreatedAt = Date;
611
627
  export interface UpdateEnvironmentInput {
612
628
  /**
613
- * A list of key-value pairs containing the Apache Airflow configuration options you want to attach to your environment. To learn more, see Apache Airflow configuration options.
629
+ * A list of key-value pairs containing the Apache Airflow configuration options you want to attach to your environment. For more information, see Apache Airflow configuration options.
614
630
  */
615
631
  AirflowConfigurationOptions?: AirflowConfigurationOptions;
616
632
  /**
@@ -618,15 +634,15 @@ declare namespace MWAA {
618
634
  */
619
635
  AirflowVersion?: AirflowVersion;
620
636
  /**
621
- * The relative path to the DAGs folder on your Amazon S3 bucket. For example, dags. To learn more, see Adding or updating DAGs.
637
+ * The relative path to the DAGs folder on your Amazon S3 bucket. For example, dags. For more information, see Adding or updating DAGs.
622
638
  */
623
639
  DagS3Path?: RelativePath;
624
640
  /**
625
- * The environment class type. Valid values: mw1.small, mw1.medium, mw1.large. To learn more, see Amazon MWAA environment class.
641
+ * The environment class type. Valid values: mw1.small, mw1.medium, mw1.large. For more information, see Amazon MWAA environment class.
626
642
  */
627
643
  EnvironmentClass?: EnvironmentClass;
628
644
  /**
629
- * The Amazon Resource Name (ARN) of the execution role in IAM that allows MWAA to access Amazon Web Services resources in your environment. For example, arn:aws:iam::123456789:role/my-execution-role. To learn more, see Amazon MWAA Execution role.
645
+ * The Amazon Resource Name (ARN) of the execution role in IAM that allows MWAA to access Amazon Web Services resources in your environment. For example, arn:aws:iam::123456789:role/my-execution-role. For more information, see Amazon MWAA Execution role.
630
646
  */
631
647
  ExecutionRoleArn?: IamRoleArn;
632
648
  /**
@@ -646,23 +662,23 @@ declare namespace MWAA {
646
662
  */
647
663
  Name: EnvironmentName;
648
664
  /**
649
- * The VPC networking components used to secure and enable network traffic between the Amazon Web Services resources for your environment. To learn more, see About networking on Amazon MWAA.
665
+ * The VPC networking components used to secure and enable network traffic between the Amazon Web Services resources for your environment. For more information, see About networking on Amazon MWAA.
650
666
  */
651
667
  NetworkConfiguration?: UpdateNetworkConfigurationInput;
652
668
  /**
653
- * The version of the plugins.zip file on your Amazon S3 bucket. A version must be specified each time a plugins.zip file is updated. To learn more, see How S3 Versioning works.
669
+ * The version of the plugins.zip file on your Amazon S3 bucket. You must specify a version each time a plugins.zip file is updated. For more information, see How S3 Versioning works.
654
670
  */
655
671
  PluginsS3ObjectVersion?: S3ObjectVersion;
656
672
  /**
657
- * The relative path to the plugins.zip file on your Amazon S3 bucket. For example, plugins.zip. If specified, then the plugins.zip version is required. To learn more, see Installing custom plugins.
673
+ * The relative path to the plugins.zip file on your Amazon S3 bucket. For example, plugins.zip. If specified, then the plugins.zip version is required. For more information, see Installing custom plugins.
658
674
  */
659
675
  PluginsS3Path?: RelativePath;
660
676
  /**
661
- * The version of the requirements.txt file on your Amazon S3 bucket. A version must be specified each time a requirements.txt file is updated. To learn more, see How S3 Versioning works.
677
+ * The version of the requirements.txt file on your Amazon S3 bucket. You must specify a version each time a requirements.txt file is updated. For more information, see How S3 Versioning works.
662
678
  */
663
679
  RequirementsS3ObjectVersion?: S3ObjectVersion;
664
680
  /**
665
- * The relative path to the requirements.txt file on your Amazon S3 bucket. For example, requirements.txt. If specified, then a file version is required. To learn more, see Installing Python dependencies.
681
+ * The relative path to the requirements.txt file on your Amazon S3 bucket. For example, requirements.txt. If specified, then a file version is required. For more information, see Installing Python dependencies.
666
682
  */
667
683
  RequirementsS3Path?: RelativePath;
668
684
  /**
@@ -670,11 +686,19 @@ declare namespace MWAA {
670
686
  */
671
687
  Schedulers?: Schedulers;
672
688
  /**
673
- * The Amazon Resource Name (ARN) of the Amazon S3 bucket where your DAG code and supporting files are stored. For example, arn:aws:s3:::my-airflow-bucket-unique-name. To learn more, see Create an Amazon S3 bucket for Amazon MWAA.
689
+ * The Amazon Resource Name (ARN) of the Amazon S3 bucket where your DAG code and supporting files are stored. For example, arn:aws:s3:::my-airflow-bucket-unique-name. For more information, see Create an Amazon S3 bucket for Amazon MWAA.
674
690
  */
675
691
  SourceBucketArn?: S3BucketArn;
676
692
  /**
677
- * The Apache Airflow Web server access mode. To learn more, see Apache Airflow access modes.
693
+ * The version of the startup shell script in your Amazon S3 bucket. You must specify the version ID that Amazon S3 assigns to the file every time you update the script. Version IDs are Unicode, UTF-8 encoded, URL-ready, opaque strings that are no more than 1,024 bytes long. The following is an example: 3sL4kqtJlcpXroDTDmJ+rmSpXd3dIbrHY+MTRCxf3vjVBH40Nr8X8gdRQBpUMLUo For more information, see Using a startup script.
694
+ */
695
+ StartupScriptS3ObjectVersion?: S3ObjectVersion;
696
+ /**
697
+ * The relative path to the startup shell script in your Amazon S3 bucket. For example, s3://mwaa-environment/startup.sh. Amazon MWAA runs the script as your environment starts, and before running the Apache Airflow process. You can use this script to install dependencies, modify Apache Airflow configuration options, and set environment variables. For more information, see Using a startup script.
698
+ */
699
+ StartupScriptS3Path?: RelativePath;
700
+ /**
701
+ * The Apache Airflow Web server access mode. For more information, see Apache Airflow access modes.
678
702
  */
679
703
  WebserverAccessMode?: WebserverAccessMode;
680
704
  /**
@@ -700,7 +724,7 @@ declare namespace MWAA {
700
724
  }
701
725
  export interface UpdateNetworkConfigurationInput {
702
726
  /**
703
- * A list of security group IDs. A security group must be attached to the same VPC as the subnets. To learn more, see Security in your VPC on Amazon MWAA.
727
+ * A list of security group IDs. A security group must be attached to the same VPC as the subnets. For more information, see Security in your VPC on Amazon MWAA.
704
728
  */
705
729
  SecurityGroupIds: SecurityGroupList;
706
730
  }
@@ -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 DescribeAutoMLJob . For information about how to use Autopilot, see Automate Model Development with Amazon SageMaker Autopilot.
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 DescribeAutoMLJob . For information about how to use Autopilot, see Automate Model Development with Amazon SageMaker Autopilot.
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 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.
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 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.
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: DestinationS3Uri;
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 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"
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 AutoMLAlgorithmConfig . For more information on each algorithm, see the Algorithm support section in Autopilot developer guide.
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 How to specify training and validation datasets .
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 ContainerDefinition .
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 ContainerDefinition .
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 ContainerDefinition .
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 StoppingCondition used by the CreateHyperParameterTuningJob action. For V2 jobs (jobs created by calling CreateAutoMLJobV2), this field controls the runtime of the job candidate.
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 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.
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 AutoMLJobObjective$MetricName and Autopilot infers whether to minimize or maximize it. For CreateAutoMLJobV2 , only Accuracy is supported.
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 InputDataConfig supported by CreateAutoMLJob. The supported formats depend on the problem type: ImageClassification: S3Prefix, ManifestFile, AugmentedManifestFile TextClassification: S3Prefix
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 CreateAutoMLJobV2 , only Accuracy is supported.
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 AutoMLJobObjective$MetricName .
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 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.
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
  }