aws-sdk 2.1629.0 → 2.1631.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -67,6 +67,14 @@ declare class EMRServerless extends Service {
67
67
  * Lists applications based on a set of parameters.
68
68
  */
69
69
  listApplications(callback?: (err: AWSError, data: EMRServerless.Types.ListApplicationsResponse) => void): Request<EMRServerless.Types.ListApplicationsResponse, AWSError>;
70
+ /**
71
+ * Lists all attempt of a job run.
72
+ */
73
+ listJobRunAttempts(params: EMRServerless.Types.ListJobRunAttemptsRequest, callback?: (err: AWSError, data: EMRServerless.Types.ListJobRunAttemptsResponse) => void): Request<EMRServerless.Types.ListJobRunAttemptsResponse, AWSError>;
74
+ /**
75
+ * Lists all attempt of a job run.
76
+ */
77
+ listJobRunAttempts(callback?: (err: AWSError, data: EMRServerless.Types.ListJobRunAttemptsResponse) => void): Request<EMRServerless.Types.ListJobRunAttemptsResponse, AWSError>;
70
78
  /**
71
79
  * Lists job runs based on a set of parameters.
72
80
  */
@@ -265,6 +273,7 @@ declare namespace EMRServerless {
265
273
  architecture?: Architecture;
266
274
  }
267
275
  export type Architecture = "ARM64"|"X86_64"|string;
276
+ export type AttemptNumber = number;
268
277
  export interface AutoStartConfig {
269
278
  /**
270
279
  * Enables the application to automatically start on job submission. Defaults to true.
@@ -473,6 +482,10 @@ declare namespace EMRServerless {
473
482
  * The ID of the job run.
474
483
  */
475
484
  jobRunId: JobRunId;
485
+ /**
486
+ * An optimal parameter that indicates the amount of attempts for the job. If not specified, this value defaults to the attempt of the latest job.
487
+ */
488
+ attempt?: AttemptNumber;
476
489
  }
477
490
  export interface GetDashboardForJobRunResponse {
478
491
  /**
@@ -489,6 +502,10 @@ declare namespace EMRServerless {
489
502
  * The ID of the job run.
490
503
  */
491
504
  jobRunId: JobRunId;
505
+ /**
506
+ * An optimal parameter that indicates the amount of attempts for the job. If not specified, this value defaults to the attempt of the latest job.
507
+ */
508
+ attempt?: AttemptNumber;
492
509
  }
493
510
  export interface GetJobRunResponse {
494
511
  /**
@@ -638,8 +655,92 @@ declare namespace EMRServerless {
638
655
  * The aggregate vCPU, memory, and storage that Amazon Web Services has billed for the job run. The billed resources include a 1-minute minimum usage for workers, plus additional storage over 20 GB per worker. Note that billed resources do not include usage for idle pre-initialized workers.
639
656
  */
640
657
  billedResourceUtilization?: ResourceUtilization;
658
+ /**
659
+ * The mode of the job run.
660
+ */
661
+ mode?: JobRunMode;
662
+ /**
663
+ * The retry policy of the job run.
664
+ */
665
+ retryPolicy?: RetryPolicy;
666
+ /**
667
+ * The attempt of the job run.
668
+ */
669
+ attempt?: AttemptNumber;
670
+ /**
671
+ * The date and time of when the job run attempt was created.
672
+ */
673
+ attemptCreatedAt?: _Date;
674
+ /**
675
+ * The date and time of when the job run attempt was last updated.
676
+ */
677
+ attemptUpdatedAt?: _Date;
641
678
  }
679
+ export interface JobRunAttemptSummary {
680
+ /**
681
+ * The ID of the application the job is running on.
682
+ */
683
+ applicationId: ApplicationId;
684
+ /**
685
+ * The ID of the job run attempt.
686
+ */
687
+ id: JobRunId;
688
+ /**
689
+ * The name of the job run attempt.
690
+ */
691
+ name?: String256;
692
+ /**
693
+ * The mode of the job run attempt.
694
+ */
695
+ mode?: JobRunMode;
696
+ /**
697
+ * The Amazon Resource Name (ARN) of the job run.
698
+ */
699
+ arn: JobArn;
700
+ /**
701
+ * The user who created the job run.
702
+ */
703
+ createdBy: RequestIdentityUserArn;
704
+ /**
705
+ * The date and time of when the job run was created.
706
+ */
707
+ jobCreatedAt: _Date;
708
+ /**
709
+ * The date and time when the job run attempt was created.
710
+ */
711
+ createdAt: _Date;
712
+ /**
713
+ * The date and time of when the job run attempt was last updated.
714
+ */
715
+ updatedAt: _Date;
716
+ /**
717
+ * The Amazon Resource Name (ARN) of the execution role of the job run..
718
+ */
719
+ executionRole: IAMRoleArn;
720
+ /**
721
+ * The state of the job run attempt.
722
+ */
723
+ state: JobRunState;
724
+ /**
725
+ * The state details of the job run attempt.
726
+ */
727
+ stateDetails: String256;
728
+ /**
729
+ * The Amazon EMR release label of the job run attempt.
730
+ */
731
+ releaseLabel: ReleaseLabel;
732
+ /**
733
+ * The type of the job run, such as Spark or Hive.
734
+ */
735
+ type?: JobRunType;
736
+ /**
737
+ * The attempt number of the job run execution.
738
+ */
739
+ attempt?: AttemptNumber;
740
+ }
741
+ export type JobRunAttempts = JobRunAttemptSummary[];
642
742
  export type JobRunId = string;
743
+ export type JobRunMode = "BATCH"|"STREAMING"|string;
643
744
  export type JobRunState = "SUBMITTED"|"PENDING"|"SCHEDULED"|"RUNNING"|"SUCCESS"|"FAILED"|"CANCELLING"|"CANCELLED"|string;
644
745
  export type JobRunStateSet = JobRunState[];
645
746
  export interface JobRunSummary {
@@ -655,6 +756,10 @@ declare namespace EMRServerless {
655
756
  * The optional job run name. This doesn't have to be unique.
656
757
  */
657
758
  name?: String256;
759
+ /**
760
+ * The mode of the job run.
761
+ */
762
+ mode?: JobRunMode;
658
763
  /**
659
764
  * The ARN of the job run.
660
765
  */
@@ -691,6 +796,18 @@ declare namespace EMRServerless {
691
796
  * The type of job run, such as Spark or Hive.
692
797
  */
693
798
  type?: JobRunType;
799
+ /**
800
+ * The attempt number of the job run execution.
801
+ */
802
+ attempt?: AttemptNumber;
803
+ /**
804
+ * The date and time of when the job run attempt was created.
805
+ */
806
+ attemptCreatedAt?: _Date;
807
+ /**
808
+ * The date and time of when the job run attempt was last updated.
809
+ */
810
+ attemptUpdatedAt?: _Date;
694
811
  }
695
812
  export type JobRunType = string;
696
813
  export type JobRuns = JobRunSummary[];
@@ -719,6 +836,35 @@ declare namespace EMRServerless {
719
836
  */
720
837
  nextToken?: NextToken;
721
838
  }
839
+ export interface ListJobRunAttemptsRequest {
840
+ /**
841
+ * The ID of the application for which to list job runs.
842
+ */
843
+ applicationId: ApplicationId;
844
+ /**
845
+ * The ID of the job run to list.
846
+ */
847
+ jobRunId: JobRunId;
848
+ /**
849
+ * The token for the next set of job run attempt results.
850
+ */
851
+ nextToken?: NextToken;
852
+ /**
853
+ * The maximum number of job run attempts to list.
854
+ */
855
+ maxResults?: ListJobRunAttemptsRequestMaxResultsInteger;
856
+ }
857
+ export type ListJobRunAttemptsRequestMaxResultsInteger = number;
858
+ export interface ListJobRunAttemptsResponse {
859
+ /**
860
+ * The array of the listed job run attempt objects.
861
+ */
862
+ jobRunAttempts: JobRunAttempts;
863
+ /**
864
+ * The output displays the token for the next set of application results. This is required for pagination and is available as a response of the previous request.
865
+ */
866
+ nextToken?: NextToken;
867
+ }
722
868
  export interface ListJobRunsRequest {
723
869
  /**
724
870
  * The ID of the application for which to list the job run.
@@ -744,6 +890,10 @@ declare namespace EMRServerless {
744
890
  * An optional filter for job run states. Note that if this filter contains multiple states, the resulting list will be grouped by the state.
745
891
  */
746
892
  states?: JobRunStateSet;
893
+ /**
894
+ * The mode of the job runs to list.
895
+ */
896
+ mode?: JobRunMode;
747
897
  }
748
898
  export type ListJobRunsRequestMaxResultsInteger = number;
749
899
  export interface ListJobRunsResponse {
@@ -852,6 +1002,17 @@ declare namespace EMRServerless {
852
1002
  */
853
1003
  storageGBHour?: Double;
854
1004
  }
1005
+ export interface RetryPolicy {
1006
+ /**
1007
+ * Maximum number of attempts for the job run. This parameter is only applicable for BATCH mode.
1008
+ */
1009
+ maxAttempts?: AttemptNumber;
1010
+ /**
1011
+ * Maximum number of failed attempts per hour. This [arameter is only applicable for STREAMING mode.
1012
+ */
1013
+ maxFailedAttemptsPerHour?: RetryPolicyMaxFailedAttemptsPerHourInteger;
1014
+ }
1015
+ export type RetryPolicyMaxFailedAttemptsPerHourInteger = number;
855
1016
  export interface S3MonitoringConfiguration {
856
1017
  /**
857
1018
  * The Amazon S3 destination URI for log publishing.
@@ -921,6 +1082,14 @@ declare namespace EMRServerless {
921
1082
  * The optional job run name. This doesn't have to be unique.
922
1083
  */
923
1084
  name?: String256;
1085
+ /**
1086
+ * The mode of the job run when it starts.
1087
+ */
1088
+ mode?: JobRunMode;
1089
+ /**
1090
+ * The retry policy when job run starts.
1091
+ */
1092
+ retryPolicy?: RetryPolicy;
924
1093
  }
925
1094
  export interface StartJobRunResponse {
926
1095
  /**
package/clients/glue.d.ts CHANGED
@@ -4260,6 +4260,10 @@ declare namespace Glue {
4260
4260
  * The name you assign to this job definition. It must be unique in your account.
4261
4261
  */
4262
4262
  Name: NameString;
4263
+ /**
4264
+ * A mode that describes how a job was created. Valid values are: SCRIPT - The job was created using the Glue Studio script editor. VISUAL - The job was created using the Glue Studio visual editor. NOTEBOOK - The job was created using an interactive sessions notebook. When the JobMode field is missing or null, SCRIPT is assigned as the default value.
4265
+ */
4266
+ JobMode?: JobMode;
4263
4267
  /**
4264
4268
  * Description of the job being defined.
4265
4269
  */
@@ -8844,6 +8848,10 @@ declare namespace Glue {
8844
8848
  * The name you assign to this job definition.
8845
8849
  */
8846
8850
  Name?: NameString;
8851
+ /**
8852
+ * A mode that describes how a job was created. Valid values are: SCRIPT - The job was created using the Glue Studio script editor. VISUAL - The job was created using the Glue Studio visual editor. NOTEBOOK - The job was created using an interactive sessions notebook. When the JobMode field is missing or null, SCRIPT is assigned as the default value.
8853
+ */
8854
+ JobMode?: JobMode;
8847
8855
  /**
8848
8856
  * A description of the job.
8849
8857
  */
@@ -8997,6 +9005,7 @@ declare namespace Glue {
8997
9005
  Runtime?: RuntimeNameString;
8998
9006
  }
8999
9007
  export type JobList = Job[];
9008
+ export type JobMode = "SCRIPT"|"VISUAL"|"NOTEBOOK"|string;
9000
9009
  export type JobName = string;
9001
9010
  export type JobNameList = NameString[];
9002
9011
  export interface JobNodeDetails {
@@ -9026,6 +9035,10 @@ declare namespace Glue {
9026
9035
  * The name of the job definition being used in this run.
9027
9036
  */
9028
9037
  JobName?: NameString;
9038
+ /**
9039
+ * A mode that describes how a job was created. Valid values are: SCRIPT - The job was created using the Glue Studio script editor. VISUAL - The job was created using the Glue Studio visual editor. NOTEBOOK - The job was created using an interactive sessions notebook. When the JobMode field is missing or null, SCRIPT is assigned as the default value.
9040
+ */
9041
+ JobMode?: JobMode;
9029
9042
  /**
9030
9043
  * The date and time at which this job run was started.
9031
9044
  */
@@ -9110,6 +9123,10 @@ declare namespace Glue {
9110
9123
  export type JobRunList = JobRun[];
9111
9124
  export type JobRunState = "STARTING"|"RUNNING"|"STOPPING"|"STOPPED"|"SUCCEEDED"|"FAILED"|"TIMEOUT"|"ERROR"|"WAITING"|"EXPIRED"|string;
9112
9125
  export interface JobUpdate {
9126
+ /**
9127
+ * A mode that describes how a job was created. Valid values are: SCRIPT - The job was created using the Glue Studio script editor. VISUAL - The job was created using the Glue Studio visual editor. NOTEBOOK - The job was created using an interactive sessions notebook. When the JobMode field is missing or null, SCRIPT is assigned as the default value.
9128
+ */
9129
+ JobMode?: JobMode;
9113
9130
  /**
9114
9131
  * Description of the job being defined.
9115
9132
  */
package/clients/rds.d.ts CHANGED
@@ -38,11 +38,11 @@ declare class RDS extends Service {
38
38
  */
39
39
  addSourceIdentifierToSubscription(callback?: (err: AWSError, data: RDS.Types.AddSourceIdentifierToSubscriptionResult) => void): Request<RDS.Types.AddSourceIdentifierToSubscriptionResult, AWSError>;
40
40
  /**
41
- * Adds metadata tags to an Amazon RDS resource. These tags can also be used with cost allocation reporting to track cost associated with Amazon RDS resources, or used in a Condition statement in an IAM policy for Amazon RDS. For an overview on tagging Amazon RDS resources, see Tagging Amazon RDS Resources.
41
+ * Adds metadata tags to an Amazon RDS resource. These tags can also be used with cost allocation reporting to track cost associated with Amazon RDS resources, or used in a Condition statement in an IAM policy for Amazon RDS. For an overview on tagging your relational database resources, see Tagging Amazon RDS Resources or Tagging Amazon Aurora and Amazon RDS Resources.
42
42
  */
43
43
  addTagsToResource(params: RDS.Types.AddTagsToResourceMessage, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
44
44
  /**
45
- * Adds metadata tags to an Amazon RDS resource. These tags can also be used with cost allocation reporting to track cost associated with Amazon RDS resources, or used in a Condition statement in an IAM policy for Amazon RDS. For an overview on tagging Amazon RDS resources, see Tagging Amazon RDS Resources.
45
+ * Adds metadata tags to an Amazon RDS resource. These tags can also be used with cost allocation reporting to track cost associated with Amazon RDS resources, or used in a Condition statement in an IAM policy for Amazon RDS. For an overview on tagging your relational database resources, see Tagging Amazon RDS Resources or Tagging Amazon Aurora and Amazon RDS Resources.
46
46
  */
47
47
  addTagsToResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
48
48
  /**
@@ -2052,7 +2052,7 @@ declare namespace RDS {
2052
2052
  */
2053
2053
  CharacterSetName?: String;
2054
2054
  /**
2055
- * The name for your database of up to 64 alphanumeric characters. If you don't provide a name, Amazon RDS doesn't create a database in the DB cluster you are creating. Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
2055
+ * The name for your database of up to 64 alphanumeric characters. A database named postgres is always created. If this parameter is specified, an additional database with this name is created. Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
2056
2056
  */
2057
2057
  DatabaseName?: String;
2058
2058
  /**
@@ -2300,7 +2300,7 @@ declare namespace RDS {
2300
2300
  }
2301
2301
  export interface CreateDBInstanceMessage {
2302
2302
  /**
2303
- * The meaning of this parameter differs according to the database engine you use. Amazon Aurora MySQL The name of the database to create when the primary DB instance of the Aurora MySQL DB cluster is created. If this parameter isn't specified for an Aurora MySQL DB cluster, no database is created in the DB cluster. Constraints: Must contain 1 to 64 alphanumeric characters. Can't be a word reserved by the database engine. Amazon Aurora PostgreSQL The name of the database to create when the primary DB instance of the Aurora PostgreSQL DB cluster is created. If this parameter isn't specified for an Aurora PostgreSQL DB cluster, a database named postgres is created in the DB cluster. Constraints: It must contain 1 to 63 alphanumeric characters. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0 to 9). Can't be a word reserved by the database engine. Amazon RDS Custom for Oracle The Oracle System ID (SID) of the created RDS Custom DB instance. If you don't specify a value, the default value is ORCL for non-CDBs and RDSCDB for CDBs. Default: ORCL Constraints: Must contain 1 to 8 alphanumeric characters. Must contain a letter. Can't be a word reserved by the database engine. Amazon RDS Custom for SQL Server Not applicable. Must be null. RDS for Db2 The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. In some cases, we recommend that you don't add a database name. For more information, see Additional considerations in the Amazon RDS User Guide. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine. RDS for MariaDB The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine. RDS for MySQL The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine. RDS for Oracle The Oracle System ID (SID) of the created DB instance. If you don't specify a value, the default value is ORCL. You can't specify the string null, or any other reserved word, for DBName. Default: ORCL Constraints: Can't be longer than 8 characters. RDS for PostgreSQL The name of the database to create when the DB instance is created. If this parameter isn't specified, a database named postgres is created in the DB instance. Constraints: Must contain 1 to 63 letters, numbers, or underscores. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine. RDS for SQL Server Not applicable. Must be null.
2303
+ * The meaning of this parameter differs according to the database engine you use. Amazon Aurora MySQL The name of the database to create when the primary DB instance of the Aurora MySQL DB cluster is created. If this parameter isn't specified for an Aurora MySQL DB cluster, no database is created in the DB cluster. Constraints: Must contain 1 to 64 alphanumeric characters. Can't be a word reserved by the database engine. Amazon Aurora PostgreSQL The name of the database to create when the primary DB instance of the Aurora PostgreSQL DB cluster is created. A database named postgres is always created. If this parameter is specified, an additional database with this name is created. Constraints: It must contain 1 to 63 alphanumeric characters. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0 to 9). Can't be a word reserved by the database engine. Amazon RDS Custom for Oracle The Oracle System ID (SID) of the created RDS Custom DB instance. If you don't specify a value, the default value is ORCL for non-CDBs and RDSCDB for CDBs. Default: ORCL Constraints: Must contain 1 to 8 alphanumeric characters. Must contain a letter. Can't be a word reserved by the database engine. Amazon RDS Custom for SQL Server Not applicable. Must be null. RDS for Db2 The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. In some cases, we recommend that you don't add a database name. For more information, see Additional considerations in the Amazon RDS User Guide. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine. RDS for MariaDB The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine. RDS for MySQL The name of the database to create when the DB instance is created. If this parameter isn't specified, no database is created in the DB instance. Constraints: Must contain 1 to 64 letters or numbers. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine. RDS for Oracle The Oracle System ID (SID) of the created DB instance. If you don't specify a value, the default value is ORCL. You can't specify the string null, or any other reserved word, for DBName. Default: ORCL Constraints: Can't be longer than 8 characters. RDS for PostgreSQL The name of the database to create when the DB instance is created. A database named postgres is always created. If this parameter is specified, an additional database with this name is created. Constraints: Must contain 1 to 63 letters, numbers, or underscores. Must begin with a letter. Subsequent characters can be letters, underscores, or digits (0-9). Can't be a word reserved by the specified database engine. RDS for SQL Server Not applicable. Must be null.
2304
2304
  */
2305
2305
  DBName?: String;
2306
2306
  /**
@@ -9967,7 +9967,7 @@ declare namespace RDS {
9967
9967
  */
9968
9968
  S3Prefix?: String;
9969
9969
  /**
9970
- * An Amazon Web Services Identity and Access Management (IAM) role to allow Amazon RDS to access your Amazon S3 bucket.
9970
+ * An Amazon Web Services Identity and Access Management (IAM) role with a trust policy and a permissions policy that allows Amazon RDS to access your Amazon S3 bucket. For information about this role, see Creating an IAM role manually in the Amazon RDS User Guide.
9971
9971
  */
9972
9972
  S3IngestionRoleArn: String;
9973
9973
  /**
@@ -1213,11 +1213,11 @@ declare class SageMaker extends Service {
1213
1213
  */
1214
1214
  describeModelExplainabilityJobDefinition(callback?: (err: AWSError, data: SageMaker.Types.DescribeModelExplainabilityJobDefinitionResponse) => void): Request<SageMaker.Types.DescribeModelExplainabilityJobDefinitionResponse, AWSError>;
1215
1215
  /**
1216
- * Returns a description of the specified model package, which is used to create SageMaker models or list them on Amazon Web Services Marketplace. To create models in SageMaker, buyers can subscribe to model packages listed on Amazon Web Services Marketplace.
1216
+ * Returns a description of the specified model package, which is used to create SageMaker models or list them on Amazon Web Services Marketplace. If you provided a KMS Key ID when you created your model package, you will see the KMS Decrypt API call in your CloudTrail logs when you use this API. To create models in SageMaker, buyers can subscribe to model packages listed on Amazon Web Services Marketplace.
1217
1217
  */
1218
1218
  describeModelPackage(params: SageMaker.Types.DescribeModelPackageInput, callback?: (err: AWSError, data: SageMaker.Types.DescribeModelPackageOutput) => void): Request<SageMaker.Types.DescribeModelPackageOutput, AWSError>;
1219
1219
  /**
1220
- * Returns a description of the specified model package, which is used to create SageMaker models or list them on Amazon Web Services Marketplace. To create models in SageMaker, buyers can subscribe to model packages listed on Amazon Web Services Marketplace.
1220
+ * Returns a description of the specified model package, which is used to create SageMaker models or list them on Amazon Web Services Marketplace. If you provided a KMS Key ID when you created your model package, you will see the KMS Decrypt API call in your CloudTrail logs when you use this API. To create models in SageMaker, buyers can subscribe to model packages listed on Amazon Web Services Marketplace.
1221
1221
  */
1222
1222
  describeModelPackage(callback?: (err: AWSError, data: SageMaker.Types.DescribeModelPackageOutput) => void): Request<SageMaker.Types.DescribeModelPackageOutput, AWSError>;
1223
1223
  /**
@@ -3229,10 +3229,10 @@ declare namespace SageMaker {
3229
3229
  export type AttributeNames = AttributeName[];
3230
3230
  export type AuthMode = "SSO"|"IAM"|string;
3231
3231
  export type AutoGenerateEndpointName = boolean;
3232
- export type AutoMLAlgorithm = "xgboost"|"linear-learner"|"mlp"|"lightgbm"|"catboost"|"randomforest"|"extra-trees"|"nn-torch"|"fastai"|string;
3232
+ export type AutoMLAlgorithm = "xgboost"|"linear-learner"|"mlp"|"lightgbm"|"catboost"|"randomforest"|"extra-trees"|"nn-torch"|"fastai"|"cnn-qr"|"deepar"|"prophet"|"npts"|"arima"|"ets"|string;
3233
3233
  export interface AutoMLAlgorithmConfig {
3234
3234
  /**
3235
- * 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"
3235
+ * The selection of algorithms trained on your dataset to generate the model candidates for an Autopilot job. For the tabular problem type TabularJobConfig: 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" For the time-series forecasting problem type TimeSeriesForecastingJobConfig: Choose your algorithms from this list. "cnn-qr" "deepar" "prophet" "arima" "npts" "ets"
3236
3236
  */
3237
3237
  AutoMLAlgorithms: AutoMLAlgorithms;
3238
3238
  }
@@ -3291,7 +3291,7 @@ declare namespace SageMaker {
3291
3291
  */
3292
3292
  FeatureSpecificationS3Uri?: S3Uri;
3293
3293
  /**
3294
- * 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.
3294
+ * Stores the configuration information for the selection of algorithms trained on tabular data. The list of available algorithms to choose from depends on the training mode set in TabularJobConfig.Mode . AlgorithmsConfig should not be set if the training mode is set on AUTO. 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, CandidateGenerationConfig uses the full set of algorithms for the given training mode. When AlgorithmsConfig is not provided, CandidateGenerationConfig uses the full set of algorithms for the given training mode. For the list of all algorithms per problem type and training mode, see AutoMLAlgorithmConfig. For more information on each algorithm, see the Algorithm support section in Autopilot developer guide.
3295
3295
  */
3296
3296
  AlgorithmsConfig?: AutoMLAlgorithmsConfig;
3297
3297
  }
@@ -3808,7 +3808,7 @@ declare namespace SageMaker {
3808
3808
  export type CandidateDefinitionNotebookLocation = string;
3809
3809
  export interface CandidateGenerationConfig {
3810
3810
  /**
3811
- * Stores the configuration information for the selection of algorithms used to train model candidates on tabular data. The list of available algorithms to choose from depends on the training mode set in TabularJobConfig.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, CandidateGenerationConfig uses the full set of algorithms for the given training mode. When AlgorithmsConfig is not provided, CandidateGenerationConfig uses the full set of algorithms for the given training mode. For the list of all algorithms per problem type and training mode, see AutoMLAlgorithmConfig. For more information on each algorithm, see the Algorithm support section in Autopilot developer guide.
3811
+ * Your Autopilot job trains a default set of algorithms on your dataset. For tabular and time-series data, you can customize the algorithm list by selecting a subset of algorithms for your problem type. AlgorithmsConfig stores the customized selection of algorithms to train on your data. For the tabular problem type TabularJobConfig, the list of available algorithms to choose from depends on the training mode set in AutoMLJobConfig.Mode . AlgorithmsConfig should not be set when the training mode AutoMLJobConfig.Mode is set to AUTO. 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, CandidateGenerationConfig uses the full set of algorithms for the given training mode. When AlgorithmsConfig is not provided, CandidateGenerationConfig uses the full set of algorithms for the given training mode. For the list of all algorithms per training mode, see AlgorithmConfig. For more information on each algorithm, see the Algorithm support section in the Autopilot developer guide. For the time-series forecasting problem type TimeSeriesForecastingJobConfig, choose your algorithms from the list provided in AlgorithmConfig. For more information on each algorithm, see the Algorithms support for time-series forecasting section in the Autopilot developer guide. 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, CandidateGenerationConfig uses the full set of algorithms for time-series forecasting. When AlgorithmsConfig is not provided, CandidateGenerationConfig uses the full set of algorithms for time-series forecasting.
3812
3812
  */
3813
3813
  AlgorithmsConfig?: AutoMLAlgorithmsConfig;
3814
3814
  }
@@ -5978,6 +5978,14 @@ declare namespace SageMaker {
5978
5978
  * The URI of the source for the model package. If you want to clone a model package, set it to the model package Amazon Resource Name (ARN). If you want to register a model, set it to the model ARN.
5979
5979
  */
5980
5980
  SourceUri?: ModelPackageSourceUri;
5981
+ /**
5982
+ * The KMS Key ID (KMSKeyId) used for encryption of model package information.
5983
+ */
5984
+ SecurityConfig?: ModelPackageSecurityConfig;
5985
+ /**
5986
+ * The model card associated with the model package. Since ModelPackageModelCard is tied to a model package, it is a specific usage of a model card and its schema is simplified compared to the schema of ModelCard. The ModelPackageModelCard schema does not include model_package_details, and model_overview is composed of the model_creator and model_artifact properties. For more information about the model card associated with the model package, see View the Details of a Model Version.
5987
+ */
5988
+ ModelCard?: ModelPackageModelCard;
5981
5989
  }
5982
5990
  export interface CreateModelPackageOutput {
5983
5991
  /**
@@ -9910,6 +9918,14 @@ declare namespace SageMaker {
9910
9918
  * The URI of the source for the model package.
9911
9919
  */
9912
9920
  SourceUri?: ModelPackageSourceUri;
9921
+ /**
9922
+ * The KMS Key ID (KMSKeyId) used for encryption of model package information.
9923
+ */
9924
+ SecurityConfig?: ModelPackageSecurityConfig;
9925
+ /**
9926
+ * The model card associated with the model package. Since ModelPackageModelCard is tied to a model package, it is a specific usage of a model card and its schema is simplified compared to the schema of ModelCard. The ModelPackageModelCard schema does not include model_package_details, and model_overview is composed of the model_creator and model_artifact properties. For more information about the model card associated with the model package, see View the Details of a Model Version.
9927
+ */
9928
+ ModelCard?: ModelPackageModelCard;
9913
9929
  }
9914
9930
  export interface DescribeModelQualityJobDefinitionRequest {
9915
9931
  /**
@@ -14282,7 +14298,7 @@ declare namespace SageMaker {
14282
14298
  */
14283
14299
  NextToken?: NextToken;
14284
14300
  /**
14285
- * This parameter defines the maximum number of results that can be returned in a single response. The MaxResults parameter is an upper bound, not a target. If there are more results available than the value specified, a NextToken is provided in the response. The NextToken indicates that the user should get the next set of results by providing this token as a part of a subsequent call. The default value for MaxResults is 10.
14301
+ * This parameter defines the maximum number of results that can be return in a single response. The MaxResults parameter is an upper bound, not a target. If there are more results available than the value specified, a NextToken is provided in the response. The NextToken indicates that the user should get the next set of results by providing this token as a part of a subsequent call. The default value for MaxResults is 10.
14286
14302
  */
14287
14303
  MaxResults?: MaxResults;
14288
14304
  /**
@@ -14868,7 +14884,7 @@ declare namespace SageMaker {
14868
14884
  */
14869
14885
  NextToken?: NextToken;
14870
14886
  /**
14871
- * This parameter defines the maximum number of results that can be returned in a single response. The MaxResults parameter is an upper bound, not a target. If there are more results available than the value specified, a NextToken is provided in the response. The NextToken indicates that the user should get the next set of results by providing this token as a part of a subsequent call. The default value for MaxResults is 10.
14887
+ * This parameter defines the maximum number of results that can be return in a single response. The MaxResults parameter is an upper bound, not a target. If there are more results available than the value specified, a NextToken is provided in the response. The NextToken indicates that the user should get the next set of results by providing this token as a part of a subsequent call. The default value for MaxResults is 10.
14872
14888
  */
14873
14889
  MaxResults?: MaxResults;
14874
14890
  }
@@ -16898,7 +16914,7 @@ declare namespace SageMaker {
16898
16914
  */
16899
16915
  NextToken?: NextToken;
16900
16916
  /**
16901
- * This parameter defines the maximum number of results that can be returned in a single response. The MaxResults parameter is an upper bound, not a target. If there are more results available than the value specified, a NextToken is provided in the response. The NextToken indicates that the user should get the next set of results by providing this token as a part of a subsequent call. The default value for MaxResults is 10.
16917
+ * This parameter defines the maximum number of results that can be return in a single response. The MaxResults parameter is an upper bound, not a target. If there are more results available than the value specified, a NextToken is provided in the response. The NextToken indicates that the user should get the next set of results by providing this token as a part of a subsequent call. The default value for MaxResults is 10.
16902
16918
  */
16903
16919
  MaxResults?: MaxResults;
16904
16920
  /**
@@ -17304,7 +17320,7 @@ declare namespace SageMaker {
17304
17320
  */
17305
17321
  NextToken?: NextToken;
17306
17322
  /**
17307
- * This parameter defines the maximum number of results that can be returned in a single response. The MaxResults parameter is an upper bound, not a target. If there are more results available than the value specified, a NextToken is provided in the response. The NextToken indicates that the user should get the next set of results by providing this token as a part of a subsequent call. The default value for MaxResults is 10.
17323
+ * This parameter defines the maximum number of results that can be return in a single response. The MaxResults parameter is an upper bound, not a target. If there are more results available than the value specified, a NextToken is provided in the response. The NextToken indicates that the user should get the next set of results by providing this token as a part of a subsequent call. The default value for MaxResults is 10.
17308
17324
  */
17309
17325
  MaxResults?: MaxResults;
17310
17326
  /**
@@ -18190,6 +18206,8 @@ declare namespace SageMaker {
18190
18206
  * The URI of the source for the model package.
18191
18207
  */
18192
18208
  SourceUri?: ModelPackageSourceUri;
18209
+ SecurityConfig?: ModelPackageSecurityConfig;
18210
+ ModelCard?: ModelPackageModelCard;
18193
18211
  /**
18194
18212
  * A list of the tags associated with the model package. For more information, see Tagging Amazon Web Services resources in the Amazon Web Services General Reference Guide.
18195
18213
  */
@@ -18314,6 +18332,22 @@ declare namespace SageMaker {
18314
18332
  ModelPackageGroupStatus: ModelPackageGroupStatus;
18315
18333
  }
18316
18334
  export type ModelPackageGroupSummaryList = ModelPackageGroupSummary[];
18335
+ export interface ModelPackageModelCard {
18336
+ /**
18337
+ * The content of the model card.
18338
+ */
18339
+ ModelCardContent?: ModelCardContent;
18340
+ /**
18341
+ * The approval status of the model card within your organization. Different organizations might have different criteria for model card review and approval. Draft: The model card is a work in progress. PendingReview: The model card is pending review. Approved: The model card is approved. Archived: The model card is archived. No more updates can be made to the model card content. If you try to update the model card content, you will receive the message Model Card is in Archived state.
18342
+ */
18343
+ ModelCardStatus?: ModelCardStatus;
18344
+ }
18345
+ export interface ModelPackageSecurityConfig {
18346
+ /**
18347
+ * The KMS Key ID (KMSKeyId) used for encryption of model package information.
18348
+ */
18349
+ KmsKeyId: KmsKeyId;
18350
+ }
18317
18351
  export type ModelPackageSortBy = "Name"|"CreationTime"|string;
18318
18352
  export type ModelPackageSourceUri = string;
18319
18353
  export type ModelPackageStatus = "Pending"|"InProgress"|"Completed"|"Failed"|"Deleting"|string;
@@ -22232,6 +22266,7 @@ declare namespace SageMaker {
22232
22266
  * The collection of holiday featurization attributes used to incorporate national holiday information into your forecasting model.
22233
22267
  */
22234
22268
  HolidayConfig?: HolidayConfig;
22269
+ CandidateGenerationConfig?: CandidateGenerationConfig;
22235
22270
  }
22236
22271
  export interface TimeSeriesForecastingSettings {
22237
22272
  /**
@@ -23745,6 +23780,10 @@ declare namespace SageMaker {
23745
23780
  * The URI of the source for the model package.
23746
23781
  */
23747
23782
  SourceUri?: ModelPackageSourceUri;
23783
+ /**
23784
+ * The model card associated with the model package. Since ModelPackageModelCard is tied to a model package, it is a specific usage of a model card and its schema is simplified compared to the schema of ModelCard. The ModelPackageModelCard schema does not include model_package_details, and model_overview is composed of the model_creator and model_artifact properties. For more information about the model card associated with the model package, see View the Details of a Model Version.
23785
+ */
23786
+ ModelCard?: ModelPackageModelCard;
23748
23787
  }
23749
23788
  export interface UpdateModelPackageOutput {
23750
23789
  /**
@@ -15903,7 +15903,7 @@ declare namespace SecurityHub {
15903
15903
  */
15904
15904
  RootId?: NonEmptyString;
15905
15905
  }
15906
- export type TargetType = "ACCOUNT"|"ORGANIZATIONAL_UNIT"|string;
15906
+ export type TargetType = "ACCOUNT"|"ORGANIZATIONAL_UNIT"|"ROOT"|string;
15907
15907
  export interface Threat {
15908
15908
  /**
15909
15909
  * The name of the threat. Length Constraints: Minimum of 1 length. Maximum of 128 length.
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1629.0',
86
+ VERSION: '2.1631.0',
87
87
 
88
88
  /**
89
89
  * @api private