@aws-sdk/client-sagemaker 3.95.0 → 3.99.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist-cjs/commands/CreateImageCommand.js +2 -1
- package/dist-cjs/commands/ListTagsCommand.js +1 -2
- package/dist-cjs/models/models_0.js +11 -11
- package/dist-cjs/models/models_1.js +12 -12
- package/dist-cjs/models/models_2.js +12 -12
- package/dist-cjs/models/models_3.js +9 -3
- package/dist-cjs/protocols/Aws_json1_1.js +18 -0
- package/dist-cjs/runtimeConfig.js +2 -0
- package/dist-es/commands/CreateImageCommand.js +2 -1
- package/dist-es/commands/ListTagsCommand.js +1 -2
- package/dist-es/models/models_0.js +4 -4
- package/dist-es/models/models_1.js +4 -4
- package/dist-es/models/models_2.js +4 -4
- package/dist-es/models/models_3.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +16 -1
- package/dist-es/runtimeConfig.js +2 -0
- package/dist-types/SageMaker.d.ts +1 -1
- package/dist-types/commands/CreateImageCommand.d.ts +2 -1
- package/dist-types/commands/CreateTransformJobCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +89 -41
- package/dist-types/models/models_1.d.ts +25 -29
- package/dist-types/models/models_2.d.ts +22 -25
- package/dist-types/models/models_3.d.ts +23 -0
- package/dist-types/ts3.4/commands/CreateImageCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/ListTagsCommand.d.ts +1 -2
- package/dist-types/ts3.4/models/models_0.d.ts +11 -8
- package/dist-types/ts3.4/models/models_1.d.ts +8 -11
- package/dist-types/ts3.4/models/models_2.d.ts +12 -13
- package/dist-types/ts3.4/models/models_3.d.ts +12 -0
- package/package.json +6 -6
|
@@ -1547,7 +1547,8 @@ export interface TransformOutput {
|
|
|
1547
1547
|
* Developer Guide.</i>
|
|
1548
1548
|
* </p>
|
|
1549
1549
|
* <p>The KMS key policy must grant permission to the IAM role that you specify in your
|
|
1550
|
-
*
|
|
1550
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateModel.html">CreateModel</a>
|
|
1551
|
+
* request. For more information, see <a href="https://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html">Using
|
|
1551
1552
|
* Key Policies in Amazon Web Services KMS</a> in the <i>Amazon Web Services Key Management Service Developer
|
|
1552
1553
|
* Guide</i>.</p>
|
|
1553
1554
|
*/
|
|
@@ -3857,7 +3858,12 @@ export interface MetricDatum {
|
|
|
3857
3858
|
*/
|
|
3858
3859
|
Set?: MetricSetSource | string;
|
|
3859
3860
|
/**
|
|
3860
|
-
* <p>The name of the standard metric
|
|
3861
|
+
* <p>The name of the standard metric. </p>
|
|
3862
|
+
* <note>
|
|
3863
|
+
* <p>For definitions of the standard metrics, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-model-support-validation.html#autopilot-metrics">
|
|
3864
|
+
* <code>Autopilot candidate metrics</code>
|
|
3865
|
+
* </a>.</p>
|
|
3866
|
+
* </note>
|
|
3861
3867
|
*/
|
|
3862
3868
|
StandardMetricName?: AutoMLMetricExtendedEnum | string;
|
|
3863
3869
|
}
|
|
@@ -4037,6 +4043,28 @@ export declare namespace AutoMLCandidate {
|
|
|
4037
4043
|
*/
|
|
4038
4044
|
const filterSensitiveLog: (obj: AutoMLCandidate) => any;
|
|
4039
4045
|
}
|
|
4046
|
+
/**
|
|
4047
|
+
* <p>Stores the config information for how a candidate is generated (optional).</p>
|
|
4048
|
+
*/
|
|
4049
|
+
export interface AutoMLCandidateGenerationConfig {
|
|
4050
|
+
/**
|
|
4051
|
+
* <p>A URL to the Amazon S3 data source containing selected features from the input data source to
|
|
4052
|
+
* run an Autopilot job (optional). This file should be in json format as shown below: </p>
|
|
4053
|
+
* <p>
|
|
4054
|
+
* <code>{ "FeatureAttributeNames":["col1", "col2", ...] }</code>.</p>
|
|
4055
|
+
* <p>The key name <code>FeatureAttributeNames</code> is fixed. The values listed in
|
|
4056
|
+
* <code>["col1", "col2", ...]</code> is case sensitive and should be a list of strings
|
|
4057
|
+
* containing unique values that are a subset of the column names in the input data. The list
|
|
4058
|
+
* of columns provided must not include the target column.</p>
|
|
4059
|
+
*/
|
|
4060
|
+
FeatureSpecificationS3Uri?: string;
|
|
4061
|
+
}
|
|
4062
|
+
export declare namespace AutoMLCandidateGenerationConfig {
|
|
4063
|
+
/**
|
|
4064
|
+
* @internal
|
|
4065
|
+
*/
|
|
4066
|
+
const filterSensitiveLog: (obj: AutoMLCandidateGenerationConfig) => any;
|
|
4067
|
+
}
|
|
4040
4068
|
export declare enum AutoMLChannelType {
|
|
4041
4069
|
TRAINING = "training",
|
|
4042
4070
|
VALIDATION = "validation"
|
|
@@ -4083,9 +4111,9 @@ export declare namespace AutoMLDataSource {
|
|
|
4083
4111
|
const filterSensitiveLog: (obj: AutoMLDataSource) => any;
|
|
4084
4112
|
}
|
|
4085
4113
|
/**
|
|
4086
|
-
* <p>A channel is a named input source that training algorithms can consume. The
|
|
4087
|
-
*
|
|
4088
|
-
*
|
|
4114
|
+
* <p>A channel is a named input source that training algorithms can consume. The validation
|
|
4115
|
+
* dataset size is limited to less than 2 GB. The training dataset size must be less than 100
|
|
4116
|
+
* GB. For more information, see .</p>
|
|
4089
4117
|
* <note>
|
|
4090
4118
|
* <p>A validation dataset must contain the same headers as the training dataset.</p>
|
|
4091
4119
|
* </note>
|
|
@@ -4113,9 +4141,12 @@ export interface AutoMLChannel {
|
|
|
4113
4141
|
*/
|
|
4114
4142
|
ContentType?: string;
|
|
4115
4143
|
/**
|
|
4116
|
-
* <p>The channel type (optional) is an enum string. The default value is
|
|
4144
|
+
* <p>The channel type (optional) is an <code>enum</code> string. The default value is
|
|
4117
4145
|
* <code>training</code>. Channels for training and validation must share the same
|
|
4118
|
-
* <code>ContentType</code> and <code>TargetAttributeName</code
|
|
4146
|
+
* <code>ContentType</code> and <code>TargetAttributeName</code>. For information on
|
|
4147
|
+
* specifying training and validation channel types, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-datasets-problem-types.html#autopilot-data-sources-training-or-validation">
|
|
4148
|
+
* <code>How to specify training and validation datasets</code>
|
|
4149
|
+
* </a>.</p>
|
|
4119
4150
|
*/
|
|
4120
4151
|
ChannelType?: AutoMLChannelType | string;
|
|
4121
4152
|
}
|
|
@@ -4133,8 +4164,8 @@ export declare namespace AutoMLChannel {
|
|
|
4133
4164
|
export interface AutoMLDataSplitConfig {
|
|
4134
4165
|
/**
|
|
4135
4166
|
* <p>The validation fraction (optional) is a float that specifies the portion of the training
|
|
4136
|
-
* dataset to be used for validation. The default value is 0.2, and values
|
|
4137
|
-
* 1. We recommend setting this value to be less than 0.5.</p>
|
|
4167
|
+
* dataset to be used for validation. The default value is 0.2, and values must be greater
|
|
4168
|
+
* than 0 and less than 1. We recommend setting this value to be less than 0.5.</p>
|
|
4138
4169
|
*/
|
|
4139
4170
|
ValidationFraction?: number;
|
|
4140
4171
|
}
|
|
@@ -4258,6 +4289,10 @@ export interface AutoMLJobConfig {
|
|
|
4258
4289
|
* <p>Type: AutoMLDataSplitConfig</p>
|
|
4259
4290
|
*/
|
|
4260
4291
|
DataSplitConfig?: AutoMLDataSplitConfig;
|
|
4292
|
+
/**
|
|
4293
|
+
* <p>The configuration for generating a candidate for an AutoML job (optional). </p>
|
|
4294
|
+
*/
|
|
4295
|
+
CandidateGenerationConfig?: AutoMLCandidateGenerationConfig;
|
|
4261
4296
|
}
|
|
4262
4297
|
export declare namespace AutoMLJobConfig {
|
|
4263
4298
|
/**
|
|
@@ -4875,15 +4910,16 @@ export declare enum CandidateSortBy {
|
|
|
4875
4910
|
Status = "Status"
|
|
4876
4911
|
}
|
|
4877
4912
|
/**
|
|
4878
|
-
* <p
|
|
4913
|
+
* <p>Configuration specifying how to treat different headers. If no headers are specified SageMaker
|
|
4914
|
+
* will by default base64 encode when capturing the data.</p>
|
|
4879
4915
|
*/
|
|
4880
4916
|
export interface CaptureContentTypeHeader {
|
|
4881
4917
|
/**
|
|
4882
|
-
* <p
|
|
4918
|
+
* <p>The list of all content type headers that SageMaker will treat as CSV and capture accordingly.</p>
|
|
4883
4919
|
*/
|
|
4884
4920
|
CsvContentTypes?: string[];
|
|
4885
4921
|
/**
|
|
4886
|
-
* <p
|
|
4922
|
+
* <p>The list of all content type headers that SageMaker will treat as JSON and capture accordingly.</p>
|
|
4887
4923
|
*/
|
|
4888
4924
|
JsonContentTypes?: string[];
|
|
4889
4925
|
}
|
|
@@ -4898,11 +4934,11 @@ export declare enum CaptureMode {
|
|
|
4898
4934
|
OUTPUT = "Output"
|
|
4899
4935
|
}
|
|
4900
4936
|
/**
|
|
4901
|
-
* <p
|
|
4937
|
+
* <p>Specifies data Model Monitor will capture.</p>
|
|
4902
4938
|
*/
|
|
4903
4939
|
export interface CaptureOption {
|
|
4904
4940
|
/**
|
|
4905
|
-
* <p
|
|
4941
|
+
* <p>Specify the boundary of data to capture.</p>
|
|
4906
4942
|
*/
|
|
4907
4943
|
CaptureMode: CaptureMode | string | undefined;
|
|
4908
4944
|
}
|
|
@@ -6274,8 +6310,9 @@ export interface CreateAutoMLJobRequest {
|
|
|
6274
6310
|
AutoMLJobName: string | undefined;
|
|
6275
6311
|
/**
|
|
6276
6312
|
* <p>An array of channel objects that describes the input data and its location. Each channel
|
|
6277
|
-
* is a named input source. Similar to <code>InputDataConfig</code> supported by . Format(s) supported: CSV.
|
|
6278
|
-
* of 500 rows
|
|
6313
|
+
* is a named input source. Similar to <code>InputDataConfig</code> supported by . Format(s) supported: CSV, Parquet.
|
|
6314
|
+
* A minimum of 500 rows is required for the training dataset. There is not a minimum number
|
|
6315
|
+
* of rows required for the validation dataset.</p>
|
|
6279
6316
|
*/
|
|
6280
6317
|
InputDataConfig: AutoMLChannel[] | undefined;
|
|
6281
6318
|
/**
|
|
@@ -6284,9 +6321,8 @@ export interface CreateAutoMLJobRequest {
|
|
|
6284
6321
|
*/
|
|
6285
6322
|
OutputDataConfig: AutoMLOutputDataConfig | undefined;
|
|
6286
6323
|
/**
|
|
6287
|
-
* <p>Defines the type of supervised learning available for the candidates.
|
|
6288
|
-
*
|
|
6289
|
-
* <code>Regression</code>. For more information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-automate-model-development-problem-types.html">
|
|
6324
|
+
* <p>Defines the type of supervised learning available for the candidates. For more
|
|
6325
|
+
* information, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/autopilot-automate-model-development-problem-types.html">
|
|
6290
6326
|
* Amazon SageMaker Autopilot problem types and algorithm support</a>.</p>
|
|
6291
6327
|
*/
|
|
6292
6328
|
ProblemType?: ProblemType | string;
|
|
@@ -6297,8 +6333,7 @@ export interface CreateAutoMLJobRequest {
|
|
|
6297
6333
|
*/
|
|
6298
6334
|
AutoMLJobObjective?: AutoMLJobObjective;
|
|
6299
6335
|
/**
|
|
6300
|
-
* <p>
|
|
6301
|
-
* the AutoML job.</p>
|
|
6336
|
+
* <p>A collection of settings used to configure an AutoML job.</p>
|
|
6302
6337
|
*/
|
|
6303
6338
|
AutoMLJobConfig?: AutoMLJobConfig;
|
|
6304
6339
|
/**
|
|
@@ -8300,31 +8335,56 @@ export declare namespace CreateEndpointOutput {
|
|
|
8300
8335
|
const filterSensitiveLog: (obj: CreateEndpointOutput) => any;
|
|
8301
8336
|
}
|
|
8302
8337
|
/**
|
|
8303
|
-
* <p
|
|
8338
|
+
* <p>Configuration to control how SageMaker captures inference data.</p>
|
|
8304
8339
|
*/
|
|
8305
8340
|
export interface DataCaptureConfig {
|
|
8306
8341
|
/**
|
|
8307
|
-
* <p
|
|
8342
|
+
* <p>Whether data capture should be enabled or disabled (defaults to enabled).</p>
|
|
8308
8343
|
*/
|
|
8309
8344
|
EnableCapture?: boolean;
|
|
8310
8345
|
/**
|
|
8311
|
-
* <p
|
|
8346
|
+
* <p>The percentage of requests SageMaker will capture. A lower value is recommended for
|
|
8347
|
+
* Endpoints with high traffic.</p>
|
|
8312
8348
|
*/
|
|
8313
8349
|
InitialSamplingPercentage: number | undefined;
|
|
8314
8350
|
/**
|
|
8315
|
-
* <p
|
|
8351
|
+
* <p>The Amazon S3 location used to capture the data.</p>
|
|
8316
8352
|
*/
|
|
8317
8353
|
DestinationS3Uri: string | undefined;
|
|
8318
8354
|
/**
|
|
8319
|
-
* <p
|
|
8355
|
+
* <p>The Amazon Resource Name (ARN) of a Amazon Web Services Key Management Service key that SageMaker uses to encrypt data on
|
|
8356
|
+
* the storage volume attached to the ML compute instance that hosts the endpoint.</p>
|
|
8357
|
+
* <p>The KmsKeyId can be any of the following formats: </p>
|
|
8358
|
+
* <ul>
|
|
8359
|
+
* <li>
|
|
8360
|
+
* <p>Key ID: <code>1234abcd-12ab-34cd-56ef-1234567890ab</code>
|
|
8361
|
+
* </p>
|
|
8362
|
+
* </li>
|
|
8363
|
+
* <li>
|
|
8364
|
+
* <p>Key ARN:
|
|
8365
|
+
* <code>arn:aws:kms:us-west-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab</code>
|
|
8366
|
+
* </p>
|
|
8367
|
+
* </li>
|
|
8368
|
+
* <li>
|
|
8369
|
+
* <p>Alias name: <code>alias/ExampleAlias</code>
|
|
8370
|
+
* </p>
|
|
8371
|
+
* </li>
|
|
8372
|
+
* <li>
|
|
8373
|
+
* <p>Alias name ARN:
|
|
8374
|
+
* <code>arn:aws:kms:us-west-2:111122223333:alias/ExampleAlias</code>
|
|
8375
|
+
* </p>
|
|
8376
|
+
* </li>
|
|
8377
|
+
* </ul>
|
|
8320
8378
|
*/
|
|
8321
8379
|
KmsKeyId?: string;
|
|
8322
8380
|
/**
|
|
8323
|
-
* <p
|
|
8381
|
+
* <p>Specifies data Model Monitor will capture. You can configure whether to
|
|
8382
|
+
* collect only input, only output, or both</p>
|
|
8324
8383
|
*/
|
|
8325
8384
|
CaptureOptions: CaptureOption[] | undefined;
|
|
8326
8385
|
/**
|
|
8327
|
-
* <p
|
|
8386
|
+
* <p>Configuration specifying how to treat different headers. If no headers are specified SageMaker will
|
|
8387
|
+
* by default base64 encode when capturing the data.</p>
|
|
8328
8388
|
*/
|
|
8329
8389
|
CaptureContentTypeHeader?: CaptureContentTypeHeader;
|
|
8330
8390
|
}
|
|
@@ -8489,7 +8549,7 @@ export interface CreateEndpointConfigInput {
|
|
|
8489
8549
|
*/
|
|
8490
8550
|
ProductionVariants: ProductionVariant[] | undefined;
|
|
8491
8551
|
/**
|
|
8492
|
-
* <p
|
|
8552
|
+
* <p>Configuration to control how SageMaker captures inference data.</p>
|
|
8493
8553
|
*/
|
|
8494
8554
|
DataCaptureConfig?: DataCaptureConfig;
|
|
8495
8555
|
/**
|
|
@@ -10461,15 +10521,3 @@ export declare namespace CreateImageRequest {
|
|
|
10461
10521
|
*/
|
|
10462
10522
|
const filterSensitiveLog: (obj: CreateImageRequest) => any;
|
|
10463
10523
|
}
|
|
10464
|
-
export interface CreateImageResponse {
|
|
10465
|
-
/**
|
|
10466
|
-
* <p>The Amazon Resource Name (ARN) of the image.</p>
|
|
10467
|
-
*/
|
|
10468
|
-
ImageArn?: string;
|
|
10469
|
-
}
|
|
10470
|
-
export declare namespace CreateImageResponse {
|
|
10471
|
-
/**
|
|
10472
|
-
* @internal
|
|
10473
|
-
*/
|
|
10474
|
-
const filterSensitiveLog: (obj: CreateImageResponse) => any;
|
|
10475
|
-
}
|
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AnnotationConsolidationConfig, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppStatus, AppType, ArtifactSource, AsyncInferenceConfig, AthenaDatasetDefinition, AuthMode, AutoMLCandidate, AutoMLChannel, AutoMLJobArtifacts, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, BatchStrategy, Bias, CaptureStatus, CategoricalParameter, Channel, CheckpointConfig, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, CompilationJobStatus, ContainerDefinition, ContentClassifier, ContextSource, DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DeploymentConfig, DomainSettings, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInput, FeatureDefinition, FlowDefinitionOutputConfig, GitConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobObjectiveType, HyperParameterTuningJobWarmStartConfig, InferenceSpecification, InputConfig, KernelGatewayImageConfig, MetadataProperties, MetricsSource, ModelApprovalStatus, ModelDeployConfig, MonitoringConstraintsResource, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStatisticsResource, MonitoringStoppingCondition, NeoVpcConfig, ObjectiveStatus, OfflineStoreConfig, OnlineStoreConfig, OutputConfig, OutputDataConfig, ProblemType, ProcessingInstanceType, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProcessingS3UploadMode, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantInstanceType, ProductionVariantServerlessConfig, PublicWorkforceTaskPrice, ResourceConfig, ResourceSpec, RetryStrategy, StoppingCondition, Tag, TrainingSpecification, TransformInput, TransformJobDefinition, TransformOutput, TransformResources, UserContext, UserSettings, VpcConfig } from "./models_0";
|
|
2
|
+
export interface CreateImageResponse {
|
|
3
|
+
/**
|
|
4
|
+
* <p>The Amazon Resource Name (ARN) of the image.</p>
|
|
5
|
+
*/
|
|
6
|
+
ImageArn?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare namespace CreateImageResponse {
|
|
9
|
+
/**
|
|
10
|
+
* @internal
|
|
11
|
+
*/
|
|
12
|
+
const filterSensitiveLog: (obj: CreateImageResponse) => any;
|
|
13
|
+
}
|
|
2
14
|
export interface CreateImageVersionRequest {
|
|
3
15
|
/**
|
|
4
16
|
* <p>The registry path of the container image to use as the starting point for this
|
|
@@ -3341,7 +3353,11 @@ export interface CreateModelPackageInput {
|
|
|
3341
3353
|
Domain?: string;
|
|
3342
3354
|
/**
|
|
3343
3355
|
* <p>The machine learning task your model package accomplishes. Common machine
|
|
3344
|
-
* learning tasks include object detection and image classification
|
|
3356
|
+
* learning tasks include object detection and image classification. The following
|
|
3357
|
+
* tasks are supported by Inference Recommender:
|
|
3358
|
+
* <code>"IMAGE_CLASSIFICATION"</code> | <code>"OBJECT_DETECTION"</code> | <code>"TEXT_GENERATION"</code> |<code>"IMAGE_SEGMENTATION"</code> |
|
|
3359
|
+
* <code>"FILL_MASK"</code> | <code>"CLASSIFICATION"</code> | <code>"REGRESSION"</code> | <code>"OTHER"</code>.</p>
|
|
3360
|
+
* <p>Specify "OTHER" if none of the tasks listed fit your use case.</p>
|
|
3345
3361
|
*/
|
|
3346
3362
|
Task?: string;
|
|
3347
3363
|
/**
|
|
@@ -6062,27 +6078,27 @@ export declare namespace CreateWorkteamResponse {
|
|
|
6062
6078
|
const filterSensitiveLog: (obj: CreateWorkteamResponse) => any;
|
|
6063
6079
|
}
|
|
6064
6080
|
/**
|
|
6065
|
-
* <p
|
|
6081
|
+
* <p>The currently active data capture configuration used by your Endpoint.</p>
|
|
6066
6082
|
*/
|
|
6067
6083
|
export interface DataCaptureConfigSummary {
|
|
6068
6084
|
/**
|
|
6069
|
-
* <p
|
|
6085
|
+
* <p>Whether data capture is enabled or disabled.</p>
|
|
6070
6086
|
*/
|
|
6071
6087
|
EnableCapture: boolean | undefined;
|
|
6072
6088
|
/**
|
|
6073
|
-
* <p
|
|
6089
|
+
* <p>Whether data capture is currently functional.</p>
|
|
6074
6090
|
*/
|
|
6075
6091
|
CaptureStatus: CaptureStatus | string | undefined;
|
|
6076
6092
|
/**
|
|
6077
|
-
* <p
|
|
6093
|
+
* <p>The percentage of requests being captured by your Endpoint.</p>
|
|
6078
6094
|
*/
|
|
6079
6095
|
CurrentSamplingPercentage: number | undefined;
|
|
6080
6096
|
/**
|
|
6081
|
-
* <p
|
|
6097
|
+
* <p>The Amazon S3 location being used to capture the data.</p>
|
|
6082
6098
|
*/
|
|
6083
6099
|
DestinationS3Uri: string | undefined;
|
|
6084
6100
|
/**
|
|
6085
|
-
* <p
|
|
6101
|
+
* <p>The KMS key being used to encrypt the data in Amazon S3.</p>
|
|
6086
6102
|
*/
|
|
6087
6103
|
KmsKeyId: string | undefined;
|
|
6088
6104
|
}
|
|
@@ -8304,7 +8320,7 @@ export interface DescribeEndpointOutput {
|
|
|
8304
8320
|
*/
|
|
8305
8321
|
ProductionVariants?: ProductionVariantSummary[];
|
|
8306
8322
|
/**
|
|
8307
|
-
* <p
|
|
8323
|
+
* <p>The currently active data capture configuration used by your Endpoint.</p>
|
|
8308
8324
|
*/
|
|
8309
8325
|
DataCaptureConfig?: DataCaptureConfigSummary;
|
|
8310
8326
|
/**
|
|
@@ -8422,7 +8438,7 @@ export interface DescribeEndpointConfigOutput {
|
|
|
8422
8438
|
*/
|
|
8423
8439
|
ProductionVariants: ProductionVariant[] | undefined;
|
|
8424
8440
|
/**
|
|
8425
|
-
* <p
|
|
8441
|
+
* <p>Configuration to control how SageMaker captures inference data.</p>
|
|
8426
8442
|
*/
|
|
8427
8443
|
DataCaptureConfig?: DataCaptureConfig;
|
|
8428
8444
|
/**
|
|
@@ -9483,23 +9499,3 @@ export declare namespace LabelCounters {
|
|
|
9483
9499
|
*/
|
|
9484
9500
|
const filterSensitiveLog: (obj: LabelCounters) => any;
|
|
9485
9501
|
}
|
|
9486
|
-
/**
|
|
9487
|
-
* <p>Specifies the location of the output produced by the labeling job. </p>
|
|
9488
|
-
*/
|
|
9489
|
-
export interface LabelingJobOutput {
|
|
9490
|
-
/**
|
|
9491
|
-
* <p>The Amazon S3 bucket location of the manifest file for labeled data. </p>
|
|
9492
|
-
*/
|
|
9493
|
-
OutputDatasetS3Uri: string | undefined;
|
|
9494
|
-
/**
|
|
9495
|
-
* <p>The Amazon Resource Name (ARN) for the most recent SageMaker model trained as part of
|
|
9496
|
-
* automated data labeling. </p>
|
|
9497
|
-
*/
|
|
9498
|
-
FinalActiveLearningModelArn?: string;
|
|
9499
|
-
}
|
|
9500
|
-
export declare namespace LabelingJobOutput {
|
|
9501
|
-
/**
|
|
9502
|
-
* @internal
|
|
9503
|
-
*/
|
|
9504
|
-
const filterSensitiveLog: (obj: LabelingJobOutput) => any;
|
|
9505
|
-
}
|
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
import { ActionSummary, AdditionalInferenceSpecificationDefinition, AgentVersion, AlgorithmSortBy, AlgorithmSpecification, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, AppSpecification, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, BatchStrategy, CacheHitResult, CallbackStepMetadata, CandidateSortBy, CandidateStatus, Channel, CheckpointConfig, ClarifyCheckStepMetadata, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CognitoConfig, CompilationJobStatus, CompilationJobSummary, ConditionStepMetadata, ContainerDefinition, ContextSummary, EdgeOutputConfig, FeatureDefinition, HyperParameterTuningJobStrategyType, InferenceSpecification, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStoppingCondition, OfflineStoreConfig, OnlineStoreConfig, OutputDataConfig, OutputParameter, ResourceConfig, ResourceLimits, ResourceSpec, RetryStrategy, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, UserSettings, VpcConfig } from "./models_0";
|
|
2
|
-
import { _InstanceType, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DirectInternetAccess, DomainStatus, DriftCheckBaselines, EdgePackagingJobStatus, EndpointStatus, ExperimentConfig, ExperimentSource, FeatureGroupStatus, FlowDefinitionStatus, HumanTaskConfig, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceExecutionConfig, LabelCounters, LabelingJobAlgorithmsConfig, LabelingJobInputConfig,
|
|
2
|
+
import { _InstanceType, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DirectInternetAccess, DomainStatus, DriftCheckBaselines, EdgePackagingJobStatus, EndpointStatus, ExperimentConfig, ExperimentSource, FeatureGroupStatus, FlowDefinitionStatus, HumanTaskConfig, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceExecutionConfig, LabelCounters, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, MemberDefinition, ModelArtifacts, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelClientConfig, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelMetrics, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, ObjectiveStatusCounters, OfflineStoreStatus, OfflineStoreStatusValue, ParallelismConfiguration, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProductionVariantSummary, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobStatus, RecommendationJobType, RootAccess, RuleEvaluationStatus, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrainingJobStatus, TrainingJobStatusCounters, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus } from "./models_1";
|
|
3
|
+
/**
|
|
4
|
+
* <p>Specifies the location of the output produced by the labeling job. </p>
|
|
5
|
+
*/
|
|
6
|
+
export interface LabelingJobOutput {
|
|
7
|
+
/**
|
|
8
|
+
* <p>The Amazon S3 bucket location of the manifest file for labeled data. </p>
|
|
9
|
+
*/
|
|
10
|
+
OutputDatasetS3Uri: string | undefined;
|
|
11
|
+
/**
|
|
12
|
+
* <p>The Amazon Resource Name (ARN) for the most recent SageMaker model trained as part of
|
|
13
|
+
* automated data labeling. </p>
|
|
14
|
+
*/
|
|
15
|
+
FinalActiveLearningModelArn?: string;
|
|
16
|
+
}
|
|
17
|
+
export declare namespace LabelingJobOutput {
|
|
18
|
+
/**
|
|
19
|
+
* @internal
|
|
20
|
+
*/
|
|
21
|
+
const filterSensitiveLog: (obj: LabelingJobOutput) => any;
|
|
22
|
+
}
|
|
3
23
|
export declare enum LabelingJobStatus {
|
|
4
24
|
COMPLETED = "Completed",
|
|
5
25
|
FAILED = "Failed",
|
|
@@ -3475,7 +3495,7 @@ export interface Endpoint {
|
|
|
3475
3495
|
*/
|
|
3476
3496
|
ProductionVariants?: ProductionVariantSummary[];
|
|
3477
3497
|
/**
|
|
3478
|
-
* <p
|
|
3498
|
+
* <p>The currently active data capture configuration used by your Endpoint.</p>
|
|
3479
3499
|
*/
|
|
3480
3500
|
DataCaptureConfig?: DataCaptureConfigSummary;
|
|
3481
3501
|
/**
|
|
@@ -8764,26 +8784,3 @@ export declare namespace ListSubscribedWorkteamsResponse {
|
|
|
8764
8784
|
*/
|
|
8765
8785
|
const filterSensitiveLog: (obj: ListSubscribedWorkteamsResponse) => any;
|
|
8766
8786
|
}
|
|
8767
|
-
export interface ListTagsInput {
|
|
8768
|
-
/**
|
|
8769
|
-
* <p>The Amazon Resource Name (ARN) of the resource whose tags you want to
|
|
8770
|
-
* retrieve.</p>
|
|
8771
|
-
*/
|
|
8772
|
-
ResourceArn: string | undefined;
|
|
8773
|
-
/**
|
|
8774
|
-
* <p> If the response to the previous <code>ListTags</code> request is truncated, SageMaker
|
|
8775
|
-
* returns this token. To retrieve the next set of tags, use it in the subsequent request.
|
|
8776
|
-
* </p>
|
|
8777
|
-
*/
|
|
8778
|
-
NextToken?: string;
|
|
8779
|
-
/**
|
|
8780
|
-
* <p>Maximum number of tags to return.</p>
|
|
8781
|
-
*/
|
|
8782
|
-
MaxResults?: number;
|
|
8783
|
-
}
|
|
8784
|
-
export declare namespace ListTagsInput {
|
|
8785
|
-
/**
|
|
8786
|
-
* @internal
|
|
8787
|
-
*/
|
|
8788
|
-
const filterSensitiveLog: (obj: ListTagsInput) => any;
|
|
8789
|
-
}
|
|
@@ -1,6 +1,29 @@
|
|
|
1
1
|
import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppSpecification, BatchStrategy, BooleanOperator, Channel, CheckpointConfig, DeploymentConfig, EdgeOutputConfig, InferenceSpecification, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, RetryStrategy, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UiTemplate, UserContext, UserSettings, VpcConfig } from "./models_0";
|
|
2
2
|
import { _InstanceType, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DriftCheckBaselines, ExperimentConfig, HyperParameterTrainingJobSummary, MemberDefinition, ModelArtifacts, ModelClientConfig, ModelMetrics, ModelPackageValidationSpecification, MonitoringScheduleConfig, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OidcConfig, ParallelismConfiguration, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerRuleConfiguration, ProvisioningParameter, RootAccess, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, TensorBoardOutputConfig, TrainingJobStatus, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus } from "./models_1";
|
|
3
3
|
import { DesiredWeightAndCapacity, Device, Direction, DomainSettingsForUpdate, Edge, Endpoint, Experiment, FeatureGroup, Filter, GitConfigForUpdate, LineageType, MetricData, ModelPackageGroupStatus, ModelPackageStatusDetails, Parameter, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, ResourceType, SecondaryStatus, SecondaryStatusTransition, ServiceCatalogProvisionedProductDetails, SortBy, SortOrder, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, Workforce, Workteam } from "./models_2";
|
|
4
|
+
export interface ListTagsInput {
|
|
5
|
+
/**
|
|
6
|
+
* <p>The Amazon Resource Name (ARN) of the resource whose tags you want to
|
|
7
|
+
* retrieve.</p>
|
|
8
|
+
*/
|
|
9
|
+
ResourceArn: string | undefined;
|
|
10
|
+
/**
|
|
11
|
+
* <p> If the response to the previous <code>ListTags</code> request is truncated, SageMaker
|
|
12
|
+
* returns this token. To retrieve the next set of tags, use it in the subsequent request.
|
|
13
|
+
* </p>
|
|
14
|
+
*/
|
|
15
|
+
NextToken?: string;
|
|
16
|
+
/**
|
|
17
|
+
* <p>Maximum number of tags to return.</p>
|
|
18
|
+
*/
|
|
19
|
+
MaxResults?: number;
|
|
20
|
+
}
|
|
21
|
+
export declare namespace ListTagsInput {
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
const filterSensitiveLog: (obj: ListTagsInput) => any;
|
|
26
|
+
}
|
|
4
27
|
export interface ListTagsOutput {
|
|
5
28
|
/**
|
|
6
29
|
* <p>An array of <code>Tag</code> objects, each with a tag key and a value.</p>
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { CreateImageRequest
|
|
3
|
+
import { CreateImageRequest } from "../models/models_0";
|
|
4
|
+
import { CreateImageResponse } from "../models/models_1";
|
|
4
5
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
5
6
|
export interface CreateImageCommandInput extends CreateImageRequest {
|
|
6
7
|
}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
-
import { ListTagsInput } from "../models/
|
|
4
|
-
import { ListTagsOutput } from "../models/models_3";
|
|
3
|
+
import { ListTagsInput, ListTagsOutput } from "../models/models_3";
|
|
5
4
|
import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
|
|
6
5
|
export interface ListTagsCommandInput extends ListTagsInput {
|
|
7
6
|
}
|
|
@@ -1232,6 +1232,15 @@ export declare namespace AutoMLCandidate {
|
|
|
1232
1232
|
|
|
1233
1233
|
const filterSensitiveLog: (obj: AutoMLCandidate) => any;
|
|
1234
1234
|
}
|
|
1235
|
+
|
|
1236
|
+
export interface AutoMLCandidateGenerationConfig {
|
|
1237
|
+
|
|
1238
|
+
FeatureSpecificationS3Uri?: string;
|
|
1239
|
+
}
|
|
1240
|
+
export declare namespace AutoMLCandidateGenerationConfig {
|
|
1241
|
+
|
|
1242
|
+
const filterSensitiveLog: (obj: AutoMLCandidateGenerationConfig) => any;
|
|
1243
|
+
}
|
|
1235
1244
|
export declare enum AutoMLChannelType {
|
|
1236
1245
|
TRAINING = "training",
|
|
1237
1246
|
VALIDATION = "validation"
|
|
@@ -1342,6 +1351,8 @@ export interface AutoMLJobConfig {
|
|
|
1342
1351
|
SecurityConfig?: AutoMLSecurityConfig;
|
|
1343
1352
|
|
|
1344
1353
|
DataSplitConfig?: AutoMLDataSplitConfig;
|
|
1354
|
+
|
|
1355
|
+
CandidateGenerationConfig?: AutoMLCandidateGenerationConfig;
|
|
1345
1356
|
}
|
|
1346
1357
|
export declare namespace AutoMLJobConfig {
|
|
1347
1358
|
|
|
@@ -3644,11 +3655,3 @@ export declare namespace CreateImageRequest {
|
|
|
3644
3655
|
|
|
3645
3656
|
const filterSensitiveLog: (obj: CreateImageRequest) => any;
|
|
3646
3657
|
}
|
|
3647
|
-
export interface CreateImageResponse {
|
|
3648
|
-
|
|
3649
|
-
ImageArn?: string;
|
|
3650
|
-
}
|
|
3651
|
-
export declare namespace CreateImageResponse {
|
|
3652
|
-
|
|
3653
|
-
const filterSensitiveLog: (obj: CreateImageResponse) => any;
|
|
3654
|
-
}
|
|
@@ -1,4 +1,12 @@
|
|
|
1
1
|
import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AnnotationConsolidationConfig, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppStatus, AppType, ArtifactSource, AsyncInferenceConfig, AthenaDatasetDefinition, AuthMode, AutoMLCandidate, AutoMLChannel, AutoMLJobArtifacts, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, BatchStrategy, Bias, CaptureStatus, CategoricalParameter, Channel, CheckpointConfig, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, CompilationJobStatus, ContainerDefinition, ContentClassifier, ContextSource, DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DeploymentConfig, DomainSettings, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInput, FeatureDefinition, FlowDefinitionOutputConfig, GitConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobObjectiveType, HyperParameterTuningJobWarmStartConfig, InferenceSpecification, InputConfig, KernelGatewayImageConfig, MetadataProperties, MetricsSource, ModelApprovalStatus, ModelDeployConfig, MonitoringConstraintsResource, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStatisticsResource, MonitoringStoppingCondition, NeoVpcConfig, ObjectiveStatus, OfflineStoreConfig, OnlineStoreConfig, OutputConfig, OutputDataConfig, ProblemType, ProcessingInstanceType, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProcessingS3UploadMode, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantInstanceType, ProductionVariantServerlessConfig, PublicWorkforceTaskPrice, ResourceConfig, ResourceSpec, RetryStrategy, StoppingCondition, Tag, TrainingSpecification, TransformInput, TransformJobDefinition, TransformOutput, TransformResources, UserContext, UserSettings, VpcConfig } from "./models_0";
|
|
2
|
+
export interface CreateImageResponse {
|
|
3
|
+
|
|
4
|
+
ImageArn?: string;
|
|
5
|
+
}
|
|
6
|
+
export declare namespace CreateImageResponse {
|
|
7
|
+
|
|
8
|
+
const filterSensitiveLog: (obj: CreateImageResponse) => any;
|
|
9
|
+
}
|
|
2
10
|
export interface CreateImageVersionRequest {
|
|
3
11
|
|
|
4
12
|
BaseImage: string | undefined;
|
|
@@ -3895,14 +3903,3 @@ export declare namespace LabelCounters {
|
|
|
3895
3903
|
|
|
3896
3904
|
const filterSensitiveLog: (obj: LabelCounters) => any;
|
|
3897
3905
|
}
|
|
3898
|
-
|
|
3899
|
-
export interface LabelingJobOutput {
|
|
3900
|
-
|
|
3901
|
-
OutputDatasetS3Uri: string | undefined;
|
|
3902
|
-
|
|
3903
|
-
FinalActiveLearningModelArn?: string;
|
|
3904
|
-
}
|
|
3905
|
-
export declare namespace LabelingJobOutput {
|
|
3906
|
-
|
|
3907
|
-
const filterSensitiveLog: (obj: LabelingJobOutput) => any;
|
|
3908
|
-
}
|
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
import { ActionSummary, AdditionalInferenceSpecificationDefinition, AgentVersion, AlgorithmSortBy, AlgorithmSpecification, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, AppSpecification, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, BatchStrategy, CacheHitResult, CallbackStepMetadata, CandidateSortBy, CandidateStatus, Channel, CheckpointConfig, ClarifyCheckStepMetadata, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CognitoConfig, CompilationJobStatus, CompilationJobSummary, ConditionStepMetadata, ContainerDefinition, ContextSummary, EdgeOutputConfig, FeatureDefinition, HyperParameterTuningJobStrategyType, InferenceSpecification, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStoppingCondition, OfflineStoreConfig, OnlineStoreConfig, OutputDataConfig, OutputParameter, ResourceConfig, ResourceLimits, ResourceSpec, RetryStrategy, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, UserSettings, VpcConfig } from "./models_0";
|
|
2
|
-
import { _InstanceType, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DirectInternetAccess, DomainStatus, DriftCheckBaselines, EdgePackagingJobStatus, EndpointStatus, ExperimentConfig, ExperimentSource, FeatureGroupStatus, FlowDefinitionStatus, HumanTaskConfig, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceExecutionConfig, LabelCounters, LabelingJobAlgorithmsConfig, LabelingJobInputConfig,
|
|
2
|
+
import { _InstanceType, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DirectInternetAccess, DomainStatus, DriftCheckBaselines, EdgePackagingJobStatus, EndpointStatus, ExperimentConfig, ExperimentSource, FeatureGroupStatus, FlowDefinitionStatus, HumanTaskConfig, HyperParameterTuningJobStatus, ImageStatus, ImageVersionStatus, InferenceExecutionConfig, LabelCounters, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, MemberDefinition, ModelArtifacts, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelClientConfig, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelMetrics, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, ObjectiveStatusCounters, OfflineStoreStatus, OfflineStoreStatusValue, ParallelismConfiguration, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProductionVariantSummary, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobStatus, RecommendationJobType, RootAccess, RuleEvaluationStatus, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrainingJobStatus, TrainingJobStatusCounters, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus } from "./models_1";
|
|
3
|
+
|
|
4
|
+
export interface LabelingJobOutput {
|
|
5
|
+
|
|
6
|
+
OutputDatasetS3Uri: string | undefined;
|
|
7
|
+
|
|
8
|
+
FinalActiveLearningModelArn?: string;
|
|
9
|
+
}
|
|
10
|
+
export declare namespace LabelingJobOutput {
|
|
11
|
+
|
|
12
|
+
const filterSensitiveLog: (obj: LabelingJobOutput) => any;
|
|
13
|
+
}
|
|
3
14
|
export declare enum LabelingJobStatus {
|
|
4
15
|
COMPLETED = "Completed",
|
|
5
16
|
FAILED = "Failed",
|
|
@@ -4321,15 +4332,3 @@ export declare namespace ListSubscribedWorkteamsResponse {
|
|
|
4321
4332
|
|
|
4322
4333
|
const filterSensitiveLog: (obj: ListSubscribedWorkteamsResponse) => any;
|
|
4323
4334
|
}
|
|
4324
|
-
export interface ListTagsInput {
|
|
4325
|
-
|
|
4326
|
-
ResourceArn: string | undefined;
|
|
4327
|
-
|
|
4328
|
-
NextToken?: string;
|
|
4329
|
-
|
|
4330
|
-
MaxResults?: number;
|
|
4331
|
-
}
|
|
4332
|
-
export declare namespace ListTagsInput {
|
|
4333
|
-
|
|
4334
|
-
const filterSensitiveLog: (obj: ListTagsInput) => any;
|
|
4335
|
-
}
|
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppSpecification, BatchStrategy, BooleanOperator, Channel, CheckpointConfig, DeploymentConfig, EdgeOutputConfig, InferenceSpecification, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, RetryStrategy, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UiTemplate, UserContext, UserSettings, VpcConfig } from "./models_0";
|
|
2
2
|
import { _InstanceType, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DriftCheckBaselines, ExperimentConfig, HyperParameterTrainingJobSummary, MemberDefinition, ModelArtifacts, ModelClientConfig, ModelMetrics, ModelPackageValidationSpecification, MonitoringScheduleConfig, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OidcConfig, ParallelismConfiguration, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerRuleConfiguration, ProvisioningParameter, RootAccess, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, TensorBoardOutputConfig, TrainingJobStatus, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus } from "./models_1";
|
|
3
3
|
import { DesiredWeightAndCapacity, Device, Direction, DomainSettingsForUpdate, Edge, Endpoint, Experiment, FeatureGroup, Filter, GitConfigForUpdate, LineageType, MetricData, ModelPackageGroupStatus, ModelPackageStatusDetails, Parameter, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, ResourceType, SecondaryStatus, SecondaryStatusTransition, ServiceCatalogProvisionedProductDetails, SortBy, SortOrder, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, Workforce, Workteam } from "./models_2";
|
|
4
|
+
export interface ListTagsInput {
|
|
5
|
+
|
|
6
|
+
ResourceArn: string | undefined;
|
|
7
|
+
|
|
8
|
+
NextToken?: string;
|
|
9
|
+
|
|
10
|
+
MaxResults?: number;
|
|
11
|
+
}
|
|
12
|
+
export declare namespace ListTagsInput {
|
|
13
|
+
|
|
14
|
+
const filterSensitiveLog: (obj: ListTagsInput) => any;
|
|
15
|
+
}
|
|
4
16
|
export interface ListTagsOutput {
|
|
5
17
|
|
|
6
18
|
Tags?: Tag[];
|