@aws-sdk/client-sagemaker 3.180.0 → 3.182.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +28 -0
- package/dist-cjs/commands/CreateFlowDefinitionCommand.js +3 -3
- package/dist-cjs/commands/CreateHumanTaskUiCommand.js +3 -3
- package/dist-cjs/commands/DescribeEndpointConfigCommand.js +2 -1
- package/dist-cjs/commands/DescribeExperimentCommand.js +3 -3
- package/dist-cjs/commands/DescribeFeatureGroupCommand.js +1 -2
- package/dist-cjs/commands/ListModelsCommand.js +3 -3
- package/dist-cjs/commands/ListMonitoringExecutionsCommand.js +3 -3
- package/dist-cjs/commands/ListMonitoringSchedulesCommand.js +3 -3
- package/dist-cjs/models/models_0.js +104 -41
- package/dist-cjs/models/models_1.js +43 -51
- package/dist-cjs/models/models_2.js +61 -56
- package/dist-cjs/models/models_3.js +58 -4
- package/dist-cjs/protocols/Aws_json1_1.js +470 -263
- package/dist-es/commands/CreateFlowDefinitionCommand.js +1 -1
- package/dist-es/commands/CreateHumanTaskUiCommand.js +1 -1
- package/dist-es/commands/DescribeEndpointConfigCommand.js +2 -1
- package/dist-es/commands/DescribeExperimentCommand.js +1 -1
- package/dist-es/commands/DescribeFeatureGroupCommand.js +1 -2
- package/dist-es/commands/ListModelsCommand.js +1 -1
- package/dist-es/commands/ListMonitoringExecutionsCommand.js +1 -1
- package/dist-es/commands/ListMonitoringSchedulesCommand.js +1 -1
- package/dist-es/models/models_0.js +81 -9
- package/dist-es/models/models_1.js +9 -26
- package/dist-es/models/models_2.js +34 -26
- package/dist-es/models/models_3.js +27 -0
- package/dist-es/protocols/Aws_json1_1.js +447 -270
- package/dist-types/SageMaker.d.ts +1 -1
- package/dist-types/commands/CreateFlowDefinitionCommand.d.ts +1 -1
- package/dist-types/commands/CreateHumanTaskUiCommand.d.ts +1 -1
- package/dist-types/commands/DescribeEndpointConfigCommand.d.ts +2 -1
- package/dist-types/commands/DescribeExperimentCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFeatureGroupCommand.d.ts +1 -2
- package/dist-types/commands/ListModelsCommand.d.ts +1 -1
- package/dist-types/commands/ListMonitoringExecutionsCommand.d.ts +1 -1
- package/dist-types/commands/ListMonitoringSchedulesCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTrainingJobCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +352 -528
- package/dist-types/models/models_1.d.ts +529 -155
- package/dist-types/models/models_2.d.ts +214 -294
- package/dist-types/models/models_3.d.ts +324 -3
- package/dist-types/ts3.4/commands/CreateFlowDefinitionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/CreateHumanTaskUiCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeEndpointConfigCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeExperimentCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeFeatureGroupCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/ListModelsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListMonitoringExecutionsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListMonitoringSchedulesCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +129 -75
- package/dist-types/ts3.4/models/models_1.d.ts +80 -73
- package/dist-types/ts3.4/models/models_2.d.ts +93 -112
- package/dist-types/ts3.4/models/models_3.d.ts +123 -2
- package/package.json +3 -3
|
@@ -386,6 +386,7 @@ export interface ResourceConfig {
|
|
|
386
386
|
VolumeSizeInGB: number | undefined;
|
|
387
387
|
VolumeKmsKeyId?: string;
|
|
388
388
|
InstanceGroups?: InstanceGroup[];
|
|
389
|
+
KeepAlivePeriodInSeconds?: number;
|
|
389
390
|
}
|
|
390
391
|
export interface StoppingCondition {
|
|
391
392
|
MaxRuntimeInSeconds?: number;
|
|
@@ -1040,6 +1041,112 @@ export interface ClarifyCheckStepMetadata {
|
|
|
1040
1041
|
SkipCheck?: boolean;
|
|
1041
1042
|
RegisterNewBaseline?: boolean;
|
|
1042
1043
|
}
|
|
1044
|
+
export declare enum ClarifyFeatureType {
|
|
1045
|
+
CATEGORICAL = "categorical",
|
|
1046
|
+
NUMERICAL = "numerical",
|
|
1047
|
+
TEXT = "text",
|
|
1048
|
+
}
|
|
1049
|
+
export interface ClarifyInferenceConfig {
|
|
1050
|
+
FeaturesAttribute?: string;
|
|
1051
|
+
ContentTemplate?: string;
|
|
1052
|
+
MaxRecordCount?: number;
|
|
1053
|
+
MaxPayloadInMB?: number;
|
|
1054
|
+
ProbabilityIndex?: number;
|
|
1055
|
+
LabelIndex?: number;
|
|
1056
|
+
ProbabilityAttribute?: string;
|
|
1057
|
+
LabelAttribute?: string;
|
|
1058
|
+
LabelHeaders?: string[];
|
|
1059
|
+
FeatureHeaders?: string[];
|
|
1060
|
+
FeatureTypes?: (ClarifyFeatureType | string)[];
|
|
1061
|
+
}
|
|
1062
|
+
export interface ClarifyShapBaselineConfig {
|
|
1063
|
+
MimeType?: string;
|
|
1064
|
+
ShapBaseline?: string;
|
|
1065
|
+
ShapBaselineUri?: string;
|
|
1066
|
+
}
|
|
1067
|
+
export declare enum ClarifyTextGranularity {
|
|
1068
|
+
PARAGRAPH = "paragraph",
|
|
1069
|
+
SENTENCE = "sentence",
|
|
1070
|
+
TOKEN = "token",
|
|
1071
|
+
}
|
|
1072
|
+
export declare enum ClarifyTextLanguage {
|
|
1073
|
+
AFRIKAANS = "af",
|
|
1074
|
+
ALBANIAN = "sq",
|
|
1075
|
+
ARABIC = "ar",
|
|
1076
|
+
ARMENIAN = "hy",
|
|
1077
|
+
BASQUE = "eu",
|
|
1078
|
+
BENGALI = "bn",
|
|
1079
|
+
BULGARIAN = "bg",
|
|
1080
|
+
CATALAN = "ca",
|
|
1081
|
+
CHINESE = "zh",
|
|
1082
|
+
CROATIAN = "hr",
|
|
1083
|
+
CZECH = "cs",
|
|
1084
|
+
DANISH = "da",
|
|
1085
|
+
DUTCH = "nl",
|
|
1086
|
+
ENGLISH = "en",
|
|
1087
|
+
ESTONIAN = "et",
|
|
1088
|
+
FINNISH = "fi",
|
|
1089
|
+
FRENCH = "fr",
|
|
1090
|
+
GERMAN = "de",
|
|
1091
|
+
GREEK = "el",
|
|
1092
|
+
GUJARATI = "gu",
|
|
1093
|
+
HEBREW = "he",
|
|
1094
|
+
HINDI = "hi",
|
|
1095
|
+
HUNGARIAN = "hu",
|
|
1096
|
+
ICELANDIC = "is",
|
|
1097
|
+
INDONESIAN = "id",
|
|
1098
|
+
IRISH = "ga",
|
|
1099
|
+
ITALIAN = "it",
|
|
1100
|
+
KANNADA = "kn",
|
|
1101
|
+
KYRGYZ = "ky",
|
|
1102
|
+
LATVIAN = "lv",
|
|
1103
|
+
LIGURIAN = "lij",
|
|
1104
|
+
LITHUANIAN = "lt",
|
|
1105
|
+
LUXEMBOURGISH = "lb",
|
|
1106
|
+
MACEDONIAN = "mk",
|
|
1107
|
+
MALAYALAM = "ml",
|
|
1108
|
+
MARATHI = "mr",
|
|
1109
|
+
MULTI_LANGUAGE = "xx",
|
|
1110
|
+
NEPALI = "ne",
|
|
1111
|
+
NORWEGIAN_BOKMAL = "nb",
|
|
1112
|
+
PERSIAN = "fa",
|
|
1113
|
+
POLISH = "pl",
|
|
1114
|
+
PORTUGUESE = "pt",
|
|
1115
|
+
ROMANIAN = "ro",
|
|
1116
|
+
RUSSIAN = "ru",
|
|
1117
|
+
SANSKRIT = "sa",
|
|
1118
|
+
SERBIAN = "sr",
|
|
1119
|
+
SETSWANA = "tn",
|
|
1120
|
+
SINHALA = "si",
|
|
1121
|
+
SLOVAK = "sk",
|
|
1122
|
+
SLOVENIAN = "sl",
|
|
1123
|
+
SPANISH = "es",
|
|
1124
|
+
SWEDISH = "sv",
|
|
1125
|
+
TAGALOG = "tl",
|
|
1126
|
+
TAMIL = "ta",
|
|
1127
|
+
TATAR = "tt",
|
|
1128
|
+
TELUGU = "te",
|
|
1129
|
+
TURKISH = "tr",
|
|
1130
|
+
UKRAINIAN = "uk",
|
|
1131
|
+
URDU = "ur",
|
|
1132
|
+
YORUBA = "yo",
|
|
1133
|
+
}
|
|
1134
|
+
export interface ClarifyTextConfig {
|
|
1135
|
+
Language: ClarifyTextLanguage | string | undefined;
|
|
1136
|
+
Granularity: ClarifyTextGranularity | string | undefined;
|
|
1137
|
+
}
|
|
1138
|
+
export interface ClarifyShapConfig {
|
|
1139
|
+
ShapBaselineConfig: ClarifyShapBaselineConfig | undefined;
|
|
1140
|
+
NumberOfSamples?: number;
|
|
1141
|
+
UseLogit?: boolean;
|
|
1142
|
+
Seed?: number;
|
|
1143
|
+
TextConfig?: ClarifyTextConfig;
|
|
1144
|
+
}
|
|
1145
|
+
export interface ClarifyExplainerConfig {
|
|
1146
|
+
EnableExplanations?: string;
|
|
1147
|
+
InferenceConfig?: ClarifyInferenceConfig;
|
|
1148
|
+
ShapConfig: ClarifyShapConfig | undefined;
|
|
1149
|
+
}
|
|
1043
1150
|
export declare enum CodeRepositorySortBy {
|
|
1044
1151
|
CREATION_TIME = "CreationTime",
|
|
1045
1152
|
LAST_MODIFIED_TIME = "LastModifiedTime",
|
|
@@ -1739,6 +1846,9 @@ export interface DataCaptureConfig {
|
|
|
1739
1846
|
CaptureOptions: CaptureOption[] | undefined;
|
|
1740
1847
|
CaptureContentTypeHeader?: CaptureContentTypeHeader;
|
|
1741
1848
|
}
|
|
1849
|
+
export interface ExplainerConfig {
|
|
1850
|
+
ClarifyExplainerConfig?: ClarifyExplainerConfig;
|
|
1851
|
+
}
|
|
1742
1852
|
export declare enum ProductionVariantAcceleratorType {
|
|
1743
1853
|
ML_EIA1_LARGE = "ml.eia1.large",
|
|
1744
1854
|
ML_EIA1_MEDIUM = "ml.eia1.medium",
|
|
@@ -1775,6 +1885,7 @@ export interface CreateEndpointConfigInput {
|
|
|
1775
1885
|
Tags?: Tag[];
|
|
1776
1886
|
KmsKeyId?: string;
|
|
1777
1887
|
AsyncInferenceConfig?: AsyncInferenceConfig;
|
|
1888
|
+
ExplainerConfig?: ExplainerConfig;
|
|
1778
1889
|
}
|
|
1779
1890
|
export interface CreateEndpointConfigOutput {
|
|
1780
1891
|
EndpointConfigArn: string | undefined;
|
|
@@ -1849,56 +1960,6 @@ export interface USD {
|
|
|
1849
1960
|
export interface PublicWorkforceTaskPrice {
|
|
1850
1961
|
AmountInUsd?: USD;
|
|
1851
1962
|
}
|
|
1852
|
-
export interface HumanLoopConfig {
|
|
1853
|
-
WorkteamArn: string | undefined;
|
|
1854
|
-
HumanTaskUiArn: string | undefined;
|
|
1855
|
-
TaskTitle: string | undefined;
|
|
1856
|
-
TaskDescription: string | undefined;
|
|
1857
|
-
TaskCount: number | undefined;
|
|
1858
|
-
TaskAvailabilityLifetimeInSeconds?: number;
|
|
1859
|
-
TaskTimeLimitInSeconds?: number;
|
|
1860
|
-
TaskKeywords?: string[];
|
|
1861
|
-
PublicWorkforceTaskPrice?: PublicWorkforceTaskPrice;
|
|
1862
|
-
}
|
|
1863
|
-
export interface HumanLoopRequestSource {
|
|
1864
|
-
AwsManagedHumanLoopRequestSource:
|
|
1865
|
-
| AwsManagedHumanLoopRequestSource
|
|
1866
|
-
| string
|
|
1867
|
-
| undefined;
|
|
1868
|
-
}
|
|
1869
|
-
export interface FlowDefinitionOutputConfig {
|
|
1870
|
-
S3OutputPath: string | undefined;
|
|
1871
|
-
KmsKeyId?: string;
|
|
1872
|
-
}
|
|
1873
|
-
export interface CreateFlowDefinitionRequest {
|
|
1874
|
-
FlowDefinitionName: string | undefined;
|
|
1875
|
-
HumanLoopRequestSource?: HumanLoopRequestSource;
|
|
1876
|
-
HumanLoopActivationConfig?: HumanLoopActivationConfig;
|
|
1877
|
-
HumanLoopConfig: HumanLoopConfig | undefined;
|
|
1878
|
-
OutputConfig: FlowDefinitionOutputConfig | undefined;
|
|
1879
|
-
RoleArn: string | undefined;
|
|
1880
|
-
Tags?: Tag[];
|
|
1881
|
-
}
|
|
1882
|
-
export interface CreateFlowDefinitionResponse {
|
|
1883
|
-
FlowDefinitionArn: string | undefined;
|
|
1884
|
-
}
|
|
1885
|
-
export interface UiTemplate {
|
|
1886
|
-
Content: string | undefined;
|
|
1887
|
-
}
|
|
1888
|
-
export interface CreateHumanTaskUiRequest {
|
|
1889
|
-
HumanTaskUiName: string | undefined;
|
|
1890
|
-
UiTemplate: UiTemplate | undefined;
|
|
1891
|
-
Tags?: Tag[];
|
|
1892
|
-
}
|
|
1893
|
-
export interface CreateHumanTaskUiResponse {
|
|
1894
|
-
HumanTaskUiArn: string | undefined;
|
|
1895
|
-
}
|
|
1896
|
-
export interface IntegerParameterRange {
|
|
1897
|
-
Name: string | undefined;
|
|
1898
|
-
MinValue: string | undefined;
|
|
1899
|
-
MaxValue: string | undefined;
|
|
1900
|
-
ScalingType?: HyperParameterScalingType | string;
|
|
1901
|
-
}
|
|
1902
1963
|
export declare const ActionSourceFilterSensitiveLog: (obj: ActionSource) => any;
|
|
1903
1964
|
export declare const ActionSummaryFilterSensitiveLog: (
|
|
1904
1965
|
obj: ActionSummary
|
|
@@ -2164,6 +2225,21 @@ export declare const CheckpointConfigFilterSensitiveLog: (
|
|
|
2164
2225
|
export declare const ClarifyCheckStepMetadataFilterSensitiveLog: (
|
|
2165
2226
|
obj: ClarifyCheckStepMetadata
|
|
2166
2227
|
) => any;
|
|
2228
|
+
export declare const ClarifyInferenceConfigFilterSensitiveLog: (
|
|
2229
|
+
obj: ClarifyInferenceConfig
|
|
2230
|
+
) => any;
|
|
2231
|
+
export declare const ClarifyShapBaselineConfigFilterSensitiveLog: (
|
|
2232
|
+
obj: ClarifyShapBaselineConfig
|
|
2233
|
+
) => any;
|
|
2234
|
+
export declare const ClarifyTextConfigFilterSensitiveLog: (
|
|
2235
|
+
obj: ClarifyTextConfig
|
|
2236
|
+
) => any;
|
|
2237
|
+
export declare const ClarifyShapConfigFilterSensitiveLog: (
|
|
2238
|
+
obj: ClarifyShapConfig
|
|
2239
|
+
) => any;
|
|
2240
|
+
export declare const ClarifyExplainerConfigFilterSensitiveLog: (
|
|
2241
|
+
obj: ClarifyExplainerConfig
|
|
2242
|
+
) => any;
|
|
2167
2243
|
export declare const GitConfigFilterSensitiveLog: (obj: GitConfig) => any;
|
|
2168
2244
|
export declare const CodeRepositorySummaryFilterSensitiveLog: (
|
|
2169
2245
|
obj: CodeRepositorySummary
|
|
@@ -2406,6 +2482,9 @@ export declare const CreateEndpointOutputFilterSensitiveLog: (
|
|
|
2406
2482
|
export declare const DataCaptureConfigFilterSensitiveLog: (
|
|
2407
2483
|
obj: DataCaptureConfig
|
|
2408
2484
|
) => any;
|
|
2485
|
+
export declare const ExplainerConfigFilterSensitiveLog: (
|
|
2486
|
+
obj: ExplainerConfig
|
|
2487
|
+
) => any;
|
|
2409
2488
|
export declare const ProductionVariantCoreDumpConfigFilterSensitiveLog: (
|
|
2410
2489
|
obj: ProductionVariantCoreDumpConfig
|
|
2411
2490
|
) => any;
|
|
@@ -2461,28 +2540,3 @@ export declare const USDFilterSensitiveLog: (obj: USD) => any;
|
|
|
2461
2540
|
export declare const PublicWorkforceTaskPriceFilterSensitiveLog: (
|
|
2462
2541
|
obj: PublicWorkforceTaskPrice
|
|
2463
2542
|
) => any;
|
|
2464
|
-
export declare const HumanLoopConfigFilterSensitiveLog: (
|
|
2465
|
-
obj: HumanLoopConfig
|
|
2466
|
-
) => any;
|
|
2467
|
-
export declare const HumanLoopRequestSourceFilterSensitiveLog: (
|
|
2468
|
-
obj: HumanLoopRequestSource
|
|
2469
|
-
) => any;
|
|
2470
|
-
export declare const FlowDefinitionOutputConfigFilterSensitiveLog: (
|
|
2471
|
-
obj: FlowDefinitionOutputConfig
|
|
2472
|
-
) => any;
|
|
2473
|
-
export declare const CreateFlowDefinitionRequestFilterSensitiveLog: (
|
|
2474
|
-
obj: CreateFlowDefinitionRequest
|
|
2475
|
-
) => any;
|
|
2476
|
-
export declare const CreateFlowDefinitionResponseFilterSensitiveLog: (
|
|
2477
|
-
obj: CreateFlowDefinitionResponse
|
|
2478
|
-
) => any;
|
|
2479
|
-
export declare const UiTemplateFilterSensitiveLog: (obj: UiTemplate) => any;
|
|
2480
|
-
export declare const CreateHumanTaskUiRequestFilterSensitiveLog: (
|
|
2481
|
-
obj: CreateHumanTaskUiRequest
|
|
2482
|
-
) => any;
|
|
2483
|
-
export declare const CreateHumanTaskUiResponseFilterSensitiveLog: (
|
|
2484
|
-
obj: CreateHumanTaskUiResponse
|
|
2485
|
-
) => any;
|
|
2486
|
-
export declare const IntegerParameterRangeFilterSensitiveLog: (
|
|
2487
|
-
obj: IntegerParameterRange
|
|
2488
|
-
) => any;
|
|
@@ -26,6 +26,7 @@ import {
|
|
|
26
26
|
AutoMLJobStatus,
|
|
27
27
|
AutoMLOutputDataConfig,
|
|
28
28
|
AutoMLPartialFailureReason,
|
|
29
|
+
AwsManagedHumanLoopRequestSource,
|
|
29
30
|
BatchStrategy,
|
|
30
31
|
Bias,
|
|
31
32
|
CaptureStatus,
|
|
@@ -41,7 +42,6 @@ import {
|
|
|
41
42
|
ContentClassifier,
|
|
42
43
|
ContextSource,
|
|
43
44
|
ContinuousParameterRange,
|
|
44
|
-
DataCaptureConfig,
|
|
45
45
|
DataQualityAppSpecification,
|
|
46
46
|
DataQualityBaselineConfig,
|
|
47
47
|
DataQualityJobInput,
|
|
@@ -53,11 +53,13 @@ import {
|
|
|
53
53
|
EdgeOutputConfig,
|
|
54
54
|
EdgePresetDeploymentType,
|
|
55
55
|
EndpointInput,
|
|
56
|
+
ExplainerConfig,
|
|
56
57
|
GitConfig,
|
|
58
|
+
HumanLoopActivationConfig,
|
|
59
|
+
HyperParameterScalingType,
|
|
57
60
|
HyperParameterTuningJobObjective,
|
|
58
61
|
InferenceSpecification,
|
|
59
62
|
InputConfig,
|
|
60
|
-
IntegerParameterRange,
|
|
61
63
|
KernelGatewayImageConfig,
|
|
62
64
|
MetadataProperties,
|
|
63
65
|
MetricDefinition,
|
|
@@ -78,7 +80,6 @@ import {
|
|
|
78
80
|
ProcessingS3DataDistributionType,
|
|
79
81
|
ProcessingS3InputMode,
|
|
80
82
|
ProcessingS3UploadMode,
|
|
81
|
-
ProductionVariant,
|
|
82
83
|
ProductionVariantAcceleratorType,
|
|
83
84
|
ProductionVariantInstanceType,
|
|
84
85
|
ProductionVariantServerlessConfig,
|
|
@@ -98,6 +99,56 @@ import {
|
|
|
98
99
|
UserSettings,
|
|
99
100
|
VpcConfig,
|
|
100
101
|
} from "./models_0";
|
|
102
|
+
export interface HumanLoopConfig {
|
|
103
|
+
WorkteamArn: string | undefined;
|
|
104
|
+
HumanTaskUiArn: string | undefined;
|
|
105
|
+
TaskTitle: string | undefined;
|
|
106
|
+
TaskDescription: string | undefined;
|
|
107
|
+
TaskCount: number | undefined;
|
|
108
|
+
TaskAvailabilityLifetimeInSeconds?: number;
|
|
109
|
+
TaskTimeLimitInSeconds?: number;
|
|
110
|
+
TaskKeywords?: string[];
|
|
111
|
+
PublicWorkforceTaskPrice?: PublicWorkforceTaskPrice;
|
|
112
|
+
}
|
|
113
|
+
export interface HumanLoopRequestSource {
|
|
114
|
+
AwsManagedHumanLoopRequestSource:
|
|
115
|
+
| AwsManagedHumanLoopRequestSource
|
|
116
|
+
| string
|
|
117
|
+
| undefined;
|
|
118
|
+
}
|
|
119
|
+
export interface FlowDefinitionOutputConfig {
|
|
120
|
+
S3OutputPath: string | undefined;
|
|
121
|
+
KmsKeyId?: string;
|
|
122
|
+
}
|
|
123
|
+
export interface CreateFlowDefinitionRequest {
|
|
124
|
+
FlowDefinitionName: string | undefined;
|
|
125
|
+
HumanLoopRequestSource?: HumanLoopRequestSource;
|
|
126
|
+
HumanLoopActivationConfig?: HumanLoopActivationConfig;
|
|
127
|
+
HumanLoopConfig: HumanLoopConfig | undefined;
|
|
128
|
+
OutputConfig: FlowDefinitionOutputConfig | undefined;
|
|
129
|
+
RoleArn: string | undefined;
|
|
130
|
+
Tags?: Tag[];
|
|
131
|
+
}
|
|
132
|
+
export interface CreateFlowDefinitionResponse {
|
|
133
|
+
FlowDefinitionArn: string | undefined;
|
|
134
|
+
}
|
|
135
|
+
export interface UiTemplate {
|
|
136
|
+
Content: string | undefined;
|
|
137
|
+
}
|
|
138
|
+
export interface CreateHumanTaskUiRequest {
|
|
139
|
+
HumanTaskUiName: string | undefined;
|
|
140
|
+
UiTemplate: UiTemplate | undefined;
|
|
141
|
+
Tags?: Tag[];
|
|
142
|
+
}
|
|
143
|
+
export interface CreateHumanTaskUiResponse {
|
|
144
|
+
HumanTaskUiArn: string | undefined;
|
|
145
|
+
}
|
|
146
|
+
export interface IntegerParameterRange {
|
|
147
|
+
Name: string | undefined;
|
|
148
|
+
MinValue: string | undefined;
|
|
149
|
+
MaxValue: string | undefined;
|
|
150
|
+
ScalingType?: HyperParameterScalingType | string;
|
|
151
|
+
}
|
|
101
152
|
export interface ParameterRanges {
|
|
102
153
|
IntegerParameterRanges?: IntegerParameterRange[];
|
|
103
154
|
ContinuousParameterRanges?: ContinuousParameterRange[];
|
|
@@ -1761,62 +1812,36 @@ export interface DescribeEndpointOutput {
|
|
|
1761
1812
|
LastDeploymentConfig?: DeploymentConfig;
|
|
1762
1813
|
AsyncInferenceConfig?: AsyncInferenceConfig;
|
|
1763
1814
|
PendingDeploymentSummary?: PendingDeploymentSummary;
|
|
1815
|
+
ExplainerConfig?: ExplainerConfig;
|
|
1764
1816
|
}
|
|
1765
1817
|
export interface DescribeEndpointConfigInput {
|
|
1766
1818
|
EndpointConfigName: string | undefined;
|
|
1767
1819
|
}
|
|
1768
|
-
export
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
export
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
export
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
export
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
LastModifiedBy?: UserContext;
|
|
1794
|
-
}
|
|
1795
|
-
export interface DescribeFeatureGroupRequest {
|
|
1796
|
-
FeatureGroupName: string | undefined;
|
|
1797
|
-
NextToken?: string;
|
|
1798
|
-
}
|
|
1799
|
-
export declare enum FeatureGroupStatus {
|
|
1800
|
-
CREATED = "Created",
|
|
1801
|
-
CREATE_FAILED = "CreateFailed",
|
|
1802
|
-
CREATING = "Creating",
|
|
1803
|
-
DELETE_FAILED = "DeleteFailed",
|
|
1804
|
-
DELETING = "Deleting",
|
|
1805
|
-
}
|
|
1806
|
-
export declare enum LastUpdateStatusValue {
|
|
1807
|
-
FAILED = "Failed",
|
|
1808
|
-
IN_PROGRESS = "InProgress",
|
|
1809
|
-
SUCCESSFUL = "Successful",
|
|
1810
|
-
}
|
|
1811
|
-
export interface LastUpdateStatus {
|
|
1812
|
-
Status: LastUpdateStatusValue | string | undefined;
|
|
1813
|
-
FailureReason?: string;
|
|
1814
|
-
}
|
|
1815
|
-
export declare enum OfflineStoreStatusValue {
|
|
1816
|
-
ACTIVE = "Active",
|
|
1817
|
-
BLOCKED = "Blocked",
|
|
1818
|
-
DISABLED = "Disabled",
|
|
1819
|
-
}
|
|
1820
|
+
export declare const HumanLoopConfigFilterSensitiveLog: (
|
|
1821
|
+
obj: HumanLoopConfig
|
|
1822
|
+
) => any;
|
|
1823
|
+
export declare const HumanLoopRequestSourceFilterSensitiveLog: (
|
|
1824
|
+
obj: HumanLoopRequestSource
|
|
1825
|
+
) => any;
|
|
1826
|
+
export declare const FlowDefinitionOutputConfigFilterSensitiveLog: (
|
|
1827
|
+
obj: FlowDefinitionOutputConfig
|
|
1828
|
+
) => any;
|
|
1829
|
+
export declare const CreateFlowDefinitionRequestFilterSensitiveLog: (
|
|
1830
|
+
obj: CreateFlowDefinitionRequest
|
|
1831
|
+
) => any;
|
|
1832
|
+
export declare const CreateFlowDefinitionResponseFilterSensitiveLog: (
|
|
1833
|
+
obj: CreateFlowDefinitionResponse
|
|
1834
|
+
) => any;
|
|
1835
|
+
export declare const UiTemplateFilterSensitiveLog: (obj: UiTemplate) => any;
|
|
1836
|
+
export declare const CreateHumanTaskUiRequestFilterSensitiveLog: (
|
|
1837
|
+
obj: CreateHumanTaskUiRequest
|
|
1838
|
+
) => any;
|
|
1839
|
+
export declare const CreateHumanTaskUiResponseFilterSensitiveLog: (
|
|
1840
|
+
obj: CreateHumanTaskUiResponse
|
|
1841
|
+
) => any;
|
|
1842
|
+
export declare const IntegerParameterRangeFilterSensitiveLog: (
|
|
1843
|
+
obj: IntegerParameterRange
|
|
1844
|
+
) => any;
|
|
1820
1845
|
export declare const ParameterRangesFilterSensitiveLog: (
|
|
1821
1846
|
obj: ParameterRanges
|
|
1822
1847
|
) => any;
|
|
@@ -2584,21 +2609,3 @@ export declare const DescribeEndpointOutputFilterSensitiveLog: (
|
|
|
2584
2609
|
export declare const DescribeEndpointConfigInputFilterSensitiveLog: (
|
|
2585
2610
|
obj: DescribeEndpointConfigInput
|
|
2586
2611
|
) => any;
|
|
2587
|
-
export declare const DescribeEndpointConfigOutputFilterSensitiveLog: (
|
|
2588
|
-
obj: DescribeEndpointConfigOutput
|
|
2589
|
-
) => any;
|
|
2590
|
-
export declare const DescribeExperimentRequestFilterSensitiveLog: (
|
|
2591
|
-
obj: DescribeExperimentRequest
|
|
2592
|
-
) => any;
|
|
2593
|
-
export declare const ExperimentSourceFilterSensitiveLog: (
|
|
2594
|
-
obj: ExperimentSource
|
|
2595
|
-
) => any;
|
|
2596
|
-
export declare const DescribeExperimentResponseFilterSensitiveLog: (
|
|
2597
|
-
obj: DescribeExperimentResponse
|
|
2598
|
-
) => any;
|
|
2599
|
-
export declare const DescribeFeatureGroupRequestFilterSensitiveLog: (
|
|
2600
|
-
obj: DescribeFeatureGroupRequest
|
|
2601
|
-
) => any;
|
|
2602
|
-
export declare const LastUpdateStatusFilterSensitiveLog: (
|
|
2603
|
-
obj: LastUpdateStatus
|
|
2604
|
-
) => any;
|