@aws-sdk/client-sagemaker 3.259.0 → 3.261.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/dist-cjs/commands/DeregisterDevicesCommand.js +2 -2
- package/dist-cjs/commands/DescribeActionCommand.js +3 -3
- package/dist-cjs/commands/ListArtifactsCommand.js +2 -1
- package/dist-cjs/commands/ListAssociationsCommand.js +1 -2
- package/dist-cjs/commands/UpdateExperimentCommand.js +3 -3
- package/dist-cjs/commands/UpdateFeatureGroupCommand.js +1 -2
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +19 -18
- package/dist-cjs/models/models_1.js +19 -19
- package/dist-cjs/models/models_2.js +17 -21
- package/dist-cjs/models/models_3.js +22 -18
- package/dist-cjs/models/models_4.js +13 -1
- package/dist-cjs/protocols/Aws_json1_1.js +36 -0
- package/dist-es/commands/DeregisterDevicesCommand.js +1 -1
- package/dist-es/commands/DescribeActionCommand.js +1 -1
- package/dist-es/commands/ListArtifactsCommand.js +2 -1
- package/dist-es/commands/ListAssociationsCommand.js +1 -2
- package/dist-es/commands/UpdateExperimentCommand.js +1 -1
- package/dist-es/commands/UpdateFeatureGroupCommand.js +1 -2
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +11 -9
- package/dist-es/models/models_1.js +9 -9
- package/dist-es/models/models_2.js +9 -14
- package/dist-es/models/models_3.js +14 -9
- package/dist-es/models/models_4.js +9 -0
- package/dist-es/protocols/Aws_json1_1.js +36 -0
- package/dist-types/commands/DeregisterDevicesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeActionCommand.d.ts +1 -1
- package/dist-types/commands/ListArtifactsCommand.d.ts +2 -1
- package/dist-types/commands/ListAssociationsCommand.d.ts +1 -2
- package/dist-types/commands/UpdateExperimentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFeatureGroupCommand.d.ts +1 -2
- package/dist-types/models/models_0.d.ts +43 -76
- package/dist-types/models/models_1.d.ts +78 -86
- package/dist-types/models/models_2.d.ts +86 -74
- package/dist-types/models/models_3.d.ts +73 -46
- package/dist-types/models/models_4.d.ts +46 -1
- package/dist-types/ts3.4/commands/DeregisterDevicesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeActionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListArtifactsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListAssociationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/UpdateExperimentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/UpdateFeatureGroupCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +21 -23
- package/dist-types/ts3.4/models/models_1.d.ts +24 -37
- package/dist-types/ts3.4/models/models_2.d.ts +34 -32
- package/dist-types/ts3.4/models/models_3.d.ts +32 -22
- package/dist-types/ts3.4/models/models_4.d.ts +22 -0
- package/package.json +6 -6
|
@@ -510,6 +510,37 @@ export interface MetricDefinition {
|
|
|
510
510
|
*/
|
|
511
511
|
Regex: string | undefined;
|
|
512
512
|
}
|
|
513
|
+
export declare enum TrainingRepositoryAccessMode {
|
|
514
|
+
PLATFORM = "Platform",
|
|
515
|
+
VPC = "Vpc"
|
|
516
|
+
}
|
|
517
|
+
/**
|
|
518
|
+
* <p>An object containing authentication information for a private Docker registry.</p>
|
|
519
|
+
*/
|
|
520
|
+
export interface TrainingRepositoryAuthConfig {
|
|
521
|
+
/**
|
|
522
|
+
* <p>The Amazon Resource Name (ARN) of an Amazon Web Services Lambda function used to give SageMaker access
|
|
523
|
+
* credentials to your private Docker registry.</p>
|
|
524
|
+
*/
|
|
525
|
+
TrainingRepositoryCredentialsProviderArn: string | undefined;
|
|
526
|
+
}
|
|
527
|
+
/**
|
|
528
|
+
* <p>The configuration to use an image from a private Docker registry for a training
|
|
529
|
+
* job.</p>
|
|
530
|
+
*/
|
|
531
|
+
export interface TrainingImageConfig {
|
|
532
|
+
/**
|
|
533
|
+
* <p>The method that your training job will use to gain access to the images in your
|
|
534
|
+
* private Docker registry. For access to an image in a private Docker registry, set to
|
|
535
|
+
* <code>Vpc</code>.</p>
|
|
536
|
+
*/
|
|
537
|
+
TrainingRepositoryAccessMode: TrainingRepositoryAccessMode | string | undefined;
|
|
538
|
+
/**
|
|
539
|
+
* <p>An object containing authentication information for a private Docker registry
|
|
540
|
+
* containing your training images.</p>
|
|
541
|
+
*/
|
|
542
|
+
TrainingRepositoryAuthConfig?: TrainingRepositoryAuthConfig;
|
|
543
|
+
}
|
|
513
544
|
export declare enum TrainingInputMode {
|
|
514
545
|
FASTFILE = "FastFile",
|
|
515
546
|
FILE = "File",
|
|
@@ -641,6 +672,10 @@ export interface AlgorithmSpecification {
|
|
|
641
672
|
* Runs Your Training Image</a> for additional information.</p>
|
|
642
673
|
*/
|
|
643
674
|
ContainerArguments?: string[];
|
|
675
|
+
/**
|
|
676
|
+
* <p>The configuration to use an image from a private Docker registry for a training job.</p>
|
|
677
|
+
*/
|
|
678
|
+
TrainingImageConfig?: TrainingImageConfig;
|
|
644
679
|
}
|
|
645
680
|
export declare enum AlgorithmStatus {
|
|
646
681
|
COMPLETED = "Completed",
|
|
@@ -8582,70 +8617,6 @@ export declare enum FeatureType {
|
|
|
8582
8617
|
INTEGRAL = "Integral",
|
|
8583
8618
|
STRING = "String"
|
|
8584
8619
|
}
|
|
8585
|
-
/**
|
|
8586
|
-
* <p>A list of features. You must include <code>FeatureName</code> and
|
|
8587
|
-
* <code>FeatureType</code>. Valid feature <code>FeatureType</code>s are
|
|
8588
|
-
* <code>Integral</code>, <code>Fractional</code> and <code>String</code>. </p>
|
|
8589
|
-
*/
|
|
8590
|
-
export interface FeatureDefinition {
|
|
8591
|
-
/**
|
|
8592
|
-
* <p>The name of a feature. The type must be a string. <code>FeatureName</code> cannot be any
|
|
8593
|
-
* of the following: <code>is_deleted</code>, <code>write_time</code>,
|
|
8594
|
-
* <code>api_invocation_time</code>.</p>
|
|
8595
|
-
*/
|
|
8596
|
-
FeatureName?: string;
|
|
8597
|
-
/**
|
|
8598
|
-
* <p>The value type of a feature. Valid values are Integral, Fractional, or String.</p>
|
|
8599
|
-
*/
|
|
8600
|
-
FeatureType?: FeatureType | string;
|
|
8601
|
-
}
|
|
8602
|
-
/**
|
|
8603
|
-
* <p>The meta data of the Glue table which serves as data catalog for the
|
|
8604
|
-
* <code>OfflineStore</code>. </p>
|
|
8605
|
-
*/
|
|
8606
|
-
export interface DataCatalogConfig {
|
|
8607
|
-
/**
|
|
8608
|
-
* <p>The name of the Glue table.</p>
|
|
8609
|
-
*/
|
|
8610
|
-
TableName: string | undefined;
|
|
8611
|
-
/**
|
|
8612
|
-
* <p>The name of the Glue table catalog.</p>
|
|
8613
|
-
*/
|
|
8614
|
-
Catalog: string | undefined;
|
|
8615
|
-
/**
|
|
8616
|
-
* <p>The name of the Glue table database.</p>
|
|
8617
|
-
*/
|
|
8618
|
-
Database: string | undefined;
|
|
8619
|
-
}
|
|
8620
|
-
/**
|
|
8621
|
-
* <p>The Amazon Simple Storage (Amazon S3) location and and security configuration for <code>OfflineStore</code>.</p>
|
|
8622
|
-
*/
|
|
8623
|
-
export interface S3StorageConfig {
|
|
8624
|
-
/**
|
|
8625
|
-
* <p>The S3 URI, or location in Amazon S3, of <code>OfflineStore</code>.</p>
|
|
8626
|
-
* <p>S3 URIs have a format similar to the following: <code>s3://example-bucket/prefix/</code>.</p>
|
|
8627
|
-
*/
|
|
8628
|
-
S3Uri: string | undefined;
|
|
8629
|
-
/**
|
|
8630
|
-
* <p>The Amazon Web Services Key Management Service (KMS) key ID of the key used to encrypt any objects
|
|
8631
|
-
* written into the <code>OfflineStore</code> S3 location.</p>
|
|
8632
|
-
* <p>The IAM <code>roleARN</code> that is passed as a parameter to
|
|
8633
|
-
* <code>CreateFeatureGroup</code> must have below permissions to the
|
|
8634
|
-
* <code>KmsKeyId</code>:</p>
|
|
8635
|
-
* <ul>
|
|
8636
|
-
* <li>
|
|
8637
|
-
* <p>
|
|
8638
|
-
* <code>"kms:GenerateDataKey"</code>
|
|
8639
|
-
* </p>
|
|
8640
|
-
* </li>
|
|
8641
|
-
* </ul>
|
|
8642
|
-
*/
|
|
8643
|
-
KmsKeyId?: string;
|
|
8644
|
-
/**
|
|
8645
|
-
* <p>The S3 path where offline records are written.</p>
|
|
8646
|
-
*/
|
|
8647
|
-
ResolvedOutputS3Uri?: string;
|
|
8648
|
-
}
|
|
8649
8620
|
/**
|
|
8650
8621
|
* @internal
|
|
8651
8622
|
*/
|
|
@@ -8698,6 +8669,14 @@ export declare const AlarmFilterSensitiveLog: (obj: Alarm) => any;
|
|
|
8698
8669
|
* @internal
|
|
8699
8670
|
*/
|
|
8700
8671
|
export declare const MetricDefinitionFilterSensitiveLog: (obj: MetricDefinition) => any;
|
|
8672
|
+
/**
|
|
8673
|
+
* @internal
|
|
8674
|
+
*/
|
|
8675
|
+
export declare const TrainingRepositoryAuthConfigFilterSensitiveLog: (obj: TrainingRepositoryAuthConfig) => any;
|
|
8676
|
+
/**
|
|
8677
|
+
* @internal
|
|
8678
|
+
*/
|
|
8679
|
+
export declare const TrainingImageConfigFilterSensitiveLog: (obj: TrainingImageConfig) => any;
|
|
8701
8680
|
/**
|
|
8702
8681
|
* @internal
|
|
8703
8682
|
*/
|
|
@@ -9474,15 +9453,3 @@ export declare const CreateExperimentRequestFilterSensitiveLog: (obj: CreateExpe
|
|
|
9474
9453
|
* @internal
|
|
9475
9454
|
*/
|
|
9476
9455
|
export declare const CreateExperimentResponseFilterSensitiveLog: (obj: CreateExperimentResponse) => any;
|
|
9477
|
-
/**
|
|
9478
|
-
* @internal
|
|
9479
|
-
*/
|
|
9480
|
-
export declare const FeatureDefinitionFilterSensitiveLog: (obj: FeatureDefinition) => any;
|
|
9481
|
-
/**
|
|
9482
|
-
* @internal
|
|
9483
|
-
*/
|
|
9484
|
-
export declare const DataCatalogConfigFilterSensitiveLog: (obj: DataCatalogConfig) => any;
|
|
9485
|
-
/**
|
|
9486
|
-
* @internal
|
|
9487
|
-
*/
|
|
9488
|
-
export declare const S3StorageConfigFilterSensitiveLog: (obj: S3StorageConfig) => any;
|
|
@@ -1,5 +1,69 @@
|
|
|
1
1
|
import { LazyJsonString as __LazyJsonString } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
2
|
+
import { AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AnnotationConsolidationConfig, AppSpecification, AppType, ArtifactSource, AthenaDatasetDefinition, AwsManagedHumanLoopRequestSource, BatchDataCaptureConfig, BatchStrategy, BatchTransformInput, Bias, CaptureContentTypeHeader, CaptureStatus, CategoricalParameter, CategoricalParameterRange, Channel, CheckpointConfig, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, ContainerDefinition, ContentClassifier, ContinuousParameterRange, DeviceSelectionConfig, EdgeDeploymentConfig, EndpointInput, FeatureType, HyperParameterScalingType, HyperParameterTuningJobObjective, InferenceSpecification, JupyterServerAppSettings, KernelGatewayAppSettings, MetadataProperties, MetricDefinition, MetricsSource, ModelApprovalStatus, MonitoringConstraintsResource, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStatisticsResource, MonitoringStoppingCondition, OutputDataConfig, ProcessingInstanceType, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProcessingS3UploadMode, ProductionVariantInstanceType, ResourceConfig, StoppingCondition, Tag, TrainingInputMode, TrainingInstanceType, TransformInput, TransformJobDefinition, TransformOutput, TransformResources, UserSettings, VpcConfig } from "./models_0";
|
|
3
|
+
/**
|
|
4
|
+
* <p>A list of features. You must include <code>FeatureName</code> and
|
|
5
|
+
* <code>FeatureType</code>. Valid feature <code>FeatureType</code>s are
|
|
6
|
+
* <code>Integral</code>, <code>Fractional</code> and <code>String</code>. </p>
|
|
7
|
+
*/
|
|
8
|
+
export interface FeatureDefinition {
|
|
9
|
+
/**
|
|
10
|
+
* <p>The name of a feature. The type must be a string. <code>FeatureName</code> cannot be any
|
|
11
|
+
* of the following: <code>is_deleted</code>, <code>write_time</code>,
|
|
12
|
+
* <code>api_invocation_time</code>.</p>
|
|
13
|
+
*/
|
|
14
|
+
FeatureName?: string;
|
|
15
|
+
/**
|
|
16
|
+
* <p>The value type of a feature. Valid values are Integral, Fractional, or String.</p>
|
|
17
|
+
*/
|
|
18
|
+
FeatureType?: FeatureType | string;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* <p>The meta data of the Glue table which serves as data catalog for the
|
|
22
|
+
* <code>OfflineStore</code>. </p>
|
|
23
|
+
*/
|
|
24
|
+
export interface DataCatalogConfig {
|
|
25
|
+
/**
|
|
26
|
+
* <p>The name of the Glue table.</p>
|
|
27
|
+
*/
|
|
28
|
+
TableName: string | undefined;
|
|
29
|
+
/**
|
|
30
|
+
* <p>The name of the Glue table catalog.</p>
|
|
31
|
+
*/
|
|
32
|
+
Catalog: string | undefined;
|
|
33
|
+
/**
|
|
34
|
+
* <p>The name of the Glue table database.</p>
|
|
35
|
+
*/
|
|
36
|
+
Database: string | undefined;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* <p>The Amazon Simple Storage (Amazon S3) location and and security configuration for <code>OfflineStore</code>.</p>
|
|
40
|
+
*/
|
|
41
|
+
export interface S3StorageConfig {
|
|
42
|
+
/**
|
|
43
|
+
* <p>The S3 URI, or location in Amazon S3, of <code>OfflineStore</code>.</p>
|
|
44
|
+
* <p>S3 URIs have a format similar to the following: <code>s3://example-bucket/prefix/</code>.</p>
|
|
45
|
+
*/
|
|
46
|
+
S3Uri: string | undefined;
|
|
47
|
+
/**
|
|
48
|
+
* <p>The Amazon Web Services Key Management Service (KMS) key ID of the key used to encrypt any objects
|
|
49
|
+
* written into the <code>OfflineStore</code> S3 location.</p>
|
|
50
|
+
* <p>The IAM <code>roleARN</code> that is passed as a parameter to
|
|
51
|
+
* <code>CreateFeatureGroup</code> must have below permissions to the
|
|
52
|
+
* <code>KmsKeyId</code>:</p>
|
|
53
|
+
* <ul>
|
|
54
|
+
* <li>
|
|
55
|
+
* <p>
|
|
56
|
+
* <code>"kms:GenerateDataKey"</code>
|
|
57
|
+
* </p>
|
|
58
|
+
* </li>
|
|
59
|
+
* </ul>
|
|
60
|
+
*/
|
|
61
|
+
KmsKeyId?: string;
|
|
62
|
+
/**
|
|
63
|
+
* <p>The S3 path where offline records are written.</p>
|
|
64
|
+
*/
|
|
65
|
+
ResolvedOutputS3Uri?: string;
|
|
66
|
+
}
|
|
3
67
|
export declare enum TableFormat {
|
|
4
68
|
GLUE = "Glue",
|
|
5
69
|
ICEBERG = "Iceberg"
|
|
@@ -1689,7 +1753,7 @@ export interface HyperParameterTrainingJobDefinition {
|
|
|
1689
1753
|
HyperParameterTuningResourceConfig?: HyperParameterTuningResourceConfig;
|
|
1690
1754
|
/**
|
|
1691
1755
|
* <p>An environment variable that you can pass into the SageMaker <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateTrainingJob.html">CreateTrainingJob</a> API. You can use an existing <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateTrainingJob.html#sagemaker-CreateTrainingJob-request-Environment">environment variable from the training container</a> or use your own. See
|
|
1692
|
-
*
|
|
1756
|
+
* <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/automatic-model-tuning-define-metrics.html">Define metrics
|
|
1693
1757
|
* and variables</a> for more information.</p>
|
|
1694
1758
|
* <note>
|
|
1695
1759
|
* <p>The maximum number of items specified for <code>Map Entries</code> refers to the
|
|
@@ -8278,78 +8342,18 @@ export interface DeploymentStageStatusSummary {
|
|
|
8278
8342
|
*/
|
|
8279
8343
|
DeploymentStatus: EdgeDeploymentStatus | undefined;
|
|
8280
8344
|
}
|
|
8281
|
-
|
|
8282
|
-
|
|
8283
|
-
|
|
8284
|
-
|
|
8285
|
-
|
|
8286
|
-
|
|
8287
|
-
|
|
8288
|
-
|
|
8289
|
-
|
|
8290
|
-
|
|
8291
|
-
|
|
8292
|
-
|
|
8293
|
-
* <p>The name of the action to describe.</p>
|
|
8294
|
-
*/
|
|
8295
|
-
ActionName: string | undefined;
|
|
8296
|
-
}
|
|
8297
|
-
export interface DescribeActionResponse {
|
|
8298
|
-
/**
|
|
8299
|
-
* <p>The name of the action.</p>
|
|
8300
|
-
*/
|
|
8301
|
-
ActionName?: string;
|
|
8302
|
-
/**
|
|
8303
|
-
* <p>The Amazon Resource Name (ARN) of the action.</p>
|
|
8304
|
-
*/
|
|
8305
|
-
ActionArn?: string;
|
|
8306
|
-
/**
|
|
8307
|
-
* <p>The source of the action.</p>
|
|
8308
|
-
*/
|
|
8309
|
-
Source?: ActionSource;
|
|
8310
|
-
/**
|
|
8311
|
-
* <p>The type of the action.</p>
|
|
8312
|
-
*/
|
|
8313
|
-
ActionType?: string;
|
|
8314
|
-
/**
|
|
8315
|
-
* <p>The description of the action.</p>
|
|
8316
|
-
*/
|
|
8317
|
-
Description?: string;
|
|
8318
|
-
/**
|
|
8319
|
-
* <p>The status of the action.</p>
|
|
8320
|
-
*/
|
|
8321
|
-
Status?: ActionStatus | string;
|
|
8322
|
-
/**
|
|
8323
|
-
* <p>A list of the action's properties.</p>
|
|
8324
|
-
*/
|
|
8325
|
-
Properties?: Record<string, string>;
|
|
8326
|
-
/**
|
|
8327
|
-
* <p>When the action was created.</p>
|
|
8328
|
-
*/
|
|
8329
|
-
CreationTime?: Date;
|
|
8330
|
-
/**
|
|
8331
|
-
* <p>Information about the user who created or modified an experiment, trial, trial
|
|
8332
|
-
* component, lineage group, project, or model card.</p>
|
|
8333
|
-
*/
|
|
8334
|
-
CreatedBy?: UserContext;
|
|
8335
|
-
/**
|
|
8336
|
-
* <p>When the action was last modified.</p>
|
|
8337
|
-
*/
|
|
8338
|
-
LastModifiedTime?: Date;
|
|
8339
|
-
/**
|
|
8340
|
-
* <p>Information about the user who created or modified an experiment, trial, trial
|
|
8341
|
-
* component, lineage group, project, or model card.</p>
|
|
8342
|
-
*/
|
|
8343
|
-
LastModifiedBy?: UserContext;
|
|
8344
|
-
/**
|
|
8345
|
-
* <p>Metadata properties of the tracking entity, trial, or trial component.</p>
|
|
8346
|
-
*/
|
|
8347
|
-
MetadataProperties?: MetadataProperties;
|
|
8348
|
-
/**
|
|
8349
|
-
* <p>The Amazon Resource Name (ARN) of the lineage group.</p>
|
|
8350
|
-
*/
|
|
8351
|
-
LineageGroupArn?: string;
|
|
8352
|
-
}
|
|
8345
|
+
/**
|
|
8346
|
+
* @internal
|
|
8347
|
+
*/
|
|
8348
|
+
export declare const FeatureDefinitionFilterSensitiveLog: (obj: FeatureDefinition) => any;
|
|
8349
|
+
/**
|
|
8350
|
+
* @internal
|
|
8351
|
+
*/
|
|
8352
|
+
export declare const DataCatalogConfigFilterSensitiveLog: (obj: DataCatalogConfig) => any;
|
|
8353
|
+
/**
|
|
8354
|
+
* @internal
|
|
8355
|
+
*/
|
|
8356
|
+
export declare const S3StorageConfigFilterSensitiveLog: (obj: S3StorageConfig) => any;
|
|
8353
8357
|
/**
|
|
8354
8358
|
* @internal
|
|
8355
8359
|
*/
|
|
@@ -9406,15 +9410,3 @@ export declare const EdgeDeploymentStatusFilterSensitiveLog: (obj: EdgeDeploymen
|
|
|
9406
9410
|
* @internal
|
|
9407
9411
|
*/
|
|
9408
9412
|
export declare const DeploymentStageStatusSummaryFilterSensitiveLog: (obj: DeploymentStageStatusSummary) => any;
|
|
9409
|
-
/**
|
|
9410
|
-
* @internal
|
|
9411
|
-
*/
|
|
9412
|
-
export declare const DeregisterDevicesRequestFilterSensitiveLog: (obj: DeregisterDevicesRequest) => any;
|
|
9413
|
-
/**
|
|
9414
|
-
* @internal
|
|
9415
|
-
*/
|
|
9416
|
-
export declare const DescribeActionRequestFilterSensitiveLog: (obj: DescribeActionRequest) => any;
|
|
9417
|
-
/**
|
|
9418
|
-
* @internal
|
|
9419
|
-
*/
|
|
9420
|
-
export declare const DescribeActionResponseFilterSensitiveLog: (obj: DescribeActionResponse) => any;
|
|
@@ -1,5 +1,77 @@
|
|
|
1
|
-
import { ActionSummary, AdditionalInferenceSpecificationDefinition, AgentVersion, AlgorithmSortBy, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmSummary, AlgorithmValidationSpecification, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppNetworkAccessType, AppSecurityGroupManagement, AppSortKey, AppSpecification, AppStatus, AppType, ArtifactSource,
|
|
2
|
-
import { _InstanceType, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DeployedImage, DeploymentStageStatusSummary, DirectInternetAccess, DriftCheckBaselines, EndpointInfo, ExperimentConfig, FlowDefinitionOutputConfig, HubContentType, HubS3StorageConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobStrategyType, HyperParameterTuningJobWarmStartConfig, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InferenceExperimentType, InstanceMetadataServiceConfiguration, JobType, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, MemberDefinition, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelCardExportOutputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelClientConfig, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelInfrastructureConfig, ModelMetrics, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OfflineStoreConfig, OnlineStoreConfig, ParallelismConfiguration, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, Processor, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, ResourceLimits, RetryStrategy, RootAccess, RuleEvaluationStatus, ServiceCatalogProvisioningDetails, ShadowModeConfig, SourceAlgorithmSpecification, SourceIpConfig, SpaceSettings, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, VendorGuidance } from "./models_1";
|
|
1
|
+
import { ActionSource, ActionStatus, ActionSummary, AdditionalInferenceSpecificationDefinition, AgentVersion, AlgorithmSortBy, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmSummary, AlgorithmValidationSpecification, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppNetworkAccessType, AppSecurityGroupManagement, AppSortKey, AppSpecification, AppStatus, AppType, ArtifactSource, AssociationEdgeType, AsyncInferenceConfig, AuthMode, AutoMLCandidate, AutoMLChannel, AutoMLJobArtifacts, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, BatchDataCaptureConfig, BatchStrategy, Channel, CheckpointConfig, CognitoConfig, CompilationJobStatus, ContainerDefinition, ContextSource, DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DefaultSpaceSettings, DeploymentConfig, DomainSettings, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, ExecutionRoleIdentityConfig, ExplainerConfig, FeatureType, GitConfig, HyperParameterTuningJobObjectiveType, InferenceSpecification, InputConfig, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelDeployConfig, ModelPackageStatus, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStoppingCondition, NeoVpcConfig, ObjectiveStatus, OutputConfig, OutputDataConfig, OutputParameter, ProblemType, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantInstanceType, ProductionVariantServerlessConfig, ResourceConfig, ResourceSpec, StoppingCondition, Tag, TrainingSpecification, TransformInput, TransformOutput, TransformResources, UserContext, UserSettings, VpcConfig } from "./models_0";
|
|
2
|
+
import { _InstanceType, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DeployedImage, DeploymentStageStatusSummary, DirectInternetAccess, DriftCheckBaselines, EndpointInfo, ExperimentConfig, FeatureDefinition, FlowDefinitionOutputConfig, HubContentType, HubS3StorageConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobStrategyType, HyperParameterTuningJobWarmStartConfig, InferenceExecutionConfig, InferenceExperimentDataStorageConfig, InferenceExperimentSchedule, InferenceExperimentType, InstanceMetadataServiceConfiguration, JobType, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, MemberDefinition, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelCardExportOutputConfig, ModelCardSecurityConfig, ModelCardStatus, ModelClientConfig, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelInfrastructureConfig, ModelMetrics, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OfflineStoreConfig, OnlineStoreConfig, ParallelismConfiguration, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, Processor, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, ResourceLimits, RetryStrategy, RootAccess, RuleEvaluationStatus, ServiceCatalogProvisioningDetails, ShadowModeConfig, SourceAlgorithmSpecification, SourceIpConfig, SpaceSettings, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, VendorGuidance } from "./models_1";
|
|
3
|
+
export interface DeregisterDevicesRequest {
|
|
4
|
+
/**
|
|
5
|
+
* <p>The name of the fleet the devices belong to.</p>
|
|
6
|
+
*/
|
|
7
|
+
DeviceFleetName: string | undefined;
|
|
8
|
+
/**
|
|
9
|
+
* <p>The unique IDs of the devices.</p>
|
|
10
|
+
*/
|
|
11
|
+
DeviceNames: string[] | undefined;
|
|
12
|
+
}
|
|
13
|
+
export interface DescribeActionRequest {
|
|
14
|
+
/**
|
|
15
|
+
* <p>The name of the action to describe.</p>
|
|
16
|
+
*/
|
|
17
|
+
ActionName: string | undefined;
|
|
18
|
+
}
|
|
19
|
+
export interface DescribeActionResponse {
|
|
20
|
+
/**
|
|
21
|
+
* <p>The name of the action.</p>
|
|
22
|
+
*/
|
|
23
|
+
ActionName?: string;
|
|
24
|
+
/**
|
|
25
|
+
* <p>The Amazon Resource Name (ARN) of the action.</p>
|
|
26
|
+
*/
|
|
27
|
+
ActionArn?: string;
|
|
28
|
+
/**
|
|
29
|
+
* <p>The source of the action.</p>
|
|
30
|
+
*/
|
|
31
|
+
Source?: ActionSource;
|
|
32
|
+
/**
|
|
33
|
+
* <p>The type of the action.</p>
|
|
34
|
+
*/
|
|
35
|
+
ActionType?: string;
|
|
36
|
+
/**
|
|
37
|
+
* <p>The description of the action.</p>
|
|
38
|
+
*/
|
|
39
|
+
Description?: string;
|
|
40
|
+
/**
|
|
41
|
+
* <p>The status of the action.</p>
|
|
42
|
+
*/
|
|
43
|
+
Status?: ActionStatus | string;
|
|
44
|
+
/**
|
|
45
|
+
* <p>A list of the action's properties.</p>
|
|
46
|
+
*/
|
|
47
|
+
Properties?: Record<string, string>;
|
|
48
|
+
/**
|
|
49
|
+
* <p>When the action was created.</p>
|
|
50
|
+
*/
|
|
51
|
+
CreationTime?: Date;
|
|
52
|
+
/**
|
|
53
|
+
* <p>Information about the user who created or modified an experiment, trial, trial
|
|
54
|
+
* component, lineage group, project, or model card.</p>
|
|
55
|
+
*/
|
|
56
|
+
CreatedBy?: UserContext;
|
|
57
|
+
/**
|
|
58
|
+
* <p>When the action was last modified.</p>
|
|
59
|
+
*/
|
|
60
|
+
LastModifiedTime?: Date;
|
|
61
|
+
/**
|
|
62
|
+
* <p>Information about the user who created or modified an experiment, trial, trial
|
|
63
|
+
* component, lineage group, project, or model card.</p>
|
|
64
|
+
*/
|
|
65
|
+
LastModifiedBy?: UserContext;
|
|
66
|
+
/**
|
|
67
|
+
* <p>Metadata properties of the tracking entity, trial, or trial component.</p>
|
|
68
|
+
*/
|
|
69
|
+
MetadataProperties?: MetadataProperties;
|
|
70
|
+
/**
|
|
71
|
+
* <p>The Amazon Resource Name (ARN) of the lineage group.</p>
|
|
72
|
+
*/
|
|
73
|
+
LineageGroupArn?: string;
|
|
74
|
+
}
|
|
3
75
|
export interface DescribeAlgorithmInput {
|
|
4
76
|
/**
|
|
5
77
|
* <p>The name of the algorithm to describe.</p>
|
|
@@ -8050,70 +8122,18 @@ export interface ListArtifactsRequest {
|
|
|
8050
8122
|
*/
|
|
8051
8123
|
MaxResults?: number;
|
|
8052
8124
|
}
|
|
8053
|
-
|
|
8054
|
-
|
|
8055
|
-
|
|
8056
|
-
|
|
8057
|
-
|
|
8058
|
-
|
|
8059
|
-
|
|
8060
|
-
|
|
8061
|
-
|
|
8062
|
-
|
|
8063
|
-
|
|
8064
|
-
|
|
8065
|
-
DESTINATION_ARN = "DestinationArn",
|
|
8066
|
-
DESTINATION_TYPE = "DestinationType",
|
|
8067
|
-
SOURCE_ARN = "SourceArn",
|
|
8068
|
-
SOURCE_TYPE = "SourceType"
|
|
8069
|
-
}
|
|
8070
|
-
export interface ListAssociationsRequest {
|
|
8071
|
-
/**
|
|
8072
|
-
* <p>A filter that returns only associations with the specified source ARN.</p>
|
|
8073
|
-
*/
|
|
8074
|
-
SourceArn?: string;
|
|
8075
|
-
/**
|
|
8076
|
-
* <p>A filter that returns only associations with the specified destination Amazon Resource Name (ARN).</p>
|
|
8077
|
-
*/
|
|
8078
|
-
DestinationArn?: string;
|
|
8079
|
-
/**
|
|
8080
|
-
* <p>A filter that returns only associations with the specified source type.</p>
|
|
8081
|
-
*/
|
|
8082
|
-
SourceType?: string;
|
|
8083
|
-
/**
|
|
8084
|
-
* <p>A filter that returns only associations with the specified destination type.</p>
|
|
8085
|
-
*/
|
|
8086
|
-
DestinationType?: string;
|
|
8087
|
-
/**
|
|
8088
|
-
* <p>A filter that returns only associations of the specified type.</p>
|
|
8089
|
-
*/
|
|
8090
|
-
AssociationType?: AssociationEdgeType | string;
|
|
8091
|
-
/**
|
|
8092
|
-
* <p>A filter that returns only associations created on or after the specified time.</p>
|
|
8093
|
-
*/
|
|
8094
|
-
CreatedAfter?: Date;
|
|
8095
|
-
/**
|
|
8096
|
-
* <p>A filter that returns only associations created on or before the specified time.</p>
|
|
8097
|
-
*/
|
|
8098
|
-
CreatedBefore?: Date;
|
|
8099
|
-
/**
|
|
8100
|
-
* <p>The property used to sort results. The default value is <code>CreationTime</code>.</p>
|
|
8101
|
-
*/
|
|
8102
|
-
SortBy?: SortAssociationsBy | string;
|
|
8103
|
-
/**
|
|
8104
|
-
* <p>The sort order. The default value is <code>Descending</code>.</p>
|
|
8105
|
-
*/
|
|
8106
|
-
SortOrder?: SortOrder | string;
|
|
8107
|
-
/**
|
|
8108
|
-
* <p>If the previous call to <code>ListAssociations</code> didn't return the full set of associations,
|
|
8109
|
-
* the call returns a token for getting the next set of associations.</p>
|
|
8110
|
-
*/
|
|
8111
|
-
NextToken?: string;
|
|
8112
|
-
/**
|
|
8113
|
-
* <p>The maximum number of associations to return in the response. The default value is 10.</p>
|
|
8114
|
-
*/
|
|
8115
|
-
MaxResults?: number;
|
|
8116
|
-
}
|
|
8125
|
+
/**
|
|
8126
|
+
* @internal
|
|
8127
|
+
*/
|
|
8128
|
+
export declare const DeregisterDevicesRequestFilterSensitiveLog: (obj: DeregisterDevicesRequest) => any;
|
|
8129
|
+
/**
|
|
8130
|
+
* @internal
|
|
8131
|
+
*/
|
|
8132
|
+
export declare const DescribeActionRequestFilterSensitiveLog: (obj: DescribeActionRequest) => any;
|
|
8133
|
+
/**
|
|
8134
|
+
* @internal
|
|
8135
|
+
*/
|
|
8136
|
+
export declare const DescribeActionResponseFilterSensitiveLog: (obj: DescribeActionResponse) => any;
|
|
8117
8137
|
/**
|
|
8118
8138
|
* @internal
|
|
8119
8139
|
*/
|
|
@@ -9062,11 +9082,3 @@ export declare const ListAppsResponseFilterSensitiveLog: (obj: ListAppsResponse)
|
|
|
9062
9082
|
* @internal
|
|
9063
9083
|
*/
|
|
9064
9084
|
export declare const ListArtifactsRequestFilterSensitiveLog: (obj: ListArtifactsRequest) => any;
|
|
9065
|
-
/**
|
|
9066
|
-
* @internal
|
|
9067
|
-
*/
|
|
9068
|
-
export declare const ListArtifactsResponseFilterSensitiveLog: (obj: ListArtifactsResponse) => any;
|
|
9069
|
-
/**
|
|
9070
|
-
* @internal
|
|
9071
|
-
*/
|
|
9072
|
-
export declare const ListAssociationsRequestFilterSensitiveLog: (obj: ListAssociationsRequest) => any;
|
|
@@ -1,6 +1,70 @@
|
|
|
1
|
-
import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppSecurityGroupManagement, AppSpecification, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobStepMetadata, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, BatchStrategy, CacheHitResult, CallbackStepMetadata, CandidateSortBy, CandidateStatus, Channel, CheckpointConfig, ClarifyCheckStepMetadata, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CompilationJobStatus, CompilationJobSummary, ConditionStepMetadata, ContainerDefinition, ContextSummary, DefaultSpaceSettings, DeploymentConfig, EdgeOutputConfig,
|
|
1
|
+
import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppSecurityGroupManagement, AppSpecification, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobStepMetadata, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, BatchStrategy, CacheHitResult, CallbackStepMetadata, CandidateSortBy, CandidateStatus, Channel, CheckpointConfig, ClarifyCheckStepMetadata, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CompilationJobStatus, CompilationJobSummary, ConditionStepMetadata, ContainerDefinition, ContextSummary, DefaultSpaceSettings, DeploymentConfig, EdgeOutputConfig, InferenceSpecification, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, UserSettings, VpcConfig } from "./models_0";
|
|
2
2
|
import { _InstanceType, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DriftCheckBaselines, ExperimentConfig, HubContentType, InferenceExecutionConfig, InferenceExperimentType, ModelCardSecurityConfig, ModelCardStatus, ModelClientConfig, ModelMetrics, ModelPackageValidationSpecification, ModelVariantConfig, MonitoringScheduleConfig, MonitoringType, NetworkConfig, ParallelismConfiguration, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, RetryStrategy, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, UiTemplate } from "./models_1";
|
|
3
3
|
import { DesiredWeightAndCapacity, Device, DeviceDeploymentSummary, DeviceFleetSummary, DeviceSummary, Direction, DomainDetails, DomainSettingsForUpdate, Edge, EdgeDeploymentPlanSummary, EdgePackagingJobStatus, EdgePackagingJobSummary, EMRStepMetadata, Endpoint, EndpointConfigSortKey, EndpointConfigSummary, EndpointSortKey, EndpointStatus, EndpointSummary, ExecutionStatus, Experiment, ExperimentSummary, FailStepMetadata, FeatureGroup, FeatureGroupSortBy, FeatureGroupSortOrder, FeatureGroupStatus, FeatureGroupSummary, FeatureMetadata, Filter, FlowDefinitionSummary, GitConfigForUpdate, HubContentInfo, HubContentSortBy, HubInfo, HubSortBy, HumanTaskUiSummary, HyperParameterTrainingJobSummary, HyperParameterTuningJobSearchEntity, HyperParameterTuningJobSortByOptions, HyperParameterTuningJobStatus, HyperParameterTuningJobSummary, Image, ImageSortBy, ImageSortOrder, ImageVersion, ImageVersionSortBy, ImageVersionSortOrder, InferenceExperimentStatus, InferenceExperimentStopDesiredState, InferenceExperimentSummary, InferenceRecommendationsJob, InferenceRecommendationsJobStep, LabelingJobForWorkteamSummary, LabelingJobStatus, LabelingJobSummary, LambdaStepMetadata, LineageGroupSummary, LineageType, MetricData, ModelArtifacts, ModelCardExportJobStatus, ModelPackageGroupStatus, ModelPackageStatusDetails, MonitoringExecutionSummary, NotebookInstanceStatus, OfflineStoreStatusValue, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, RecommendationJobStatus, RecommendationStepType, ScheduleStatus, SecondaryStatus, SecondaryStatusTransition, ServiceCatalogProvisionedProductDetails, SortOrder, SpaceStatus, SubscribedWorkteam, TrainingJobStatus, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, WarmPoolResourceStatus, WarmPoolStatus, Workforce, Workteam } from "./models_2";
|
|
4
|
+
export interface ListArtifactsResponse {
|
|
5
|
+
/**
|
|
6
|
+
* <p>A list of artifacts and their properties.</p>
|
|
7
|
+
*/
|
|
8
|
+
ArtifactSummaries?: ArtifactSummary[];
|
|
9
|
+
/**
|
|
10
|
+
* <p>A token for getting the next set of artifacts, if there are any.</p>
|
|
11
|
+
*/
|
|
12
|
+
NextToken?: string;
|
|
13
|
+
}
|
|
14
|
+
export declare enum SortAssociationsBy {
|
|
15
|
+
CREATION_TIME = "CreationTime",
|
|
16
|
+
DESTINATION_ARN = "DestinationArn",
|
|
17
|
+
DESTINATION_TYPE = "DestinationType",
|
|
18
|
+
SOURCE_ARN = "SourceArn",
|
|
19
|
+
SOURCE_TYPE = "SourceType"
|
|
20
|
+
}
|
|
21
|
+
export interface ListAssociationsRequest {
|
|
22
|
+
/**
|
|
23
|
+
* <p>A filter that returns only associations with the specified source ARN.</p>
|
|
24
|
+
*/
|
|
25
|
+
SourceArn?: string;
|
|
26
|
+
/**
|
|
27
|
+
* <p>A filter that returns only associations with the specified destination Amazon Resource Name (ARN).</p>
|
|
28
|
+
*/
|
|
29
|
+
DestinationArn?: string;
|
|
30
|
+
/**
|
|
31
|
+
* <p>A filter that returns only associations with the specified source type.</p>
|
|
32
|
+
*/
|
|
33
|
+
SourceType?: string;
|
|
34
|
+
/**
|
|
35
|
+
* <p>A filter that returns only associations with the specified destination type.</p>
|
|
36
|
+
*/
|
|
37
|
+
DestinationType?: string;
|
|
38
|
+
/**
|
|
39
|
+
* <p>A filter that returns only associations of the specified type.</p>
|
|
40
|
+
*/
|
|
41
|
+
AssociationType?: AssociationEdgeType | string;
|
|
42
|
+
/**
|
|
43
|
+
* <p>A filter that returns only associations created on or after the specified time.</p>
|
|
44
|
+
*/
|
|
45
|
+
CreatedAfter?: Date;
|
|
46
|
+
/**
|
|
47
|
+
* <p>A filter that returns only associations created on or before the specified time.</p>
|
|
48
|
+
*/
|
|
49
|
+
CreatedBefore?: Date;
|
|
50
|
+
/**
|
|
51
|
+
* <p>The property used to sort results. The default value is <code>CreationTime</code>.</p>
|
|
52
|
+
*/
|
|
53
|
+
SortBy?: SortAssociationsBy | string;
|
|
54
|
+
/**
|
|
55
|
+
* <p>The sort order. The default value is <code>Descending</code>.</p>
|
|
56
|
+
*/
|
|
57
|
+
SortOrder?: SortOrder | string;
|
|
58
|
+
/**
|
|
59
|
+
* <p>If the previous call to <code>ListAssociations</code> didn't return the full set of associations,
|
|
60
|
+
* the call returns a token for getting the next set of associations.</p>
|
|
61
|
+
*/
|
|
62
|
+
NextToken?: string;
|
|
63
|
+
/**
|
|
64
|
+
* <p>The maximum number of associations to return in the response. The default value is 10.</p>
|
|
65
|
+
*/
|
|
66
|
+
MaxResults?: number;
|
|
67
|
+
}
|
|
4
68
|
export interface ListAssociationsResponse {
|
|
5
69
|
/**
|
|
6
70
|
* <p>A list of associations and their properties.</p>
|
|
@@ -6901,39 +6965,14 @@ export interface UpdateEndpointWeightsAndCapacitiesOutput {
|
|
|
6901
6965
|
*/
|
|
6902
6966
|
EndpointArn: string | undefined;
|
|
6903
6967
|
}
|
|
6904
|
-
|
|
6905
|
-
|
|
6906
|
-
|
|
6907
|
-
|
|
6908
|
-
|
|
6909
|
-
|
|
6910
|
-
|
|
6911
|
-
|
|
6912
|
-
*/
|
|
6913
|
-
DisplayName?: string;
|
|
6914
|
-
/**
|
|
6915
|
-
* <p>The description of the experiment.</p>
|
|
6916
|
-
*/
|
|
6917
|
-
Description?: string;
|
|
6918
|
-
}
|
|
6919
|
-
export interface UpdateExperimentResponse {
|
|
6920
|
-
/**
|
|
6921
|
-
* <p>The Amazon Resource Name (ARN) of the experiment.</p>
|
|
6922
|
-
*/
|
|
6923
|
-
ExperimentArn?: string;
|
|
6924
|
-
}
|
|
6925
|
-
export interface UpdateFeatureGroupRequest {
|
|
6926
|
-
/**
|
|
6927
|
-
* <p>The name of the feature group that you're updating.</p>
|
|
6928
|
-
*/
|
|
6929
|
-
FeatureGroupName: string | undefined;
|
|
6930
|
-
/**
|
|
6931
|
-
* <p>Updates the feature group. Updating a feature group is an asynchronous operation. When
|
|
6932
|
-
* you get an HTTP 200 response, you've made a valid request. It takes some time after you've
|
|
6933
|
-
* made a valid request for Feature Store to update the feature group.</p>
|
|
6934
|
-
*/
|
|
6935
|
-
FeatureAdditions?: FeatureDefinition[];
|
|
6936
|
-
}
|
|
6968
|
+
/**
|
|
6969
|
+
* @internal
|
|
6970
|
+
*/
|
|
6971
|
+
export declare const ListArtifactsResponseFilterSensitiveLog: (obj: ListArtifactsResponse) => any;
|
|
6972
|
+
/**
|
|
6973
|
+
* @internal
|
|
6974
|
+
*/
|
|
6975
|
+
export declare const ListAssociationsRequestFilterSensitiveLog: (obj: ListAssociationsRequest) => any;
|
|
6937
6976
|
/**
|
|
6938
6977
|
* @internal
|
|
6939
6978
|
*/
|
|
@@ -7934,15 +7973,3 @@ export declare const UpdateEndpointWeightsAndCapacitiesInputFilterSensitiveLog:
|
|
|
7934
7973
|
* @internal
|
|
7935
7974
|
*/
|
|
7936
7975
|
export declare const UpdateEndpointWeightsAndCapacitiesOutputFilterSensitiveLog: (obj: UpdateEndpointWeightsAndCapacitiesOutput) => any;
|
|
7937
|
-
/**
|
|
7938
|
-
* @internal
|
|
7939
|
-
*/
|
|
7940
|
-
export declare const UpdateExperimentRequestFilterSensitiveLog: (obj: UpdateExperimentRequest) => any;
|
|
7941
|
-
/**
|
|
7942
|
-
* @internal
|
|
7943
|
-
*/
|
|
7944
|
-
export declare const UpdateExperimentResponseFilterSensitiveLog: (obj: UpdateExperimentResponse) => any;
|
|
7945
|
-
/**
|
|
7946
|
-
* @internal
|
|
7947
|
-
*/
|
|
7948
|
-
export declare const UpdateFeatureGroupRequestFilterSensitiveLog: (obj: UpdateFeatureGroupRequest) => any;
|