@aws-sdk/client-cleanroomsml 3.839.0 → 3.841.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/README.md +9 -6
- package/dist-cjs/index.js +239 -18
- package/dist-es/CleanRoomsML.js +2 -0
- package/dist-es/commands/ListTrainedModelVersionsCommand.js +22 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +40 -0
- package/dist-es/pagination/ListTrainedModelVersionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +134 -7
- package/dist-types/CleanRoomsML.d.ts +8 -6
- package/dist-types/CleanRoomsMLClient.d.ts +4 -8
- package/dist-types/commands/CancelTrainedModelCommand.d.ts +4 -0
- package/dist-types/commands/CancelTrainedModelInferenceJobCommand.d.ts +3 -0
- package/dist-types/commands/CreateConfiguredModelAlgorithmAssociationCommand.d.ts +7 -0
- package/dist-types/commands/CreateMLInputChannelCommand.d.ts +3 -0
- package/dist-types/commands/CreateTrainedModelCommand.d.ts +16 -0
- package/dist-types/commands/DeleteConfiguredModelAlgorithmAssociationCommand.d.ts +3 -0
- package/dist-types/commands/DeleteMLConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/DeleteMLInputChannelDataCommand.d.ts +3 -0
- package/dist-types/commands/DeleteTrainedModelOutputCommand.d.ts +5 -1
- package/dist-types/commands/GetCollaborationConfiguredModelAlgorithmAssociationCommand.d.ts +7 -0
- package/dist-types/commands/GetCollaborationMLInputChannelCommand.d.ts +3 -0
- package/dist-types/commands/GetCollaborationTrainedModelCommand.d.ts +13 -0
- package/dist-types/commands/GetConfiguredModelAlgorithmAssociationCommand.d.ts +7 -0
- package/dist-types/commands/GetMLConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/GetMLInputChannelCommand.d.ts +3 -0
- package/dist-types/commands/GetTrainedModelCommand.d.ts +14 -0
- package/dist-types/commands/GetTrainedModelInferenceJobCommand.d.ts +4 -0
- package/dist-types/commands/ListCollaborationConfiguredModelAlgorithmAssociationsCommand.d.ts +3 -0
- package/dist-types/commands/ListCollaborationMLInputChannelsCommand.d.ts +3 -0
- package/dist-types/commands/ListCollaborationTrainedModelExportJobsCommand.d.ts +5 -0
- package/dist-types/commands/ListCollaborationTrainedModelInferenceJobsCommand.d.ts +5 -0
- package/dist-types/commands/ListCollaborationTrainedModelsCommand.d.ts +11 -0
- package/dist-types/commands/ListConfiguredModelAlgorithmAssociationsCommand.d.ts +3 -0
- package/dist-types/commands/ListMLInputChannelsCommand.d.ts +3 -0
- package/dist-types/commands/ListTrainedModelInferenceJobsCommand.d.ts +5 -0
- package/dist-types/commands/ListTrainedModelVersionsCommand.d.ts +109 -0
- package/dist-types/commands/ListTrainedModelsCommand.d.ts +11 -0
- package/dist-types/commands/PutMLConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/StartAudienceGenerationJobCommand.d.ts +3 -0
- package/dist-types/commands/StartTrainedModelExportJobCommand.d.ts +4 -0
- package/dist-types/commands/StartTrainedModelInferenceJobCommand.d.ts +4 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/index.d.ts +1 -6
- package/dist-types/models/models_0.d.ts +341 -411
- package/dist-types/pagination/ListTrainedModelVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/CleanRoomsML.d.ts +17 -0
- package/dist-types/ts3.4/CleanRoomsMLClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ListTrainedModelVersionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +97 -0
- package/dist-types/ts3.4/pagination/ListTrainedModelVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +12 -12
|
@@ -72,9 +72,7 @@ export type AudienceSizeType = (typeof AudienceSizeType)[keyof typeof AudienceSi
|
|
|
72
72
|
*/
|
|
73
73
|
export interface AudienceSize {
|
|
74
74
|
/**
|
|
75
|
-
* <p>Whether the audience size is defined in absolute terms or as a percentage. You can use the <code>ABSOLUTE</code>
|
|
76
|
-
* <a>AudienceSize</a> to configure out audience sizes using the count of identifiers in the output. You can use the <code>Percentage</code>
|
|
77
|
-
* <a>AudienceSize</a> to configure sizes in the range 1-100 percent.</p>
|
|
75
|
+
* <p>Whether the audience size is defined in absolute terms or as a percentage. You can use the <code>ABSOLUTE</code> <a>AudienceSize</a> to configure out audience sizes using the count of identifiers in the output. You can use the <code>Percentage</code> <a>AudienceSize</a> to configure sizes in the range 1-100 percent.</p>
|
|
78
76
|
* @public
|
|
79
77
|
*/
|
|
80
78
|
type: AudienceSizeType | undefined;
|
|
@@ -223,6 +221,16 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
223
221
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
224
222
|
readonly name: "ServiceQuotaExceededException";
|
|
225
223
|
readonly $fault: "client";
|
|
224
|
+
/**
|
|
225
|
+
* The name of the service quota limit that was exceeded
|
|
226
|
+
* @public
|
|
227
|
+
*/
|
|
228
|
+
quotaName?: string | undefined;
|
|
229
|
+
/**
|
|
230
|
+
* The current limit on the service quota that was exceeded
|
|
231
|
+
* @public
|
|
232
|
+
*/
|
|
233
|
+
quotaValue?: number | undefined;
|
|
226
234
|
/**
|
|
227
235
|
* @internal
|
|
228
236
|
*/
|
|
@@ -300,8 +308,7 @@ export interface AudienceQualityMetrics {
|
|
|
300
308
|
*/
|
|
301
309
|
relevanceMetrics: RelevanceMetric[] | undefined;
|
|
302
310
|
/**
|
|
303
|
-
* <p>The recall score of the generated audience. Recall is the percentage of the most similar users (by default, the most similar 20%) from a sample of the training data that are included in the seed audience by the audience generation job. Values range from 0-1, larger values indicate a better audience. A recall value approximately equal to the maximum bin size indicates that the audience model is equivalent to random selection.
|
|
304
|
-
* </p>
|
|
311
|
+
* <p>The recall score of the generated audience. Recall is the percentage of the most similar users (by default, the most similar 20%) from a sample of the training data that are included in the seed audience by the audience generation job. Values range from 0-1, larger values indicate a better audience. A recall value approximately equal to the maximum bin size indicates that the audience model is equivalent to random selection. </p>
|
|
305
312
|
* @public
|
|
306
313
|
*/
|
|
307
314
|
recallMetric?: number | undefined;
|
|
@@ -375,8 +382,7 @@ export interface ProtectedQuerySQLParameters {
|
|
|
375
382
|
*/
|
|
376
383
|
queryString?: string | undefined;
|
|
377
384
|
/**
|
|
378
|
-
* <p>The Amazon Resource Name (ARN) associated with the analysis template within a
|
|
379
|
-
* collaboration.</p>
|
|
385
|
+
* <p>The Amazon Resource Name (ARN) associated with the analysis template within a collaboration.</p>
|
|
380
386
|
* @public
|
|
381
387
|
*/
|
|
382
388
|
analysisTemplateArn?: string | undefined;
|
|
@@ -392,16 +398,7 @@ export interface ProtectedQuerySQLParameters {
|
|
|
392
398
|
*/
|
|
393
399
|
export interface AudienceGenerationJobDataSource {
|
|
394
400
|
/**
|
|
395
|
-
* <p>Defines the Amazon S3 bucket where the seed audience for the generating audience is stored. A valid data source is a JSON line file in the following format:</p>
|
|
396
|
-
* <p>
|
|
397
|
-
* <code>\{"user_id": "111111"\}</code>
|
|
398
|
-
* </p>
|
|
399
|
-
* <p>
|
|
400
|
-
* <code>\{"user_id": "222222"\}</code>
|
|
401
|
-
* </p>
|
|
402
|
-
* <p>
|
|
403
|
-
* <code>...</code>
|
|
404
|
-
* </p>
|
|
401
|
+
* <p>Defines the Amazon S3 bucket where the seed audience for the generating audience is stored. A valid data source is a JSON line file in the following format:</p> <p> <code>\{"user_id": "111111"\}</code> </p> <p> <code>\{"user_id": "222222"\}</code> </p> <p> <code>...</code> </p>
|
|
405
402
|
* @public
|
|
406
403
|
*/
|
|
407
404
|
dataSource?: S3ConfigMap | undefined;
|
|
@@ -644,31 +641,7 @@ export interface StartAudienceGenerationJobRequest {
|
|
|
644
641
|
*/
|
|
645
642
|
description?: string | undefined;
|
|
646
643
|
/**
|
|
647
|
-
* <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
|
|
648
|
-
* <p>The following basic restrictions apply to tags:</p>
|
|
649
|
-
* <ul>
|
|
650
|
-
* <li>
|
|
651
|
-
* <p>Maximum number of tags per resource - 50.</p>
|
|
652
|
-
* </li>
|
|
653
|
-
* <li>
|
|
654
|
-
* <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
|
|
655
|
-
* </li>
|
|
656
|
-
* <li>
|
|
657
|
-
* <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
|
|
658
|
-
* </li>
|
|
659
|
-
* <li>
|
|
660
|
-
* <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
|
|
661
|
-
* </li>
|
|
662
|
-
* <li>
|
|
663
|
-
* <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
|
|
664
|
-
* </li>
|
|
665
|
-
* <li>
|
|
666
|
-
* <p>Tag keys and values are case sensitive.</p>
|
|
667
|
-
* </li>
|
|
668
|
-
* <li>
|
|
669
|
-
* <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
|
|
670
|
-
* </li>
|
|
671
|
-
* </ul>
|
|
644
|
+
* <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p> <p>The following basic restrictions apply to tags:</p> <ul> <li> <p>Maximum number of tags per resource - 50.</p> </li> <li> <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p> </li> <li> <p>Maximum key length - 128 Unicode characters in UTF-8.</p> </li> <li> <p>Maximum value length - 256 Unicode characters in UTF-8.</p> </li> <li> <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p> </li> <li> <p>Tag keys and values are case sensitive.</p> </li> <li> <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p> </li> </ul>
|
|
672
645
|
* @public
|
|
673
646
|
*/
|
|
674
647
|
tags?: Record<string, string> | undefined;
|
|
@@ -683,6 +656,18 @@ export interface StartAudienceGenerationJobResponse {
|
|
|
683
656
|
*/
|
|
684
657
|
audienceGenerationJobArn: string | undefined;
|
|
685
658
|
}
|
|
659
|
+
/**
|
|
660
|
+
* <p>The request was denied due to request throttling.</p>
|
|
661
|
+
* @public
|
|
662
|
+
*/
|
|
663
|
+
export declare class ThrottlingException extends __BaseException {
|
|
664
|
+
readonly name: "ThrottlingException";
|
|
665
|
+
readonly $fault: "client";
|
|
666
|
+
/**
|
|
667
|
+
* @internal
|
|
668
|
+
*/
|
|
669
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
670
|
+
}
|
|
686
671
|
/**
|
|
687
672
|
* @public
|
|
688
673
|
*/
|
|
@@ -713,31 +698,7 @@ export interface CreateAudienceModelRequest {
|
|
|
713
698
|
*/
|
|
714
699
|
kmsKeyArn?: string | undefined;
|
|
715
700
|
/**
|
|
716
|
-
* <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
|
|
717
|
-
* <p>The following basic restrictions apply to tags:</p>
|
|
718
|
-
* <ul>
|
|
719
|
-
* <li>
|
|
720
|
-
* <p>Maximum number of tags per resource - 50.</p>
|
|
721
|
-
* </li>
|
|
722
|
-
* <li>
|
|
723
|
-
* <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
|
|
724
|
-
* </li>
|
|
725
|
-
* <li>
|
|
726
|
-
* <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
|
|
727
|
-
* </li>
|
|
728
|
-
* <li>
|
|
729
|
-
* <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
|
|
730
|
-
* </li>
|
|
731
|
-
* <li>
|
|
732
|
-
* <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
|
|
733
|
-
* </li>
|
|
734
|
-
* <li>
|
|
735
|
-
* <p>Tag keys and values are case sensitive.</p>
|
|
736
|
-
* </li>
|
|
737
|
-
* <li>
|
|
738
|
-
* <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
|
|
739
|
-
* </li>
|
|
740
|
-
* </ul>
|
|
701
|
+
* <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p> <p>The following basic restrictions apply to tags:</p> <ul> <li> <p>Maximum number of tags per resource - 50.</p> </li> <li> <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p> </li> <li> <p>Maximum key length - 128 Unicode characters in UTF-8.</p> </li> <li> <p>Maximum value length - 256 Unicode characters in UTF-8.</p> </li> <li> <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p> </li> <li> <p>Tag keys and values are case sensitive.</p> </li> <li> <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p> </li> </ul>
|
|
741
702
|
* @public
|
|
742
703
|
*/
|
|
743
704
|
tags?: Record<string, string> | undefined;
|
|
@@ -931,10 +892,7 @@ export interface ListAudienceModelsResponse {
|
|
|
931
892
|
audienceModels: AudienceModelSummary[] | undefined;
|
|
932
893
|
}
|
|
933
894
|
/**
|
|
934
|
-
* <p>Returns the relevance scores at these audience sizes when used in the <a>GetAudienceGenerationJob</a> for a specified audience generation job and configured audience model.</p>
|
|
935
|
-
* <p>Specifies the list of allowed <code>audienceSize</code> values when used in the <a>StartAudienceExportJob</a> for an audience generation job. You can use the <code>ABSOLUTE</code>
|
|
936
|
-
* <a>AudienceSize</a> to configure out audience sizes using the count of identifiers in the output. You can use the <code>Percentage</code>
|
|
937
|
-
* <a>AudienceSize</a> to configure sizes in the range 1-100 percent.</p>
|
|
895
|
+
* <p>Returns the relevance scores at these audience sizes when used in the <a>GetAudienceGenerationJob</a> for a specified audience generation job and configured audience model.</p> <p>Specifies the list of allowed <code>audienceSize</code> values when used in the <a>StartAudienceExportJob</a> for an audience generation job. You can use the <code>ABSOLUTE</code> <a>AudienceSize</a> to configure out audience sizes using the count of identifiers in the output. You can use the <code>Percentage</code> <a>AudienceSize</a> to configure sizes in the range 1-100 percent.</p>
|
|
938
896
|
* @public
|
|
939
897
|
*/
|
|
940
898
|
export interface AudienceSizeConfig {
|
|
@@ -1024,44 +982,17 @@ export interface CreateConfiguredAudienceModelRequest {
|
|
|
1024
982
|
*/
|
|
1025
983
|
minMatchingSeedSize?: number | undefined;
|
|
1026
984
|
/**
|
|
1027
|
-
* <p>Configure the list of output sizes of audiences that can be created using this configured audience model. A request to <a>StartAudienceGenerationJob</a> that uses this configured audience model must have an <code>audienceSize</code> selected from this list. You can use the <code>ABSOLUTE</code>
|
|
1028
|
-
* <a>AudienceSize</a> to configure out audience sizes using the count of identifiers in the output. You can use the <code>Percentage</code>
|
|
1029
|
-
* <a>AudienceSize</a> to configure sizes in the range 1-100 percent.</p>
|
|
985
|
+
* <p>Configure the list of output sizes of audiences that can be created using this configured audience model. A request to <a>StartAudienceGenerationJob</a> that uses this configured audience model must have an <code>audienceSize</code> selected from this list. You can use the <code>ABSOLUTE</code> <a>AudienceSize</a> to configure out audience sizes using the count of identifiers in the output. You can use the <code>Percentage</code> <a>AudienceSize</a> to configure sizes in the range 1-100 percent.</p>
|
|
1030
986
|
* @public
|
|
1031
987
|
*/
|
|
1032
988
|
audienceSizeConfig?: AudienceSizeConfig | undefined;
|
|
1033
989
|
/**
|
|
1034
|
-
* <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
|
|
1035
|
-
* <p>The following basic restrictions apply to tags:</p>
|
|
1036
|
-
* <ul>
|
|
1037
|
-
* <li>
|
|
1038
|
-
* <p>Maximum number of tags per resource - 50.</p>
|
|
1039
|
-
* </li>
|
|
1040
|
-
* <li>
|
|
1041
|
-
* <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
|
|
1042
|
-
* </li>
|
|
1043
|
-
* <li>
|
|
1044
|
-
* <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
|
|
1045
|
-
* </li>
|
|
1046
|
-
* <li>
|
|
1047
|
-
* <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
|
|
1048
|
-
* </li>
|
|
1049
|
-
* <li>
|
|
1050
|
-
* <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
|
|
1051
|
-
* </li>
|
|
1052
|
-
* <li>
|
|
1053
|
-
* <p>Tag keys and values are case sensitive.</p>
|
|
1054
|
-
* </li>
|
|
1055
|
-
* <li>
|
|
1056
|
-
* <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
|
|
1057
|
-
* </li>
|
|
1058
|
-
* </ul>
|
|
990
|
+
* <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p> <p>The following basic restrictions apply to tags:</p> <ul> <li> <p>Maximum number of tags per resource - 50.</p> </li> <li> <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p> </li> <li> <p>Maximum key length - 128 Unicode characters in UTF-8.</p> </li> <li> <p>Maximum value length - 256 Unicode characters in UTF-8.</p> </li> <li> <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p> </li> <li> <p>Tag keys and values are case sensitive.</p> </li> <li> <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p> </li> </ul>
|
|
1059
991
|
* @public
|
|
1060
992
|
*/
|
|
1061
993
|
tags?: Record<string, string> | undefined;
|
|
1062
994
|
/**
|
|
1063
|
-
* <p>Configure how the service tags audience generation jobs created using this configured audience model. If you specify <code>NONE</code>, the tags from the <a>StartAudienceGenerationJob</a> request determine the tags of the audience generation job. If you specify <code>FROM_PARENT_RESOURCE</code>, the audience generation job inherits the tags from the configured audience model, by default. Tags in the <a>StartAudienceGenerationJob</a> will override the default.</p>
|
|
1064
|
-
* <p>When the client is in a different account than the configured audience model, the tags from the client are never applied to a resource in the caller's account.</p>
|
|
995
|
+
* <p>Configure how the service tags audience generation jobs created using this configured audience model. If you specify <code>NONE</code>, the tags from the <a>StartAudienceGenerationJob</a> request determine the tags of the audience generation job. If you specify <code>FROM_PARENT_RESOURCE</code>, the audience generation job inherits the tags from the configured audience model, by default. Tags in the <a>StartAudienceGenerationJob</a> will override the default.</p> <p>When the client is in a different account than the configured audience model, the tags from the client are never applied to a resource in the caller's account.</p>
|
|
1065
996
|
* @public
|
|
1066
997
|
*/
|
|
1067
998
|
childResourceTagOnCreatePolicy?: TagOnCreatePolicy | undefined;
|
|
@@ -1162,9 +1093,7 @@ export interface GetConfiguredAudienceModelResponse {
|
|
|
1162
1093
|
*/
|
|
1163
1094
|
minMatchingSeedSize?: number | undefined;
|
|
1164
1095
|
/**
|
|
1165
|
-
* <p>The list of output sizes of audiences that can be created using this configured audience model. A request to <a>StartAudienceGenerationJob</a> that uses this configured audience model must have an <code>audienceSize</code> selected from this list. You can use the <code>ABSOLUTE</code>
|
|
1166
|
-
* <a>AudienceSize</a> to configure out audience sizes using the count of identifiers in the output. You can use the <code>Percentage</code>
|
|
1167
|
-
* <a>AudienceSize</a> to configure sizes in the range 1-100 percent.</p>
|
|
1096
|
+
* <p>The list of output sizes of audiences that can be created using this configured audience model. A request to <a>StartAudienceGenerationJob</a> that uses this configured audience model must have an <code>audienceSize</code> selected from this list. You can use the <code>ABSOLUTE</code> <a>AudienceSize</a> to configure out audience sizes using the count of identifiers in the output. You can use the <code>Percentage</code> <a>AudienceSize</a> to configure sizes in the range 1-100 percent.</p>
|
|
1168
1097
|
* @public
|
|
1169
1098
|
*/
|
|
1170
1099
|
audienceSizeConfig?: AudienceSizeConfig | undefined;
|
|
@@ -1403,7 +1332,7 @@ export interface PutConfiguredAudienceModelPolicyResponse {
|
|
|
1403
1332
|
*/
|
|
1404
1333
|
export interface InferenceContainerConfig {
|
|
1405
1334
|
/**
|
|
1406
|
-
* <p>The registry path of the docker image that contains the inference algorithm. Clean Rooms ML supports
|
|
1335
|
+
* <p>The registry path of the docker image that contains the inference algorithm. Clean Rooms ML currently only supports the <code>registry/repository[:tag]</code> image path format. For more information about using images in Clean Rooms ML, see the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_AlgorithmSpecification.html#sagemaker-Type-AlgorithmSpecification-TrainingImage">Sagemaker API reference</a>.</p>
|
|
1407
1336
|
* @public
|
|
1408
1337
|
*/
|
|
1409
1338
|
imageUri: string | undefined;
|
|
@@ -1430,7 +1359,7 @@ export interface MetricDefinition {
|
|
|
1430
1359
|
*/
|
|
1431
1360
|
export interface ContainerConfig {
|
|
1432
1361
|
/**
|
|
1433
|
-
* <p>The registry path of the docker image that contains the algorithm. Clean Rooms ML supports
|
|
1362
|
+
* <p>The registry path of the docker image that contains the algorithm. Clean Rooms ML currently only supports the <code>registry/repository[:tag]</code> image path format. For more information about using images in Clean Rooms ML, see the <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_AlgorithmSpecification.html#sagemaker-Type-AlgorithmSpecification-TrainingImage">Sagemaker API reference</a>.</p>
|
|
1434
1363
|
* @public
|
|
1435
1364
|
*/
|
|
1436
1365
|
imageUri: string | undefined;
|
|
@@ -1480,31 +1409,7 @@ export interface CreateConfiguredModelAlgorithmRequest {
|
|
|
1480
1409
|
*/
|
|
1481
1410
|
inferenceContainerConfig?: InferenceContainerConfig | undefined;
|
|
1482
1411
|
/**
|
|
1483
|
-
* <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
|
|
1484
|
-
* <p>The following basic restrictions apply to tags:</p>
|
|
1485
|
-
* <ul>
|
|
1486
|
-
* <li>
|
|
1487
|
-
* <p>Maximum number of tags per resource - 50.</p>
|
|
1488
|
-
* </li>
|
|
1489
|
-
* <li>
|
|
1490
|
-
* <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
|
|
1491
|
-
* </li>
|
|
1492
|
-
* <li>
|
|
1493
|
-
* <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
|
|
1494
|
-
* </li>
|
|
1495
|
-
* <li>
|
|
1496
|
-
* <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
|
|
1497
|
-
* </li>
|
|
1498
|
-
* <li>
|
|
1499
|
-
* <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
|
|
1500
|
-
* </li>
|
|
1501
|
-
* <li>
|
|
1502
|
-
* <p>Tag keys and values are case sensitive.</p>
|
|
1503
|
-
* </li>
|
|
1504
|
-
* <li>
|
|
1505
|
-
* <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
|
|
1506
|
-
* </li>
|
|
1507
|
-
* </ul>
|
|
1412
|
+
* <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p> <p>The following basic restrictions apply to tags:</p> <ul> <li> <p>Maximum number of tags per resource - 50.</p> </li> <li> <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p> </li> <li> <p>Maximum key length - 128 Unicode characters in UTF-8.</p> </li> <li> <p>Maximum value length - 256 Unicode characters in UTF-8.</p> </li> <li> <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p> </li> <li> <p>Tag keys and values are case sensitive.</p> </li> <li> <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p> </li> </ul>
|
|
1508
1413
|
* @public
|
|
1509
1414
|
*/
|
|
1510
1415
|
tags?: Record<string, string> | undefined;
|
|
@@ -1589,31 +1494,7 @@ export interface GetConfiguredModelAlgorithmResponse {
|
|
|
1589
1494
|
*/
|
|
1590
1495
|
description?: string | undefined;
|
|
1591
1496
|
/**
|
|
1592
|
-
* <p>The optional metadata that you applied to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
|
|
1593
|
-
* <p>The following basic restrictions apply to tags:</p>
|
|
1594
|
-
* <ul>
|
|
1595
|
-
* <li>
|
|
1596
|
-
* <p>Maximum number of tags per resource - 50.</p>
|
|
1597
|
-
* </li>
|
|
1598
|
-
* <li>
|
|
1599
|
-
* <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
|
|
1600
|
-
* </li>
|
|
1601
|
-
* <li>
|
|
1602
|
-
* <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
|
|
1603
|
-
* </li>
|
|
1604
|
-
* <li>
|
|
1605
|
-
* <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
|
|
1606
|
-
* </li>
|
|
1607
|
-
* <li>
|
|
1608
|
-
* <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
|
|
1609
|
-
* </li>
|
|
1610
|
-
* <li>
|
|
1611
|
-
* <p>Tag keys and values are case sensitive.</p>
|
|
1612
|
-
* </li>
|
|
1613
|
-
* <li>
|
|
1614
|
-
* <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
|
|
1615
|
-
* </li>
|
|
1616
|
-
* </ul>
|
|
1497
|
+
* <p>The optional metadata that you applied to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p> <p>The following basic restrictions apply to tags:</p> <ul> <li> <p>Maximum number of tags per resource - 50.</p> </li> <li> <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p> </li> <li> <p>Maximum key length - 128 Unicode characters in UTF-8.</p> </li> <li> <p>Maximum value length - 256 Unicode characters in UTF-8.</p> </li> <li> <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p> </li> <li> <p>Tag keys and values are case sensitive.</p> </li> <li> <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p> </li> </ul>
|
|
1617
1498
|
* @public
|
|
1618
1499
|
*/
|
|
1619
1500
|
tags?: Record<string, string> | undefined;
|
|
@@ -1823,6 +1704,33 @@ export interface MetricsConfigurationPolicy {
|
|
|
1823
1704
|
*/
|
|
1824
1705
|
noiseLevel: NoiseLevelType | undefined;
|
|
1825
1706
|
}
|
|
1707
|
+
/**
|
|
1708
|
+
* @public
|
|
1709
|
+
* @enum
|
|
1710
|
+
*/
|
|
1711
|
+
export declare const TrainedModelArtifactMaxSizeUnitType: {
|
|
1712
|
+
readonly GB: "GB";
|
|
1713
|
+
};
|
|
1714
|
+
/**
|
|
1715
|
+
* @public
|
|
1716
|
+
*/
|
|
1717
|
+
export type TrainedModelArtifactMaxSizeUnitType = (typeof TrainedModelArtifactMaxSizeUnitType)[keyof typeof TrainedModelArtifactMaxSizeUnitType];
|
|
1718
|
+
/**
|
|
1719
|
+
* <p>Specifies the maximum size limit for trained model artifacts. This configuration helps control storage costs and ensures that trained models don't exceed specified size constraints. The size limit applies to the total size of all artifacts produced by the training job.</p>
|
|
1720
|
+
* @public
|
|
1721
|
+
*/
|
|
1722
|
+
export interface TrainedModelArtifactMaxSize {
|
|
1723
|
+
/**
|
|
1724
|
+
* <p>The unit of measurement for the maximum artifact size. Valid values include common storage units such as bytes, kilobytes, megabytes, gigabytes, and terabytes.</p>
|
|
1725
|
+
* @public
|
|
1726
|
+
*/
|
|
1727
|
+
unit: TrainedModelArtifactMaxSizeUnitType | undefined;
|
|
1728
|
+
/**
|
|
1729
|
+
* <p>The numerical value for the maximum artifact size limit. This value is interpreted according to the specified unit.</p>
|
|
1730
|
+
* @public
|
|
1731
|
+
*/
|
|
1732
|
+
value: number | undefined;
|
|
1733
|
+
}
|
|
1826
1734
|
/**
|
|
1827
1735
|
* <p>The configuration policy for the trained models.</p>
|
|
1828
1736
|
* @public
|
|
@@ -1838,6 +1746,11 @@ export interface TrainedModelsConfigurationPolicy {
|
|
|
1838
1746
|
* @public
|
|
1839
1747
|
*/
|
|
1840
1748
|
containerMetrics?: MetricsConfigurationPolicy | undefined;
|
|
1749
|
+
/**
|
|
1750
|
+
* <p>The maximum size limit for trained model artifacts as defined in the configuration policy. This setting helps enforce consistent size limits across trained models in the collaboration.</p>
|
|
1751
|
+
* @public
|
|
1752
|
+
*/
|
|
1753
|
+
maxArtifactSize?: TrainedModelArtifactMaxSize | undefined;
|
|
1841
1754
|
}
|
|
1842
1755
|
/**
|
|
1843
1756
|
* <p>Information about the privacy configuration policies for a configured model algorithm association.</p>
|
|
@@ -1901,31 +1814,7 @@ export interface CreateConfiguredModelAlgorithmAssociationRequest {
|
|
|
1901
1814
|
*/
|
|
1902
1815
|
privacyConfiguration?: PrivacyConfiguration | undefined;
|
|
1903
1816
|
/**
|
|
1904
|
-
* <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
|
|
1905
|
-
* <p>The following basic restrictions apply to tags:</p>
|
|
1906
|
-
* <ul>
|
|
1907
|
-
* <li>
|
|
1908
|
-
* <p>Maximum number of tags per resource - 50.</p>
|
|
1909
|
-
* </li>
|
|
1910
|
-
* <li>
|
|
1911
|
-
* <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
|
|
1912
|
-
* </li>
|
|
1913
|
-
* <li>
|
|
1914
|
-
* <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
|
|
1915
|
-
* </li>
|
|
1916
|
-
* <li>
|
|
1917
|
-
* <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
|
|
1918
|
-
* </li>
|
|
1919
|
-
* <li>
|
|
1920
|
-
* <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
|
|
1921
|
-
* </li>
|
|
1922
|
-
* <li>
|
|
1923
|
-
* <p>Tag keys and values are case sensitive.</p>
|
|
1924
|
-
* </li>
|
|
1925
|
-
* <li>
|
|
1926
|
-
* <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
|
|
1927
|
-
* </li>
|
|
1928
|
-
* </ul>
|
|
1817
|
+
* <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p> <p>The following basic restrictions apply to tags:</p> <ul> <li> <p>Maximum number of tags per resource - 50.</p> </li> <li> <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p> </li> <li> <p>Maximum key length - 128 Unicode characters in UTF-8.</p> </li> <li> <p>Maximum value length - 256 Unicode characters in UTF-8.</p> </li> <li> <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p> </li> <li> <p>Tag keys and values are case sensitive.</p> </li> <li> <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p> </li> </ul>
|
|
1929
1818
|
* @public
|
|
1930
1819
|
*/
|
|
1931
1820
|
tags?: Record<string, string> | undefined;
|
|
@@ -2090,31 +1979,7 @@ export interface GetConfiguredModelAlgorithmAssociationResponse {
|
|
|
2090
1979
|
*/
|
|
2091
1980
|
description?: string | undefined;
|
|
2092
1981
|
/**
|
|
2093
|
-
* <p>The optional metadata that you applied to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
|
|
2094
|
-
* <p>The following basic restrictions apply to tags:</p>
|
|
2095
|
-
* <ul>
|
|
2096
|
-
* <li>
|
|
2097
|
-
* <p>Maximum number of tags per resource - 50.</p>
|
|
2098
|
-
* </li>
|
|
2099
|
-
* <li>
|
|
2100
|
-
* <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
|
|
2101
|
-
* </li>
|
|
2102
|
-
* <li>
|
|
2103
|
-
* <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
|
|
2104
|
-
* </li>
|
|
2105
|
-
* <li>
|
|
2106
|
-
* <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
|
|
2107
|
-
* </li>
|
|
2108
|
-
* <li>
|
|
2109
|
-
* <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
|
|
2110
|
-
* </li>
|
|
2111
|
-
* <li>
|
|
2112
|
-
* <p>Tag keys and values are case sensitive.</p>
|
|
2113
|
-
* </li>
|
|
2114
|
-
* <li>
|
|
2115
|
-
* <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
|
|
2116
|
-
* </li>
|
|
2117
|
-
* </ul>
|
|
1982
|
+
* <p>The optional metadata that you applied to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p> <p>The following basic restrictions apply to tags:</p> <ul> <li> <p>Maximum number of tags per resource - 50.</p> </li> <li> <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p> </li> <li> <p>Maximum key length - 128 Unicode characters in UTF-8.</p> </li> <li> <p>Maximum value length - 256 Unicode characters in UTF-8.</p> </li> <li> <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p> </li> <li> <p>Tag keys and values are case sensitive.</p> </li> <li> <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p> </li> </ul>
|
|
2118
1983
|
* @public
|
|
2119
1984
|
*/
|
|
2120
1985
|
tags?: Record<string, string> | undefined;
|
|
@@ -2419,6 +2284,11 @@ export interface ListCollaborationTrainedModelExportJobsRequest {
|
|
|
2419
2284
|
* @public
|
|
2420
2285
|
*/
|
|
2421
2286
|
trainedModelArn: string | undefined;
|
|
2287
|
+
/**
|
|
2288
|
+
* <p>The version identifier of the trained model to filter export jobs by. When specified, only export jobs for this specific version of the trained model are returned.</p>
|
|
2289
|
+
* @public
|
|
2290
|
+
*/
|
|
2291
|
+
trainedModelVersionIdentifier?: string | undefined;
|
|
2422
2292
|
}
|
|
2423
2293
|
/**
|
|
2424
2294
|
* <p>Provides information about the member who will receive trained model exports.</p>
|
|
@@ -2506,6 +2376,11 @@ export interface CollaborationTrainedModelExportJobSummary {
|
|
|
2506
2376
|
* @public
|
|
2507
2377
|
*/
|
|
2508
2378
|
trainedModelArn: string | undefined;
|
|
2379
|
+
/**
|
|
2380
|
+
* <p>The version identifier of the trained model that was exported in this job.</p>
|
|
2381
|
+
* @public
|
|
2382
|
+
*/
|
|
2383
|
+
trainedModelVersionIdentifier?: string | undefined;
|
|
2509
2384
|
/**
|
|
2510
2385
|
* <p>The membership ID of the member that created the trained model export job.</p>
|
|
2511
2386
|
* @public
|
|
@@ -2556,6 +2431,11 @@ export interface ListCollaborationTrainedModelInferenceJobsRequest {
|
|
|
2556
2431
|
* @public
|
|
2557
2432
|
*/
|
|
2558
2433
|
trainedModelArn?: string | undefined;
|
|
2434
|
+
/**
|
|
2435
|
+
* <p>The version identifier of the trained model to filter inference jobs by. When specified, only inference jobs that used this specific version of the trained model are returned.</p>
|
|
2436
|
+
* @public
|
|
2437
|
+
*/
|
|
2438
|
+
trainedModelVersionIdentifier?: string | undefined;
|
|
2559
2439
|
}
|
|
2560
2440
|
/**
|
|
2561
2441
|
* @public
|
|
@@ -2651,6 +2531,11 @@ export interface CollaborationTrainedModelInferenceJobSummary {
|
|
|
2651
2531
|
* @public
|
|
2652
2532
|
*/
|
|
2653
2533
|
trainedModelArn: string | undefined;
|
|
2534
|
+
/**
|
|
2535
|
+
* <p>The version identifier of the trained model that was used for inference in this job.</p>
|
|
2536
|
+
* @public
|
|
2537
|
+
*/
|
|
2538
|
+
trainedModelVersionIdentifier?: string | undefined;
|
|
2654
2539
|
/**
|
|
2655
2540
|
* <p>The collaboration ID of the collaboration that contains the trained model inference job.</p>
|
|
2656
2541
|
* @public
|
|
@@ -2747,6 +2632,27 @@ export interface ListCollaborationTrainedModelsRequest {
|
|
|
2747
2632
|
*/
|
|
2748
2633
|
collaborationIdentifier: string | undefined;
|
|
2749
2634
|
}
|
|
2635
|
+
/**
|
|
2636
|
+
* <p>Contains information about an incremental training data channel that was used to create a trained model. This structure provides details about the base model and channel configuration used during incremental training.</p>
|
|
2637
|
+
* @public
|
|
2638
|
+
*/
|
|
2639
|
+
export interface IncrementalTrainingDataChannelOutput {
|
|
2640
|
+
/**
|
|
2641
|
+
* <p>The name of the incremental training data channel that was used.</p>
|
|
2642
|
+
* @public
|
|
2643
|
+
*/
|
|
2644
|
+
channelName: string | undefined;
|
|
2645
|
+
/**
|
|
2646
|
+
* <p>The version identifier of the trained model that was used for incremental training.</p>
|
|
2647
|
+
* @public
|
|
2648
|
+
*/
|
|
2649
|
+
versionIdentifier?: string | undefined;
|
|
2650
|
+
/**
|
|
2651
|
+
* <p>The name of the base trained model that was used for incremental training.</p>
|
|
2652
|
+
* @public
|
|
2653
|
+
*/
|
|
2654
|
+
modelName: string | undefined;
|
|
2655
|
+
}
|
|
2750
2656
|
/**
|
|
2751
2657
|
* @public
|
|
2752
2658
|
* @enum
|
|
@@ -2793,6 +2699,16 @@ export interface CollaborationTrainedModelSummary {
|
|
|
2793
2699
|
* @public
|
|
2794
2700
|
*/
|
|
2795
2701
|
name: string | undefined;
|
|
2702
|
+
/**
|
|
2703
|
+
* <p>The version identifier of this trained model version.</p>
|
|
2704
|
+
* @public
|
|
2705
|
+
*/
|
|
2706
|
+
versionIdentifier?: string | undefined;
|
|
2707
|
+
/**
|
|
2708
|
+
* <p>Information about the incremental training data channels used to create this version of the trained model.</p>
|
|
2709
|
+
* @public
|
|
2710
|
+
*/
|
|
2711
|
+
incrementalTrainingDataChannels?: IncrementalTrainingDataChannelOutput[] | undefined;
|
|
2796
2712
|
/**
|
|
2797
2713
|
* <p>The description of the trained model.</p>
|
|
2798
2714
|
* @public
|
|
@@ -3003,8 +2919,7 @@ export interface InputChannel {
|
|
|
3003
2919
|
*/
|
|
3004
2920
|
dataSource: InputChannelDataSource | undefined;
|
|
3005
2921
|
/**
|
|
3006
|
-
* <p>The ARN of the
|
|
3007
|
-
* <p>Passing a role across AWS accounts is not allowed. If you pass a role that isn't in your account, you get an <code>AccessDeniedException</code> error.</p>
|
|
2922
|
+
* <p>The Amazon Resource Name (ARN) of the role used to run the query specified in the <code>dataSource</code> field of the input channel.</p> <p>Passing a role across AWS accounts is not allowed. If you pass a role that isn't in your account, you get an <code>AccessDeniedException</code> error.</p>
|
|
3008
2923
|
* @public
|
|
3009
2924
|
*/
|
|
3010
2925
|
roleArn: string | undefined;
|
|
@@ -3049,31 +2964,7 @@ export interface CreateMLInputChannelRequest {
|
|
|
3049
2964
|
*/
|
|
3050
2965
|
kmsKeyArn?: string | undefined;
|
|
3051
2966
|
/**
|
|
3052
|
-
* <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
|
|
3053
|
-
* <p>The following basic restrictions apply to tags:</p>
|
|
3054
|
-
* <ul>
|
|
3055
|
-
* <li>
|
|
3056
|
-
* <p>Maximum number of tags per resource - 50.</p>
|
|
3057
|
-
* </li>
|
|
3058
|
-
* <li>
|
|
3059
|
-
* <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
|
|
3060
|
-
* </li>
|
|
3061
|
-
* <li>
|
|
3062
|
-
* <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
|
|
3063
|
-
* </li>
|
|
3064
|
-
* <li>
|
|
3065
|
-
* <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
|
|
3066
|
-
* </li>
|
|
3067
|
-
* <li>
|
|
3068
|
-
* <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
|
|
3069
|
-
* </li>
|
|
3070
|
-
* <li>
|
|
3071
|
-
* <p>Tag keys and values are case sensitive.</p>
|
|
3072
|
-
* </li>
|
|
3073
|
-
* <li>
|
|
3074
|
-
* <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
|
|
3075
|
-
* </li>
|
|
3076
|
-
* </ul>
|
|
2967
|
+
* <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p> <p>The following basic restrictions apply to tags:</p> <ul> <li> <p>Maximum number of tags per resource - 50.</p> </li> <li> <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p> </li> <li> <p>Maximum key length - 128 Unicode characters in UTF-8.</p> </li> <li> <p>Maximum value length - 256 Unicode characters in UTF-8.</p> </li> <li> <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p> </li> <li> <p>Tag keys and values are case sensitive.</p> </li> <li> <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p> </li> </ul>
|
|
3077
2968
|
* @public
|
|
3078
2969
|
*/
|
|
3079
2970
|
tags?: Record<string, string> | undefined;
|
|
@@ -3293,31 +3184,7 @@ export interface GetMLInputChannelResponse {
|
|
|
3293
3184
|
*/
|
|
3294
3185
|
kmsKeyArn?: string | undefined;
|
|
3295
3186
|
/**
|
|
3296
|
-
* <p>The optional metadata that you applied to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
|
|
3297
|
-
* <p>The following basic restrictions apply to tags:</p>
|
|
3298
|
-
* <ul>
|
|
3299
|
-
* <li>
|
|
3300
|
-
* <p>Maximum number of tags per resource - 50.</p>
|
|
3301
|
-
* </li>
|
|
3302
|
-
* <li>
|
|
3303
|
-
* <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
|
|
3304
|
-
* </li>
|
|
3305
|
-
* <li>
|
|
3306
|
-
* <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
|
|
3307
|
-
* </li>
|
|
3308
|
-
* <li>
|
|
3309
|
-
* <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
|
|
3310
|
-
* </li>
|
|
3311
|
-
* <li>
|
|
3312
|
-
* <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
|
|
3313
|
-
* </li>
|
|
3314
|
-
* <li>
|
|
3315
|
-
* <p>Tag keys and values are case sensitive.</p>
|
|
3316
|
-
* </li>
|
|
3317
|
-
* <li>
|
|
3318
|
-
* <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
|
|
3319
|
-
* </li>
|
|
3320
|
-
* </ul>
|
|
3187
|
+
* <p>The optional metadata that you applied to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p> <p>The following basic restrictions apply to tags:</p> <ul> <li> <p>Maximum number of tags per resource - 50.</p> </li> <li> <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p> </li> <li> <p>Maximum key length - 128 Unicode characters in UTF-8.</p> </li> <li> <p>Maximum value length - 256 Unicode characters in UTF-8.</p> </li> <li> <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p> </li> <li> <p>Tag keys and values are case sensitive.</p> </li> <li> <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p> </li> </ul>
|
|
3321
3188
|
* @public
|
|
3322
3189
|
*/
|
|
3323
3190
|
tags?: Record<string, string> | undefined;
|
|
@@ -3423,31 +3290,7 @@ export interface TagResourceRequest {
|
|
|
3423
3290
|
*/
|
|
3424
3291
|
resourceArn: string | undefined;
|
|
3425
3292
|
/**
|
|
3426
|
-
* <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
|
|
3427
|
-
* <p>The following basic restrictions apply to tags:</p>
|
|
3428
|
-
* <ul>
|
|
3429
|
-
* <li>
|
|
3430
|
-
* <p>Maximum number of tags per resource - 50.</p>
|
|
3431
|
-
* </li>
|
|
3432
|
-
* <li>
|
|
3433
|
-
* <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
|
|
3434
|
-
* </li>
|
|
3435
|
-
* <li>
|
|
3436
|
-
* <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
|
|
3437
|
-
* </li>
|
|
3438
|
-
* <li>
|
|
3439
|
-
* <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
|
|
3440
|
-
* </li>
|
|
3441
|
-
* <li>
|
|
3442
|
-
* <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
|
|
3443
|
-
* </li>
|
|
3444
|
-
* <li>
|
|
3445
|
-
* <p>Tag keys and values are case sensitive.</p>
|
|
3446
|
-
* </li>
|
|
3447
|
-
* <li>
|
|
3448
|
-
* <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
|
|
3449
|
-
* </li>
|
|
3450
|
-
* </ul>
|
|
3293
|
+
* <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p> <p>The following basic restrictions apply to tags:</p> <ul> <li> <p>Maximum number of tags per resource - 50.</p> </li> <li> <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p> </li> <li> <p>Maximum key length - 128 Unicode characters in UTF-8.</p> </li> <li> <p>Maximum value length - 256 Unicode characters in UTF-8.</p> </li> <li> <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p> </li> <li> <p>Tag keys and values are case sensitive.</p> </li> <li> <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p> </li> </ul>
|
|
3451
3294
|
* @public
|
|
3452
3295
|
*/
|
|
3453
3296
|
tags: Record<string, string> | undefined;
|
|
@@ -3471,7 +3314,24 @@ export interface CancelTrainedModelRequest {
|
|
|
3471
3314
|
* @public
|
|
3472
3315
|
*/
|
|
3473
3316
|
trainedModelArn: string | undefined;
|
|
3317
|
+
/**
|
|
3318
|
+
* <p>The version identifier of the trained model to cancel. This parameter allows you to specify which version of the trained model you want to cancel when multiple versions exist.</p> <p>If <code>versionIdentifier</code> is not specified, the base model will be cancelled.</p>
|
|
3319
|
+
* @public
|
|
3320
|
+
*/
|
|
3321
|
+
versionIdentifier?: string | undefined;
|
|
3474
3322
|
}
|
|
3323
|
+
/**
|
|
3324
|
+
* @public
|
|
3325
|
+
* @enum
|
|
3326
|
+
*/
|
|
3327
|
+
export declare const S3DataDistributionType: {
|
|
3328
|
+
readonly FULLY_REPLICATED: "FullyReplicated";
|
|
3329
|
+
readonly SHARDED_BY_S3_KEY: "ShardedByS3Key";
|
|
3330
|
+
};
|
|
3331
|
+
/**
|
|
3332
|
+
* @public
|
|
3333
|
+
*/
|
|
3334
|
+
export type S3DataDistributionType = (typeof S3DataDistributionType)[keyof typeof S3DataDistributionType];
|
|
3475
3335
|
/**
|
|
3476
3336
|
* <p>Information about the model training data channel. A training data channel is a named data source that the training algorithms can consume. </p>
|
|
3477
3337
|
* @public
|
|
@@ -3487,6 +3347,32 @@ export interface ModelTrainingDataChannel {
|
|
|
3487
3347
|
* @public
|
|
3488
3348
|
*/
|
|
3489
3349
|
channelName: string | undefined;
|
|
3350
|
+
/**
|
|
3351
|
+
* <p>Specifies how the training data stored in Amazon S3 should be distributed to training instances. This parameter controls the data distribution strategy for the training job:</p> <ul> <li> <p> <code>FullyReplicated</code> - The entire dataset is replicated on each training instance. This is suitable for smaller datasets and algorithms that require access to the complete dataset.</p> </li> <li> <p> <code>ShardedByS3Key</code> - The dataset is distributed across training instances based on Amazon S3 key names. This is suitable for larger datasets and distributed training scenarios where each instance processes a subset of the data.</p> </li> </ul>
|
|
3352
|
+
* @public
|
|
3353
|
+
*/
|
|
3354
|
+
s3DataDistributionType?: S3DataDistributionType | undefined;
|
|
3355
|
+
}
|
|
3356
|
+
/**
|
|
3357
|
+
* <p>Defines an incremental training data channel that references a previously trained model. Incremental training allows you to update an existing trained model with new data, building upon the knowledge from a base model rather than training from scratch. This can significantly reduce training time and computational costs while improving model performance with additional data.</p>
|
|
3358
|
+
* @public
|
|
3359
|
+
*/
|
|
3360
|
+
export interface IncrementalTrainingDataChannel {
|
|
3361
|
+
/**
|
|
3362
|
+
* <p>The Amazon Resource Name (ARN) of the base trained model to use for incremental training. This model serves as the starting point for the incremental training process.</p>
|
|
3363
|
+
* @public
|
|
3364
|
+
*/
|
|
3365
|
+
trainedModelArn: string | undefined;
|
|
3366
|
+
/**
|
|
3367
|
+
* <p>The version identifier of the base trained model to use for incremental training. If not specified, the latest version of the trained model is used.</p>
|
|
3368
|
+
* @public
|
|
3369
|
+
*/
|
|
3370
|
+
versionIdentifier?: string | undefined;
|
|
3371
|
+
/**
|
|
3372
|
+
* <p>The name of the incremental training data channel. This name is used to identify the channel during the training process and must be unique within the training job.</p>
|
|
3373
|
+
* @public
|
|
3374
|
+
*/
|
|
3375
|
+
channelName: string | undefined;
|
|
3490
3376
|
}
|
|
3491
3377
|
/**
|
|
3492
3378
|
* @public
|
|
@@ -3619,6 +3505,19 @@ export interface StoppingCondition {
|
|
|
3619
3505
|
*/
|
|
3620
3506
|
maxRuntimeInSeconds?: number | undefined;
|
|
3621
3507
|
}
|
|
3508
|
+
/**
|
|
3509
|
+
* @public
|
|
3510
|
+
* @enum
|
|
3511
|
+
*/
|
|
3512
|
+
export declare const TrainingInputMode: {
|
|
3513
|
+
readonly FAST_FILE: "FastFile";
|
|
3514
|
+
readonly FILE: "File";
|
|
3515
|
+
readonly PIPE: "Pipe";
|
|
3516
|
+
};
|
|
3517
|
+
/**
|
|
3518
|
+
* @public
|
|
3519
|
+
*/
|
|
3520
|
+
export type TrainingInputMode = (typeof TrainingInputMode)[keyof typeof TrainingInputMode];
|
|
3622
3521
|
/**
|
|
3623
3522
|
* @public
|
|
3624
3523
|
*/
|
|
@@ -3659,10 +3558,20 @@ export interface CreateTrainedModelRequest {
|
|
|
3659
3558
|
*/
|
|
3660
3559
|
stoppingCondition?: StoppingCondition | undefined;
|
|
3661
3560
|
/**
|
|
3662
|
-
* <p>
|
|
3561
|
+
* <p>Specifies the incremental training data channels for the trained model. </p> <p>Incremental training allows you to create a new trained model with updates without retraining from scratch. You can specify up to one incremental training data channel that references a previously trained model and its version.</p> <p>Limit: Maximum of 20 channels total (including both <code>incrementalTrainingDataChannels</code> and <code>dataChannels</code>).</p>
|
|
3562
|
+
* @public
|
|
3563
|
+
*/
|
|
3564
|
+
incrementalTrainingDataChannels?: IncrementalTrainingDataChannel[] | undefined;
|
|
3565
|
+
/**
|
|
3566
|
+
* <p>Defines the data channels that are used as input for the trained model request.</p> <p>Limit: Maximum of 20 channels total (including both <code>dataChannels</code> and <code>incrementalTrainingDataChannels</code>).</p>
|
|
3663
3567
|
* @public
|
|
3664
3568
|
*/
|
|
3665
3569
|
dataChannels: ModelTrainingDataChannel[] | undefined;
|
|
3570
|
+
/**
|
|
3571
|
+
* <p>The input mode for accessing the training data. This parameter determines how the training data is made available to the training algorithm. Valid values are:</p> <ul> <li> <p> <code>File</code> - The training data is downloaded to the training instance and made available as files.</p> </li> <li> <p> <code>FastFile</code> - The training data is streamed directly from Amazon S3 to the training algorithm, providing faster access for large datasets.</p> </li> <li> <p> <code>Pipe</code> - The training data is streamed to the training algorithm using named pipes, which can improve performance for certain algorithms.</p> </li> </ul>
|
|
3572
|
+
* @public
|
|
3573
|
+
*/
|
|
3574
|
+
trainingInputMode?: TrainingInputMode | undefined;
|
|
3666
3575
|
/**
|
|
3667
3576
|
* <p>The description of the trained model.</p>
|
|
3668
3577
|
* @public
|
|
@@ -3674,31 +3583,7 @@ export interface CreateTrainedModelRequest {
|
|
|
3674
3583
|
*/
|
|
3675
3584
|
kmsKeyArn?: string | undefined;
|
|
3676
3585
|
/**
|
|
3677
|
-
* <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
|
|
3678
|
-
* <p>The following basic restrictions apply to tags:</p>
|
|
3679
|
-
* <ul>
|
|
3680
|
-
* <li>
|
|
3681
|
-
* <p>Maximum number of tags per resource - 50.</p>
|
|
3682
|
-
* </li>
|
|
3683
|
-
* <li>
|
|
3684
|
-
* <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
|
|
3685
|
-
* </li>
|
|
3686
|
-
* <li>
|
|
3687
|
-
* <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
|
|
3688
|
-
* </li>
|
|
3689
|
-
* <li>
|
|
3690
|
-
* <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
|
|
3691
|
-
* </li>
|
|
3692
|
-
* <li>
|
|
3693
|
-
* <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
|
|
3694
|
-
* </li>
|
|
3695
|
-
* <li>
|
|
3696
|
-
* <p>Tag keys and values are case sensitive.</p>
|
|
3697
|
-
* </li>
|
|
3698
|
-
* <li>
|
|
3699
|
-
* <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
|
|
3700
|
-
* </li>
|
|
3701
|
-
* </ul>
|
|
3586
|
+
* <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p> <p>The following basic restrictions apply to tags:</p> <ul> <li> <p>Maximum number of tags per resource - 50.</p> </li> <li> <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p> </li> <li> <p>Maximum key length - 128 Unicode characters in UTF-8.</p> </li> <li> <p>Maximum value length - 256 Unicode characters in UTF-8.</p> </li> <li> <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p> </li> <li> <p>Tag keys and values are case sensitive.</p> </li> <li> <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p> </li> </ul>
|
|
3702
3587
|
* @public
|
|
3703
3588
|
*/
|
|
3704
3589
|
tags?: Record<string, string> | undefined;
|
|
@@ -3712,6 +3597,23 @@ export interface CreateTrainedModelResponse {
|
|
|
3712
3597
|
* @public
|
|
3713
3598
|
*/
|
|
3714
3599
|
trainedModelArn: string | undefined;
|
|
3600
|
+
/**
|
|
3601
|
+
* <p>The unique version identifier assigned to the newly created trained model. This identifier can be used to reference this specific version of the trained model in subsequent operations such as inference jobs or incremental training.</p> <p>The initial version identifier for the base version of the trained model is "NULL".</p>
|
|
3602
|
+
* @public
|
|
3603
|
+
*/
|
|
3604
|
+
versionIdentifier?: string | undefined;
|
|
3605
|
+
}
|
|
3606
|
+
/**
|
|
3607
|
+
* <p>An internal service error occurred. Retry your request. If the problem persists, contact AWS Support.</p>
|
|
3608
|
+
* @public
|
|
3609
|
+
*/
|
|
3610
|
+
export declare class InternalServiceException extends __BaseException {
|
|
3611
|
+
readonly name: "InternalServiceException";
|
|
3612
|
+
readonly $fault: "server";
|
|
3613
|
+
/**
|
|
3614
|
+
* @internal
|
|
3615
|
+
*/
|
|
3616
|
+
constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
|
|
3715
3617
|
}
|
|
3716
3618
|
/**
|
|
3717
3619
|
* @public
|
|
@@ -3727,6 +3629,11 @@ export interface DeleteTrainedModelOutputRequest {
|
|
|
3727
3629
|
* @public
|
|
3728
3630
|
*/
|
|
3729
3631
|
membershipIdentifier: string | undefined;
|
|
3632
|
+
/**
|
|
3633
|
+
* <p>The version identifier of the trained model to delete. If not specified, the operation will delete the base version of the trained model. When specified, only the particular version will be deleted.</p>
|
|
3634
|
+
* @public
|
|
3635
|
+
*/
|
|
3636
|
+
versionIdentifier?: string | undefined;
|
|
3730
3637
|
}
|
|
3731
3638
|
/**
|
|
3732
3639
|
* @public
|
|
@@ -3742,6 +3649,11 @@ export interface GetCollaborationTrainedModelRequest {
|
|
|
3742
3649
|
* @public
|
|
3743
3650
|
*/
|
|
3744
3651
|
collaborationIdentifier: string | undefined;
|
|
3652
|
+
/**
|
|
3653
|
+
* <p>The version identifier of the trained model to retrieve. If not specified, the operation returns information about the latest version of the trained model.</p>
|
|
3654
|
+
* @public
|
|
3655
|
+
*/
|
|
3656
|
+
versionIdentifier?: string | undefined;
|
|
3745
3657
|
}
|
|
3746
3658
|
/**
|
|
3747
3659
|
* @public
|
|
@@ -3762,6 +3674,16 @@ export interface GetCollaborationTrainedModelResponse {
|
|
|
3762
3674
|
* @public
|
|
3763
3675
|
*/
|
|
3764
3676
|
trainedModelArn: string | undefined;
|
|
3677
|
+
/**
|
|
3678
|
+
* <p>The version identifier of the trained model. This unique identifier distinguishes this version from other versions of the same trained model.</p>
|
|
3679
|
+
* @public
|
|
3680
|
+
*/
|
|
3681
|
+
versionIdentifier?: string | undefined;
|
|
3682
|
+
/**
|
|
3683
|
+
* <p>Information about the incremental training data channels used to create this version of the trained model. This includes details about the base model that was used for incremental training and the channel configuration.</p>
|
|
3684
|
+
* @public
|
|
3685
|
+
*/
|
|
3686
|
+
incrementalTrainingDataChannels?: IncrementalTrainingDataChannelOutput[] | undefined;
|
|
3765
3687
|
/**
|
|
3766
3688
|
* <p>The name of the trained model.</p>
|
|
3767
3689
|
* @public
|
|
@@ -3792,6 +3714,11 @@ export interface GetCollaborationTrainedModelResponse {
|
|
|
3792
3714
|
* @public
|
|
3793
3715
|
*/
|
|
3794
3716
|
resourceConfig?: ResourceConfig | undefined;
|
|
3717
|
+
/**
|
|
3718
|
+
* <p>The input mode that was used for accessing the training data when this trained model was created. This indicates how the training data was made available to the training algorithm.</p>
|
|
3719
|
+
* @public
|
|
3720
|
+
*/
|
|
3721
|
+
trainingInputMode?: TrainingInputMode | undefined;
|
|
3795
3722
|
/**
|
|
3796
3723
|
* <p>The stopping condition that determined when model training ended.</p>
|
|
3797
3724
|
* @public
|
|
@@ -3852,6 +3779,11 @@ export interface GetTrainedModelRequest {
|
|
|
3852
3779
|
* @public
|
|
3853
3780
|
*/
|
|
3854
3781
|
membershipIdentifier: string | undefined;
|
|
3782
|
+
/**
|
|
3783
|
+
* <p>The version identifier of the trained model to retrieve. If not specified, the operation returns information about the latest version of the trained model.</p>
|
|
3784
|
+
* @public
|
|
3785
|
+
*/
|
|
3786
|
+
versionIdentifier?: string | undefined;
|
|
3855
3787
|
}
|
|
3856
3788
|
/**
|
|
3857
3789
|
* @public
|
|
@@ -3872,6 +3804,16 @@ export interface GetTrainedModelResponse {
|
|
|
3872
3804
|
* @public
|
|
3873
3805
|
*/
|
|
3874
3806
|
trainedModelArn: string | undefined;
|
|
3807
|
+
/**
|
|
3808
|
+
* <p>The version identifier of the trained model. This unique identifier distinguishes this version from other versions of the same trained model.</p>
|
|
3809
|
+
* @public
|
|
3810
|
+
*/
|
|
3811
|
+
versionIdentifier?: string | undefined;
|
|
3812
|
+
/**
|
|
3813
|
+
* <p>Information about the incremental training data channels used to create this version of the trained model. This includes details about the base model that was used for incremental training and the channel configuration.</p>
|
|
3814
|
+
* @public
|
|
3815
|
+
*/
|
|
3816
|
+
incrementalTrainingDataChannels?: IncrementalTrainingDataChannelOutput[] | undefined;
|
|
3875
3817
|
/**
|
|
3876
3818
|
* <p>The name of the trained model.</p>
|
|
3877
3819
|
* @public
|
|
@@ -3902,6 +3844,11 @@ export interface GetTrainedModelResponse {
|
|
|
3902
3844
|
* @public
|
|
3903
3845
|
*/
|
|
3904
3846
|
resourceConfig?: ResourceConfig | undefined;
|
|
3847
|
+
/**
|
|
3848
|
+
* <p>The input mode that was used for accessing the training data when this trained model was created. This indicates how the training data was made available to the training algorithm.</p>
|
|
3849
|
+
* @public
|
|
3850
|
+
*/
|
|
3851
|
+
trainingInputMode?: TrainingInputMode | undefined;
|
|
3905
3852
|
/**
|
|
3906
3853
|
* <p>The stopping condition that was used to terminate model training.</p>
|
|
3907
3854
|
* @public
|
|
@@ -3958,31 +3905,7 @@ export interface GetTrainedModelResponse {
|
|
|
3958
3905
|
*/
|
|
3959
3906
|
kmsKeyArn?: string | undefined;
|
|
3960
3907
|
/**
|
|
3961
|
-
* <p>The optional metadata that you applied to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
|
|
3962
|
-
* <p>The following basic restrictions apply to tags:</p>
|
|
3963
|
-
* <ul>
|
|
3964
|
-
* <li>
|
|
3965
|
-
* <p>Maximum number of tags per resource - 50.</p>
|
|
3966
|
-
* </li>
|
|
3967
|
-
* <li>
|
|
3968
|
-
* <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
|
|
3969
|
-
* </li>
|
|
3970
|
-
* <li>
|
|
3971
|
-
* <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
|
|
3972
|
-
* </li>
|
|
3973
|
-
* <li>
|
|
3974
|
-
* <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
|
|
3975
|
-
* </li>
|
|
3976
|
-
* <li>
|
|
3977
|
-
* <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
|
|
3978
|
-
* </li>
|
|
3979
|
-
* <li>
|
|
3980
|
-
* <p>Tag keys and values are case sensitive.</p>
|
|
3981
|
-
* </li>
|
|
3982
|
-
* <li>
|
|
3983
|
-
* <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
|
|
3984
|
-
* </li>
|
|
3985
|
-
* </ul>
|
|
3908
|
+
* <p>The optional metadata that you applied to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p> <p>The following basic restrictions apply to tags:</p> <ul> <li> <p>Maximum number of tags per resource - 50.</p> </li> <li> <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p> </li> <li> <p>Maximum key length - 128 Unicode characters in UTF-8.</p> </li> <li> <p>Maximum value length - 256 Unicode characters in UTF-8.</p> </li> <li> <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p> </li> <li> <p>Tag keys and values are case sensitive.</p> </li> <li> <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p> </li> </ul>
|
|
3986
3909
|
* @public
|
|
3987
3910
|
*/
|
|
3988
3911
|
tags?: Record<string, string> | undefined;
|
|
@@ -4032,6 +3955,16 @@ export interface TrainedModelSummary {
|
|
|
4032
3955
|
* @public
|
|
4033
3956
|
*/
|
|
4034
3957
|
trainedModelArn: string | undefined;
|
|
3958
|
+
/**
|
|
3959
|
+
* <p>The version identifier of this trained model version.</p>
|
|
3960
|
+
* @public
|
|
3961
|
+
*/
|
|
3962
|
+
versionIdentifier?: string | undefined;
|
|
3963
|
+
/**
|
|
3964
|
+
* <p>Information about the incremental training data channels used to create this version of the trained model.</p>
|
|
3965
|
+
* @public
|
|
3966
|
+
*/
|
|
3967
|
+
incrementalTrainingDataChannels?: IncrementalTrainingDataChannelOutput[] | undefined;
|
|
4035
3968
|
/**
|
|
4036
3969
|
* <p>The name of the trained model.</p>
|
|
4037
3970
|
* @public
|
|
@@ -4078,6 +4011,51 @@ export interface ListTrainedModelsResponse {
|
|
|
4078
4011
|
*/
|
|
4079
4012
|
trainedModels: TrainedModelSummary[] | undefined;
|
|
4080
4013
|
}
|
|
4014
|
+
/**
|
|
4015
|
+
* @public
|
|
4016
|
+
*/
|
|
4017
|
+
export interface ListTrainedModelVersionsRequest {
|
|
4018
|
+
/**
|
|
4019
|
+
* <p>The pagination token from a previous <code>ListTrainedModelVersions</code> request. Use this token to retrieve the next page of results.</p>
|
|
4020
|
+
* @public
|
|
4021
|
+
*/
|
|
4022
|
+
nextToken?: string | undefined;
|
|
4023
|
+
/**
|
|
4024
|
+
* <p>The maximum number of trained model versions to return in a single page. The default value is 10, and the maximum value is 100.</p>
|
|
4025
|
+
* @public
|
|
4026
|
+
*/
|
|
4027
|
+
maxResults?: number | undefined;
|
|
4028
|
+
/**
|
|
4029
|
+
* <p>The membership identifier for the collaboration that contains the trained model.</p>
|
|
4030
|
+
* @public
|
|
4031
|
+
*/
|
|
4032
|
+
membershipIdentifier: string | undefined;
|
|
4033
|
+
/**
|
|
4034
|
+
* <p>The Amazon Resource Name (ARN) of the trained model for which to list versions.</p>
|
|
4035
|
+
* @public
|
|
4036
|
+
*/
|
|
4037
|
+
trainedModelArn: string | undefined;
|
|
4038
|
+
/**
|
|
4039
|
+
* <p>Filter the results to only include trained model versions with the specified status. Valid values include <code>CREATE_PENDING</code>, <code>CREATE_IN_PROGRESS</code>, <code>ACTIVE</code>, <code>CREATE_FAILED</code>, and others.</p>
|
|
4040
|
+
* @public
|
|
4041
|
+
*/
|
|
4042
|
+
status?: TrainedModelStatus | undefined;
|
|
4043
|
+
}
|
|
4044
|
+
/**
|
|
4045
|
+
* @public
|
|
4046
|
+
*/
|
|
4047
|
+
export interface ListTrainedModelVersionsResponse {
|
|
4048
|
+
/**
|
|
4049
|
+
* <p>The pagination token to use in a subsequent <code>ListTrainedModelVersions</code> request to retrieve the next page of results. This value is null when there are no more results to return.</p>
|
|
4050
|
+
* @public
|
|
4051
|
+
*/
|
|
4052
|
+
nextToken?: string | undefined;
|
|
4053
|
+
/**
|
|
4054
|
+
* <p>A list of trained model versions that match the specified criteria. Each entry contains summary information about a trained model version, including its version identifier, status, and creation details.</p>
|
|
4055
|
+
* @public
|
|
4056
|
+
*/
|
|
4057
|
+
trainedModels: TrainedModelSummary[] | undefined;
|
|
4058
|
+
}
|
|
4081
4059
|
/**
|
|
4082
4060
|
* @public
|
|
4083
4061
|
*/
|
|
@@ -4092,6 +4070,11 @@ export interface StartTrainedModelExportJobRequest {
|
|
|
4092
4070
|
* @public
|
|
4093
4071
|
*/
|
|
4094
4072
|
trainedModelArn: string | undefined;
|
|
4073
|
+
/**
|
|
4074
|
+
* <p>The version identifier of the trained model to export. This specifies which version of the trained model should be exported to the specified destination.</p>
|
|
4075
|
+
* @public
|
|
4076
|
+
*/
|
|
4077
|
+
trainedModelVersionIdentifier?: string | undefined;
|
|
4095
4078
|
/**
|
|
4096
4079
|
* <p>The membership ID of the member that is receiving the exported trained model artifacts.</p>
|
|
4097
4080
|
* @public
|
|
@@ -4319,6 +4302,11 @@ export interface GetTrainedModelInferenceJobResponse {
|
|
|
4319
4302
|
* @public
|
|
4320
4303
|
*/
|
|
4321
4304
|
trainedModelArn: string | undefined;
|
|
4305
|
+
/**
|
|
4306
|
+
* <p>The version identifier of the trained model used for this inference job. This identifies the specific version of the trained model that was used to generate the inference results.</p>
|
|
4307
|
+
* @public
|
|
4308
|
+
*/
|
|
4309
|
+
trainedModelVersionIdentifier?: string | undefined;
|
|
4322
4310
|
/**
|
|
4323
4311
|
* <p>The resource configuration information for the trained model inference job.</p>
|
|
4324
4312
|
* @public
|
|
@@ -4390,31 +4378,7 @@ export interface GetTrainedModelInferenceJobResponse {
|
|
|
4390
4378
|
*/
|
|
4391
4379
|
logsStatusDetails?: string | undefined;
|
|
4392
4380
|
/**
|
|
4393
|
-
* <p>The optional metadata that you applied to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
|
|
4394
|
-
* <p>The following basic restrictions apply to tags:</p>
|
|
4395
|
-
* <ul>
|
|
4396
|
-
* <li>
|
|
4397
|
-
* <p>Maximum number of tags per resource - 50.</p>
|
|
4398
|
-
* </li>
|
|
4399
|
-
* <li>
|
|
4400
|
-
* <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
|
|
4401
|
-
* </li>
|
|
4402
|
-
* <li>
|
|
4403
|
-
* <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
|
|
4404
|
-
* </li>
|
|
4405
|
-
* <li>
|
|
4406
|
-
* <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
|
|
4407
|
-
* </li>
|
|
4408
|
-
* <li>
|
|
4409
|
-
* <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
|
|
4410
|
-
* </li>
|
|
4411
|
-
* <li>
|
|
4412
|
-
* <p>Tag keys and values are case sensitive.</p>
|
|
4413
|
-
* </li>
|
|
4414
|
-
* <li>
|
|
4415
|
-
* <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
|
|
4416
|
-
* </li>
|
|
4417
|
-
* </ul>
|
|
4381
|
+
* <p>The optional metadata that you applied to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p> <p>The following basic restrictions apply to tags:</p> <ul> <li> <p>Maximum number of tags per resource - 50.</p> </li> <li> <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p> </li> <li> <p>Maximum key length - 128 Unicode characters in UTF-8.</p> </li> <li> <p>Maximum value length - 256 Unicode characters in UTF-8.</p> </li> <li> <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p> </li> <li> <p>Tag keys and values are case sensitive.</p> </li> <li> <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p> </li> </ul>
|
|
4418
4382
|
* @public
|
|
4419
4383
|
*/
|
|
4420
4384
|
tags?: Record<string, string> | undefined;
|
|
@@ -4443,6 +4407,11 @@ export interface ListTrainedModelInferenceJobsRequest {
|
|
|
4443
4407
|
* @public
|
|
4444
4408
|
*/
|
|
4445
4409
|
trainedModelArn?: string | undefined;
|
|
4410
|
+
/**
|
|
4411
|
+
* <p>The version identifier of the trained model to filter inference jobs by. When specified, only inference jobs that used this specific version of the trained model are returned.</p>
|
|
4412
|
+
* @public
|
|
4413
|
+
*/
|
|
4414
|
+
trainedModelVersionIdentifier?: string | undefined;
|
|
4446
4415
|
}
|
|
4447
4416
|
/**
|
|
4448
4417
|
* <p>Provides information about the trained model inference job.</p>
|
|
@@ -4469,6 +4438,11 @@ export interface TrainedModelInferenceJobSummary {
|
|
|
4469
4438
|
* @public
|
|
4470
4439
|
*/
|
|
4471
4440
|
trainedModelArn: string | undefined;
|
|
4441
|
+
/**
|
|
4442
|
+
* <p>The version identifier of the trained model that was used for inference in this job.</p>
|
|
4443
|
+
* @public
|
|
4444
|
+
*/
|
|
4445
|
+
trainedModelVersionIdentifier?: string | undefined;
|
|
4472
4446
|
/**
|
|
4473
4447
|
* <p>The collaboration ID of the collaboration that contains the trained model inference job.</p>
|
|
4474
4448
|
* @public
|
|
@@ -4559,6 +4533,11 @@ export interface StartTrainedModelInferenceJobRequest {
|
|
|
4559
4533
|
* @public
|
|
4560
4534
|
*/
|
|
4561
4535
|
trainedModelArn: string | undefined;
|
|
4536
|
+
/**
|
|
4537
|
+
* <p>The version identifier of the trained model to use for inference. This specifies which version of the trained model should be used to generate predictions on the input data.</p>
|
|
4538
|
+
* @public
|
|
4539
|
+
*/
|
|
4540
|
+
trainedModelVersionIdentifier?: string | undefined;
|
|
4562
4541
|
/**
|
|
4563
4542
|
* <p>The Amazon Resource Name (ARN) of the configured model algorithm association that is used for this trained model inference job.</p>
|
|
4564
4543
|
* @public
|
|
@@ -4600,31 +4579,7 @@ export interface StartTrainedModelInferenceJobRequest {
|
|
|
4600
4579
|
*/
|
|
4601
4580
|
kmsKeyArn?: string | undefined;
|
|
4602
4581
|
/**
|
|
4603
|
-
* <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
|
|
4604
|
-
* <p>The following basic restrictions apply to tags:</p>
|
|
4605
|
-
* <ul>
|
|
4606
|
-
* <li>
|
|
4607
|
-
* <p>Maximum number of tags per resource - 50.</p>
|
|
4608
|
-
* </li>
|
|
4609
|
-
* <li>
|
|
4610
|
-
* <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
|
|
4611
|
-
* </li>
|
|
4612
|
-
* <li>
|
|
4613
|
-
* <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
|
|
4614
|
-
* </li>
|
|
4615
|
-
* <li>
|
|
4616
|
-
* <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
|
|
4617
|
-
* </li>
|
|
4618
|
-
* <li>
|
|
4619
|
-
* <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
|
|
4620
|
-
* </li>
|
|
4621
|
-
* <li>
|
|
4622
|
-
* <p>Tag keys and values are case sensitive.</p>
|
|
4623
|
-
* </li>
|
|
4624
|
-
* <li>
|
|
4625
|
-
* <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
|
|
4626
|
-
* </li>
|
|
4627
|
-
* </ul>
|
|
4582
|
+
* <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p> <p>The following basic restrictions apply to tags:</p> <ul> <li> <p>Maximum number of tags per resource - 50.</p> </li> <li> <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p> </li> <li> <p>Maximum key length - 128 Unicode characters in UTF-8.</p> </li> <li> <p>Maximum value length - 256 Unicode characters in UTF-8.</p> </li> <li> <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p> </li> <li> <p>Tag keys and values are case sensitive.</p> </li> <li> <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p> </li> </ul>
|
|
4628
4583
|
* @public
|
|
4629
4584
|
*/
|
|
4630
4585
|
tags?: Record<string, string> | undefined;
|
|
@@ -4755,8 +4710,7 @@ export interface CreateTrainingDatasetRequest {
|
|
|
4755
4710
|
*/
|
|
4756
4711
|
name: string | undefined;
|
|
4757
4712
|
/**
|
|
4758
|
-
* <p>The ARN of the IAM role that Clean Rooms ML can assume to read the data referred to in the <code>dataSource</code> field of each dataset.</p>
|
|
4759
|
-
* <p>Passing a role across AWS accounts is not allowed. If you pass a role that isn't in your account, you get an <code>AccessDeniedException</code> error.</p>
|
|
4713
|
+
* <p>The ARN of the IAM role that Clean Rooms ML can assume to read the data referred to in the <code>dataSource</code> field of each dataset.</p> <p>Passing a role across AWS accounts is not allowed. If you pass a role that isn't in your account, you get an <code>AccessDeniedException</code> error.</p>
|
|
4760
4714
|
* @public
|
|
4761
4715
|
*/
|
|
4762
4716
|
roleArn: string | undefined;
|
|
@@ -4766,31 +4720,7 @@ export interface CreateTrainingDatasetRequest {
|
|
|
4766
4720
|
*/
|
|
4767
4721
|
trainingData: Dataset[] | undefined;
|
|
4768
4722
|
/**
|
|
4769
|
-
* <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p>
|
|
4770
|
-
* <p>The following basic restrictions apply to tags:</p>
|
|
4771
|
-
* <ul>
|
|
4772
|
-
* <li>
|
|
4773
|
-
* <p>Maximum number of tags per resource - 50.</p>
|
|
4774
|
-
* </li>
|
|
4775
|
-
* <li>
|
|
4776
|
-
* <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p>
|
|
4777
|
-
* </li>
|
|
4778
|
-
* <li>
|
|
4779
|
-
* <p>Maximum key length - 128 Unicode characters in UTF-8.</p>
|
|
4780
|
-
* </li>
|
|
4781
|
-
* <li>
|
|
4782
|
-
* <p>Maximum value length - 256 Unicode characters in UTF-8.</p>
|
|
4783
|
-
* </li>
|
|
4784
|
-
* <li>
|
|
4785
|
-
* <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p>
|
|
4786
|
-
* </li>
|
|
4787
|
-
* <li>
|
|
4788
|
-
* <p>Tag keys and values are case sensitive.</p>
|
|
4789
|
-
* </li>
|
|
4790
|
-
* <li>
|
|
4791
|
-
* <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p>
|
|
4792
|
-
* </li>
|
|
4793
|
-
* </ul>
|
|
4723
|
+
* <p>The optional metadata that you apply to the resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.</p> <p>The following basic restrictions apply to tags:</p> <ul> <li> <p>Maximum number of tags per resource - 50.</p> </li> <li> <p>For each resource, each tag key must be unique, and each tag key can have only one value.</p> </li> <li> <p>Maximum key length - 128 Unicode characters in UTF-8.</p> </li> <li> <p>Maximum value length - 256 Unicode characters in UTF-8.</p> </li> <li> <p>If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.</p> </li> <li> <p>Tag keys and values are case sensitive.</p> </li> <li> <p>Do not use aws:, AWS:, or any upper or lowercase combination of such as a prefix for keys as it is reserved for AWS use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Clean Rooms ML considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.</p> </li> </ul>
|
|
4794
4724
|
* @public
|
|
4795
4725
|
*/
|
|
4796
4726
|
tags?: Record<string, string> | undefined;
|