@aws-sdk/client-sagemaker 3.171.0 → 3.172.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.
Files changed (30) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist-cjs/commands/DescribeFeatureMetadataCommand.js +2 -1
  3. package/dist-cjs/commands/ListNotebookInstanceLifecycleConfigsCommand.js +2 -1
  4. package/dist-cjs/models/models_0.js +1 -0
  5. package/dist-cjs/models/models_1.js +15 -15
  6. package/dist-cjs/models/models_2.js +13 -15
  7. package/dist-cjs/models/models_3.js +14 -4
  8. package/dist-cjs/protocols/Aws_json1_1.js +32 -0
  9. package/dist-es/commands/DescribeFeatureMetadataCommand.js +2 -1
  10. package/dist-es/commands/ListNotebookInstanceLifecycleConfigsCommand.js +2 -1
  11. package/dist-es/models/models_0.js +1 -0
  12. package/dist-es/models/models_1.js +2 -2
  13. package/dist-es/models/models_2.js +2 -7
  14. package/dist-es/models/models_3.js +7 -0
  15. package/dist-es/protocols/Aws_json1_1.js +28 -2
  16. package/dist-types/SageMaker.d.ts +1 -2
  17. package/dist-types/commands/CreateAppCommand.d.ts +1 -2
  18. package/dist-types/commands/DescribeFeatureMetadataCommand.d.ts +2 -1
  19. package/dist-types/commands/ListNotebookInstanceLifecycleConfigsCommand.d.ts +2 -1
  20. package/dist-types/models/models_0.d.ts +3 -4
  21. package/dist-types/models/models_1.d.ts +95 -60
  22. package/dist-types/models/models_2.d.ts +59 -27
  23. package/dist-types/models/models_3.d.ts +23 -2
  24. package/dist-types/ts3.4/commands/DescribeFeatureMetadataCommand.d.ts +2 -4
  25. package/dist-types/ts3.4/commands/ListNotebookInstanceLifecycleConfigsCommand.d.ts +2 -4
  26. package/dist-types/ts3.4/models/models_0.d.ts +1 -0
  27. package/dist-types/ts3.4/models/models_1.d.ts +14 -21
  28. package/dist-types/ts3.4/models/models_2.d.ts +20 -13
  29. package/dist-types/ts3.4/models/models_3.d.ts +14 -2
  30. package/package.json +1 -1
@@ -7,8 +7,7 @@ export interface CreateAppCommandInput extends CreateAppRequest {
7
7
  export interface CreateAppCommandOutput extends CreateAppResponse, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Creates a running app for the specified UserProfile. Supported apps are
11
- * <code>JupyterServer</code> and <code>KernelGateway</code>. This operation is automatically
10
+ * <p>Creates a running app for the specified UserProfile. This operation is automatically
12
11
  * invoked by Amazon SageMaker Studio upon access to the associated Domain, and when new kernel
13
12
  * configurations are selected by the user. A user may have multiple Apps active simultaneously.</p>
14
13
  * @example
@@ -1,6 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { DescribeFeatureMetadataRequest, DescribeFeatureMetadataResponse } from "../models/models_1";
3
+ import { DescribeFeatureMetadataRequest } from "../models/models_1";
4
+ import { DescribeFeatureMetadataResponse } from "../models/models_2";
4
5
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
6
  export interface DescribeFeatureMetadataCommandInput extends DescribeFeatureMetadataRequest {
6
7
  }
@@ -1,6 +1,7 @@
1
1
  import { Command as $Command } from "@aws-sdk/smithy-client";
2
2
  import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { ListNotebookInstanceLifecycleConfigsInput, ListNotebookInstanceLifecycleConfigsOutput } from "../models/models_2";
3
+ import { ListNotebookInstanceLifecycleConfigsInput } from "../models/models_2";
4
+ import { ListNotebookInstanceLifecycleConfigsOutput } from "../models/models_3";
4
5
  import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient";
5
6
  export interface ListNotebookInstanceLifecycleConfigsCommandInput extends ListNotebookInstanceLifecycleConfigsInput {
6
7
  }
@@ -5517,8 +5517,7 @@ export interface CreateAppRequest {
5517
5517
  */
5518
5518
  UserProfileName: string | undefined;
5519
5519
  /**
5520
- * <p>The type of app. Supported apps are <code>JupyterServer</code> and
5521
- * <code>KernelGateway</code>. <code>TensorBoard</code> is not supported.</p>
5520
+ * <p>The type of app.</p>
5522
5521
  */
5523
5522
  AppType: AppType | string | undefined;
5524
5523
  /**
@@ -7249,8 +7248,7 @@ export interface DomainSettings {
7249
7248
  */
7250
7249
  RStudioServerProDomainSettings?: RStudioServerProDomainSettings;
7251
7250
  /**
7252
- * <p>The configuration for attaching a SageMaker user profile name to the execution role as a <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html">
7253
- * <code>sts:SourceIdentity</code> key</a>.</p>
7251
+ * <p>The configuration for attaching a SageMaker user profile name to the execution role as a <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html">sts:SourceIdentity key</a>.</p>
7254
7252
  */
7255
7253
  ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig | string;
7256
7254
  }
@@ -9048,6 +9046,7 @@ export interface ResourceLimits {
9048
9046
  }
9049
9047
  export declare enum HyperParameterTuningJobStrategyType {
9050
9048
  BAYESIAN = "Bayesian",
9049
+ HYPERBAND = "Hyperband",
9051
9050
  RANDOM = "Random"
9052
9051
  }
9053
9052
  /**
@@ -1,4 +1,79 @@
1
- import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AnnotationConsolidationConfig, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppStatus, AppType, ArtifactSource, AsyncInferenceConfig, AthenaDatasetDefinition, AuthMode, AutoMLCandidate, AutoMLChannel, AutoMLJobArtifacts, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, BatchStrategy, Bias, CaptureStatus, CategoricalParameter, Channel, CheckpointConfig, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, CompilationJobStatus, ContainerDefinition, ContentClassifier, ContextSource, DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DeploymentConfig, DeviceSelectionConfig, DomainSettings, EdgeDeploymentConfig, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInput, FeatureDefinition, FeatureType, GitConfig, HyperParameterTuningJobObjective, HyperParameterTuningJobStrategyType, InferenceSpecification, InputConfig, KernelGatewayImageConfig, MetadataProperties, MetricDefinition, MetricsSource, ModelApprovalStatus, ModelDeployConfig, MonitoringConstraintsResource, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStatisticsResource, MonitoringStoppingCondition, NeoVpcConfig, OfflineStoreConfig, OnlineStoreConfig, OutputConfig, OutputDataConfig, ParameterRanges, ProblemType, ProcessingInstanceType, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProcessingS3UploadMode, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantInstanceType, ProductionVariantServerlessConfig, PublicWorkforceTaskPrice, ResourceConfig, ResourceLimits, ResourceSpec, StoppingCondition, Tag, TrainingInputMode, TrainingInstanceType, TrainingSpecification, TransformInput, TransformJobDefinition, TransformOutput, TransformResources, UserContext, UserSettings, VpcConfig } from "./models_0";
1
+ import { ActionSource, ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AlgorithmStatus, AlgorithmStatusDetails, AlgorithmValidationSpecification, AnnotationConsolidationConfig, AppNetworkAccessType, AppSecurityGroupManagement, AppSpecification, AppStatus, AppType, ArtifactSource, AsyncInferenceConfig, AthenaDatasetDefinition, AuthMode, AutoMLCandidate, AutoMLChannel, AutoMLJobArtifacts, AutoMLJobCompletionCriteria, AutoMLJobConfig, AutoMLJobObjective, AutoMLJobSecondaryStatus, AutoMLJobStatus, AutoMLOutputDataConfig, AutoMLPartialFailureReason, BatchStrategy, Bias, CaptureStatus, CategoricalParameter, Channel, CheckpointConfig, CognitoConfig, CognitoMemberDefinition, CollectionConfiguration, CompilationJobStatus, ContainerDefinition, ContentClassifier, ContextSource, DataCaptureConfig, DataQualityAppSpecification, DataQualityBaselineConfig, DataQualityJobInput, DeploymentConfig, DeviceSelectionConfig, DomainSettings, EdgeDeploymentConfig, EdgeDeploymentModelConfig, EdgeOutputConfig, EdgePresetDeploymentType, EndpointInput, FeatureDefinition, GitConfig, HyperParameterTuningJobObjective, HyperParameterTuningJobStrategyType, InferenceSpecification, InputConfig, KernelGatewayImageConfig, MetadataProperties, MetricDefinition, MetricsSource, ModelApprovalStatus, ModelDeployConfig, MonitoringConstraintsResource, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStatisticsResource, MonitoringStoppingCondition, NeoVpcConfig, OfflineStoreConfig, OnlineStoreConfig, OutputConfig, OutputDataConfig, ParameterRanges, ProblemType, ProcessingInstanceType, ProcessingS3DataDistributionType, ProcessingS3InputMode, ProcessingS3UploadMode, ProductionVariant, ProductionVariantAcceleratorType, ProductionVariantInstanceType, ProductionVariantServerlessConfig, PublicWorkforceTaskPrice, ResourceConfig, ResourceLimits, ResourceSpec, StoppingCondition, Tag, TrainingInputMode, TrainingInstanceType, TrainingSpecification, TransformInput, TransformJobDefinition, TransformOutput, TransformResources, UserContext, UserSettings, VpcConfig } from "./models_0";
2
+ /**
3
+ * <p>The configuration for <code>Hyperband</code>, a multi-fidelity based hyperparameter
4
+ * tuning strategy. <code>Hyperband</code> uses the final and intermediate results of a
5
+ * training job to dynamically allocate resources to utilized hyperparameter configurations
6
+ * while automatically stopping under-performing configurations. This parameter should be
7
+ * provided only if <code>Hyperband</code> is selected as the <code>StrategyConfig</code>
8
+ * under the <code>HyperParameterTuningJobConfig</code> API.</p>
9
+ */
10
+ export interface HyperbandStrategyConfig {
11
+ /**
12
+ * <p>The minimum number of resources (such as epochs) that can be used by a training job
13
+ * launched by a hyperparameter tuning job. If the value for <code>MinResource</code> has not
14
+ * been reached, the training job will not be stopped by <code>Hyperband</code>.</p>
15
+ */
16
+ MinResource?: number;
17
+ /**
18
+ * <p>The maximum number of resources (such as epochs) that can be used by a training job
19
+ * launched by a hyperparameter tuning job. Once a job reaches the <code>MaxResource</code>
20
+ * value, it is stopped. If a value for <code>MaxResource</code> is not provided, and
21
+ * <code>Hyperband</code> is selected as the hyperparameter tuning strategy,
22
+ * <code>HyperbandTrainingJ</code> attempts to infer <code>MaxResource</code> from the
23
+ * following keys (if present) in <a href="https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_HyperParameterTrainingJobDefinition.html#sagemaker-Type-HyperParameterTrainingJobDefinition-StaticHyperParameters">StaticsHyperParameters</a>:</p>
24
+ * <ul>
25
+ * <li>
26
+ * <p>
27
+ * <code>epochs</code>
28
+ * </p>
29
+ * </li>
30
+ * <li>
31
+ * <p>
32
+ * <code>numepochs</code>
33
+ * </p>
34
+ * </li>
35
+ * <li>
36
+ * <p>
37
+ * <code>n-epochs</code>
38
+ * </p>
39
+ * </li>
40
+ * <li>
41
+ * <p>
42
+ * <code>n_epochs</code>
43
+ * </p>
44
+ * </li>
45
+ * <li>
46
+ * <p>
47
+ * <code>num_epochs</code>
48
+ * </p>
49
+ * </li>
50
+ * </ul>
51
+ * <p>If <code>HyperbandStrategyConfig</code> is unable to infer a value for
52
+ * <code>MaxResource</code>, it generates a validation error. The maximum value is 20,000
53
+ * epochs. All metrics that correspond to an objective metric are used to derive <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/automatic-model-tuning-early-stopping.html">early stopping
54
+ * decisions</a>. For <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/distributed-training.html">distributive</a> training jobs,
55
+ * ensure that duplicate metrics are not printed in the logs across the individual nodes in a
56
+ * training job. If multiple nodes are publishing duplicate or incorrect metrics, training
57
+ * jobs may make an incorrect stopping decision and stop the job prematurely. </p>
58
+ */
59
+ MaxResource?: number;
60
+ }
61
+ /**
62
+ * <p>The configuration for a training job launched by a hyperparameter tuning job. Choose
63
+ * <code>Bayesian</code> for Bayesian optimization, and <code>Random</code> for random
64
+ * search optimization. For more advanced use cases, use <code>Hyperband</code>, which
65
+ * evaluates objective metrics for training jobs after every epoch. For more information about
66
+ * strategies, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/automatic-model-tuning-how-it-works.html">How Hyperparameter
67
+ * Tuning Works</a>.</p>
68
+ */
69
+ export interface HyperParameterTuningJobStrategyConfig {
70
+ /**
71
+ * <p>The configuration for the object that specifies the <code>Hyperband</code> strategy.
72
+ * This parameter is only supported for the <code>Hyperband</code> selection for
73
+ * <code>Strategy</code> within the <code>HyperParameterTuningJobConfig</code> API.</p>
74
+ */
75
+ HyperbandStrategyConfig?: HyperbandStrategyConfig;
76
+ }
2
77
  export declare enum TrainingJobEarlyStoppingType {
3
78
  AUTO = "Auto",
4
79
  OFF = "Off"
@@ -18,12 +93,17 @@ export interface TuningJobCompletionCriteria {
18
93
  export interface HyperParameterTuningJobConfig {
19
94
  /**
20
95
  * <p>Specifies how hyperparameter tuning chooses the combinations of hyperparameter values
21
- * to use for the training job it launches. To use the Bayesian search strategy, set this
22
- * to <code>Bayesian</code>. To randomly search, set it to <code>Random</code>. For
23
- * information about search strategies, see <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/automatic-model-tuning-how-it-works.html">How
96
+ * to use for the training job it launches. For information about search strategies, see
97
+ * <a href="https://docs.aws.amazon.com/sagemaker/latest/dg/automatic-model-tuning-how-it-works.html">How
24
98
  * Hyperparameter Tuning Works</a>.</p>
25
99
  */
26
100
  Strategy: HyperParameterTuningJobStrategyType | string | undefined;
101
+ /**
102
+ * <p>The configuration for the <code>Hyperband</code> optimization strategy. This parameter
103
+ * should be provided only if <code>Hyperband</code> is selected as the strategy for
104
+ * <code>HyperParameterTuningJobConfig</code>.</p>
105
+ */
106
+ StrategyConfig?: HyperParameterTuningJobStrategyConfig;
27
107
  /**
28
108
  * <p>The <a>HyperParameterTuningJobObjective</a> object that specifies the
29
109
  * objective
@@ -45,8 +125,10 @@ export interface HyperParameterTuningJobConfig {
45
125
  ParameterRanges?: ParameterRanges;
46
126
  /**
47
127
  * <p>Specifies whether to use early stopping for training jobs launched by the
48
- * hyperparameter tuning job. This can be one of the following values (the default value is
49
- * <code>OFF</code>):</p>
128
+ * hyperparameter tuning job. Because the <code>Hyperband</code> strategy has its own
129
+ * advanced internal early stopping mechanism,
130
+ * <code>TrainingJobEarlyStoppingType</code> must be <code>OFF</code> to use <code>Hyperband</code>. This parameter can take on one of the following values (the
131
+ * default value is <code>OFF</code>):</p>
50
132
  * <dl>
51
133
  * <dt>OFF</dt>
52
134
  * <dd>
@@ -2620,7 +2702,7 @@ export interface HumanTaskConfig {
2620
2702
  /**
2621
2703
  * <p>Defines the maximum number of data objects that can be labeled by human workers at the
2622
2704
  * same time. Also referred to as batch size. Each object may have more than one worker at one time.
2623
- * The default value is 1000 objects.</p>
2705
+ * The default value is 1000 objects. To increase the maximum value to 5000 objects, contact Amazon Web Services Support.</p>
2624
2706
  */
2625
2707
  MaxConcurrentTaskCount?: number;
2626
2708
  /**
@@ -8041,52 +8123,13 @@ export interface DescribeFeatureMetadataRequest {
8041
8123
  FeatureName: string | undefined;
8042
8124
  }
8043
8125
  /**
8044
- * <p>A key-value pair that you specify to describe the feature.</p>
8126
+ * @internal
8045
8127
  */
8046
- export interface FeatureParameter {
8047
- /**
8048
- * <p>A key that must contain a value to describe the feature.</p>
8049
- */
8050
- Key?: string;
8051
- /**
8052
- * <p>The value that belongs to a key.</p>
8053
- */
8054
- Value?: string;
8055
- }
8056
- export interface DescribeFeatureMetadataResponse {
8057
- /**
8058
- * <p>The Amazon Resource Number (ARN) of the feature group that contains the feature.</p>
8059
- */
8060
- FeatureGroupArn: string | undefined;
8061
- /**
8062
- * <p>The name of the feature group that you've specified.</p>
8063
- */
8064
- FeatureGroupName: string | undefined;
8065
- /**
8066
- * <p>The name of the feature that you've specified.</p>
8067
- */
8068
- FeatureName: string | undefined;
8069
- /**
8070
- * <p>The data type of the feature.</p>
8071
- */
8072
- FeatureType: FeatureType | string | undefined;
8073
- /**
8074
- * <p>A timestamp indicating when the feature was created.</p>
8075
- */
8076
- CreationTime: Date | undefined;
8077
- /**
8078
- * <p>A timestamp indicating when the metadata for the feature group was modified. For example, if you add a parameter describing the feature, the timestamp changes to reflect the last time you </p>
8079
- */
8080
- LastModifiedTime: Date | undefined;
8081
- /**
8082
- * <p>The description you added to describe the feature.</p>
8083
- */
8084
- Description?: string;
8085
- /**
8086
- * <p>The key-value pairs that you added to describe the feature.</p>
8087
- */
8088
- Parameters?: FeatureParameter[];
8089
- }
8128
+ export declare const HyperbandStrategyConfigFilterSensitiveLog: (obj: HyperbandStrategyConfig) => any;
8129
+ /**
8130
+ * @internal
8131
+ */
8132
+ export declare const HyperParameterTuningJobStrategyConfigFilterSensitiveLog: (obj: HyperParameterTuningJobStrategyConfig) => any;
8090
8133
  /**
8091
8134
  * @internal
8092
8135
  */
@@ -9151,11 +9194,3 @@ export declare const DescribeFeatureGroupResponseFilterSensitiveLog: (obj: Descr
9151
9194
  * @internal
9152
9195
  */
9153
9196
  export declare const DescribeFeatureMetadataRequestFilterSensitiveLog: (obj: DescribeFeatureMetadataRequest) => any;
9154
- /**
9155
- * @internal
9156
- */
9157
- export declare const FeatureParameterFilterSensitiveLog: (obj: FeatureParameter) => any;
9158
- /**
9159
- * @internal
9160
- */
9161
- export declare const DescribeFeatureMetadataResponseFilterSensitiveLog: (obj: DescribeFeatureMetadataResponse) => any;
@@ -1,5 +1,52 @@
1
1
  import { ActionSummary, AdditionalInferenceSpecificationDefinition, AgentVersion, AlgorithmSortBy, AlgorithmSpecification, AlgorithmSummary, AppDetails, AppImageConfigDetails, AppImageConfigSortKey, AppSortKey, AppSpecification, ArtifactSummary, AssociationEdgeType, AssociationSummary, AutoMLCandidate, AutoMLJobStatus, AutoMLJobSummary, AutoMLSortBy, AutoMLSortOrder, BatchStrategy, CandidateSortBy, CandidateStatus, Channel, CheckpointConfig, CodeRepositorySortBy, CodeRepositorySortOrder, CodeRepositorySummary, CognitoConfig, CompilationJobStatus, CompilationJobSummary, ContainerDefinition, ContextSummary, EdgeOutputConfig, ExecutionRoleIdentityConfig, FeatureDefinition, FeatureType, FlowDefinitionOutputConfig, HumanLoopActivationConfig, HumanLoopConfig, HumanLoopRequestSource, HyperParameterTuningJobObjectiveType, HyperParameterTuningJobStrategyType, InferenceSpecification, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, MonitoringNetworkConfig, MonitoringOutputConfig, MonitoringResources, MonitoringStoppingCondition, ObjectiveStatus, OfflineStoreConfig, OnlineStoreConfig, OutputDataConfig, OutputParameter, ProductionVariantInstanceType, ResourceConfig, ResourceLimits, ResourceSpec, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UserContext, UserSettings, VpcConfig } from "./models_0";
2
- import { _InstanceType, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DirectInternetAccess, DomainStatus, DriftCheckBaselines, EdgePackagingJobStatus, EndpointStatus, ExperimentConfig, ExperimentSource, FeatureGroupStatus, FeatureParameter, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobWarmStartConfig, InferenceExecutionConfig, InstanceMetadataServiceConfiguration, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, LastUpdateStatus, MemberDefinition, ModelArtifacts, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelClientConfig, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelMetrics, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OfflineStoreStatus, OfflineStoreStatusValue, ParallelismConfiguration, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProductionVariantSummary, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, RetryStrategy, RootAccess, RuleEvaluationStatus, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus } from "./models_1";
2
+ import { _InstanceType, DataCaptureConfigSummary, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DirectInternetAccess, DomainStatus, DriftCheckBaselines, EdgePackagingJobStatus, EndpointStatus, ExperimentConfig, ExperimentSource, FeatureGroupStatus, HumanTaskConfig, HyperParameterTrainingJobDefinition, HyperParameterTuningJobConfig, HyperParameterTuningJobWarmStartConfig, InferenceExecutionConfig, InstanceMetadataServiceConfiguration, LabelingJobAlgorithmsConfig, LabelingJobInputConfig, LabelingJobOutputConfig, LabelingJobStoppingConditions, LastUpdateStatus, MemberDefinition, ModelArtifacts, ModelBiasAppSpecification, ModelBiasBaselineConfig, ModelBiasJobInput, ModelClientConfig, ModelExplainabilityAppSpecification, ModelExplainabilityBaselineConfig, ModelExplainabilityJobInput, ModelMetrics, ModelPackageValidationSpecification, ModelQualityAppSpecification, ModelQualityBaselineConfig, ModelQualityJobInput, MonitoringScheduleConfig, MonitoringType, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OfflineStoreStatus, OfflineStoreStatusValue, ParallelismConfiguration, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProductionVariantSummary, ProfilerConfig, ProfilerRuleConfiguration, RecommendationJobInputConfig, RecommendationJobStoppingConditions, RecommendationJobType, RetryStrategy, RootAccess, RuleEvaluationStatus, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus } from "./models_1";
3
+ /**
4
+ * <p>A key-value pair that you specify to describe the feature.</p>
5
+ */
6
+ export interface FeatureParameter {
7
+ /**
8
+ * <p>A key that must contain a value to describe the feature.</p>
9
+ */
10
+ Key?: string;
11
+ /**
12
+ * <p>The value that belongs to a key.</p>
13
+ */
14
+ Value?: string;
15
+ }
16
+ export interface DescribeFeatureMetadataResponse {
17
+ /**
18
+ * <p>The Amazon Resource Number (ARN) of the feature group that contains the feature.</p>
19
+ */
20
+ FeatureGroupArn: string | undefined;
21
+ /**
22
+ * <p>The name of the feature group that you've specified.</p>
23
+ */
24
+ FeatureGroupName: string | undefined;
25
+ /**
26
+ * <p>The name of the feature that you've specified.</p>
27
+ */
28
+ FeatureName: string | undefined;
29
+ /**
30
+ * <p>The data type of the feature.</p>
31
+ */
32
+ FeatureType: FeatureType | string | undefined;
33
+ /**
34
+ * <p>A timestamp indicating when the feature was created.</p>
35
+ */
36
+ CreationTime: Date | undefined;
37
+ /**
38
+ * <p>A timestamp indicating when the metadata for the feature group was modified. For example, if you add a parameter describing the feature, the timestamp changes to reflect the last time you </p>
39
+ */
40
+ LastModifiedTime: Date | undefined;
41
+ /**
42
+ * <p>The description you added to describe the feature.</p>
43
+ */
44
+ Description?: string;
45
+ /**
46
+ * <p>The key-value pairs that you added to describe the feature.</p>
47
+ */
48
+ Parameters?: FeatureParameter[];
49
+ }
3
50
  export interface DescribeFlowDefinitionRequest {
4
51
  /**
5
52
  * <p>The name of the flow definition.</p>
@@ -3545,8 +3592,7 @@ export interface DomainSettingsForUpdate {
3545
3592
  */
3546
3593
  RStudioServerProDomainSettingsForUpdate?: RStudioServerProDomainSettingsForUpdate;
3547
3594
  /**
3548
- * <p>The configuration for attaching a SageMaker user profile name to the execution role as a <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html">
3549
- * <code>sts:SourceIdentity</code> key</a>. This configuration can only be modified if there are no apps in the <code>InService</code> or <code>Pending</code> state.</p>
3595
+ * <p>The configuration for attaching a SageMaker user profile name to the execution role as a <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html">sts:SourceIdentity key</a>. This configuration can only be modified if there are no apps in the <code>InService</code> or <code>Pending</code> state.</p>
3550
3596
  */
3551
3597
  ExecutionRoleIdentityConfig?: ExecutionRoleIdentityConfig | string;
3552
3598
  }
@@ -4714,9 +4760,8 @@ export interface HyperParameterTuningJobSummary {
4714
4760
  /**
4715
4761
  * <p>Specifies the search strategy hyperparameter tuning uses to choose which
4716
4762
  * hyperparameters to
4717
- * use
4718
- * for each iteration. Currently, the only valid value is
4719
- * Bayesian.</p>
4763
+ * evaluate
4764
+ * at each iteration.</p>
4720
4765
  */
4721
4766
  Strategy: HyperParameterTuningJobStrategyType | string | undefined;
4722
4767
  /**
@@ -7376,23 +7421,14 @@ export interface NotebookInstanceLifecycleConfigSummary {
7376
7421
  */
7377
7422
  LastModifiedTime?: Date;
7378
7423
  }
7379
- export interface ListNotebookInstanceLifecycleConfigsOutput {
7380
- /**
7381
- * <p>If the response is truncated, SageMaker returns this token. To get the next set of
7382
- * lifecycle configurations, use it in the next request. </p>
7383
- */
7384
- NextToken?: string;
7385
- /**
7386
- * <p>An array of <code>NotebookInstanceLifecycleConfiguration</code> objects, each listing
7387
- * a lifecycle configuration.</p>
7388
- */
7389
- NotebookInstanceLifecycleConfigs?: NotebookInstanceLifecycleConfigSummary[];
7390
- }
7391
- export declare enum NotebookInstanceSortKey {
7392
- CREATION_TIME = "CreationTime",
7393
- NAME = "Name",
7394
- STATUS = "Status"
7395
- }
7424
+ /**
7425
+ * @internal
7426
+ */
7427
+ export declare const FeatureParameterFilterSensitiveLog: (obj: FeatureParameter) => any;
7428
+ /**
7429
+ * @internal
7430
+ */
7431
+ export declare const DescribeFeatureMetadataResponseFilterSensitiveLog: (obj: DescribeFeatureMetadataResponse) => any;
7396
7432
  /**
7397
7433
  * @internal
7398
7434
  */
@@ -8337,7 +8373,3 @@ export declare const ListNotebookInstanceLifecycleConfigsInputFilterSensitiveLog
8337
8373
  * @internal
8338
8374
  */
8339
8375
  export declare const NotebookInstanceLifecycleConfigSummaryFilterSensitiveLog: (obj: NotebookInstanceLifecycleConfigSummary) => any;
8340
- /**
8341
- * @internal
8342
- */
8343
- export declare const ListNotebookInstanceLifecycleConfigsOutputFilterSensitiveLog: (obj: ListNotebookInstanceLifecycleConfigsOutput) => any;
@@ -1,6 +1,23 @@
1
1
  import { ActionStatus, AdditionalInferenceSpecificationDefinition, AlgorithmSpecification, AppSpecification, BatchStrategy, BooleanOperator, CacheHitResult, CallbackStepMetadata, Channel, CheckpointConfig, ClarifyCheckStepMetadata, ConditionStepMetadata, DeploymentConfig, EdgeOutputConfig, FeatureDefinition, InferenceSpecification, KernelGatewayImageConfig, MetadataProperties, ModelApprovalStatus, ModelPackageStatus, OutputDataConfig, OutputParameter, ResourceConfig, StoppingCondition, Tag, TransformInput, TransformOutput, TransformResources, UiTemplate, UserContext, UserSettings, VpcConfig } from "./models_0";
2
- import { _InstanceType, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DriftCheckBaselines, ExperimentConfig, FeatureParameter, InstanceMetadataServiceConfiguration, MemberDefinition, ModelArtifacts, ModelClientConfig, ModelMetrics, ModelPackageValidationSpecification, MonitoringScheduleConfig, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OidcConfig, ParallelismConfiguration, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerRuleConfiguration, ProvisioningParameter, RetryStrategy, RootAccess, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkforceVpcConfigRequest } from "./models_1";
3
- import { DesiredWeightAndCapacity, Device, DeviceDeploymentSummary, Direction, DomainSettingsForUpdate, Edge, EMRStepMetadata, Endpoint, Experiment, FailStepMetadata, FeatureGroup, FeatureMetadata, Filter, GitConfigForUpdate, HyperParameterTrainingJobSummary, HyperParameterTuningJobSearchEntity, LambdaStepMetadata, LineageType, MetricData, ModelPackageGroupStatus, ModelPackageStatusDetails, NotebookInstanceSortKey, NotebookInstanceStatus, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, ResourceType, SecondaryStatus, SecondaryStatusTransition, ServiceCatalogProvisionedProductDetails, SortBy, SortOrder, SubscribedWorkteam, TrainingJobStatus, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, Workforce, Workteam } from "./models_2";
2
+ import { _InstanceType, DataProcessing, DebugHookConfig, DebugRuleConfiguration, DebugRuleEvaluationStatus, DriftCheckBaselines, ExperimentConfig, InstanceMetadataServiceConfiguration, MemberDefinition, ModelArtifacts, ModelClientConfig, ModelMetrics, ModelPackageValidationSpecification, MonitoringScheduleConfig, NetworkConfig, NotebookInstanceAcceleratorType, NotebookInstanceLifecycleHook, NotificationConfiguration, OidcConfig, ParallelismConfiguration, PipelineDefinitionS3Location, ProcessingInput, ProcessingOutputConfig, ProcessingResources, ProcessingStoppingCondition, ProfilerRuleConfiguration, ProvisioningParameter, RetryStrategy, RootAccess, ServiceCatalogProvisioningDetails, SourceAlgorithmSpecification, SourceIpConfig, StudioLifecycleConfigAppType, TensorBoardOutputConfig, TrialComponentArtifact, TrialComponentParameterValue, TrialComponentStatus, WorkforceVpcConfigRequest } from "./models_1";
3
+ import { DesiredWeightAndCapacity, Device, DeviceDeploymentSummary, Direction, DomainSettingsForUpdate, Edge, EMRStepMetadata, Endpoint, Experiment, FailStepMetadata, FeatureGroup, FeatureMetadata, FeatureParameter, Filter, GitConfigForUpdate, HyperParameterTrainingJobSummary, HyperParameterTuningJobSearchEntity, LambdaStepMetadata, LineageType, MetricData, ModelPackageGroupStatus, ModelPackageStatusDetails, NotebookInstanceLifecycleConfigSummary, NotebookInstanceStatus, PipelineExecutionStatus, PipelineExperimentConfig, PipelineStatus, ProcessingJobStatus, ProjectStatus, ResourceType, SecondaryStatus, SecondaryStatusTransition, ServiceCatalogProvisionedProductDetails, SortBy, SortOrder, SubscribedWorkteam, TrainingJobStatus, TransformJobStatus, TrialComponentMetricSummary, TrialComponentSource, TrialSource, UserProfileStatus, Workforce, Workteam } from "./models_2";
4
+ export interface ListNotebookInstanceLifecycleConfigsOutput {
5
+ /**
6
+ * <p>If the response is truncated, SageMaker returns this token. To get the next set of
7
+ * lifecycle configurations, use it in the next request. </p>
8
+ */
9
+ NextToken?: string;
10
+ /**
11
+ * <p>An array of <code>NotebookInstanceLifecycleConfiguration</code> objects, each listing
12
+ * a lifecycle configuration.</p>
13
+ */
14
+ NotebookInstanceLifecycleConfigs?: NotebookInstanceLifecycleConfigSummary[];
15
+ }
16
+ export declare enum NotebookInstanceSortKey {
17
+ CREATION_TIME = "CreationTime",
18
+ NAME = "Name",
19
+ STATUS = "Status"
20
+ }
4
21
  export declare enum NotebookInstanceSortOrder {
5
22
  ASCENDING = "Ascending",
6
23
  DESCENDING = "Descending"
@@ -4287,6 +4304,10 @@ export interface SearchRequest {
4287
4304
  */
4288
4305
  MaxResults?: number;
4289
4306
  }
4307
+ /**
4308
+ * @internal
4309
+ */
4310
+ export declare const ListNotebookInstanceLifecycleConfigsOutputFilterSensitiveLog: (obj: ListNotebookInstanceLifecycleConfigsOutput) => any;
4290
4311
  /**
4291
4312
  * @internal
4292
4313
  */
@@ -5,10 +5,8 @@ import {
5
5
  MetadataBearer as __MetadataBearer,
6
6
  MiddlewareStack,
7
7
  } from "@aws-sdk/types";
8
- import {
9
- DescribeFeatureMetadataRequest,
10
- DescribeFeatureMetadataResponse,
11
- } from "../models/models_1";
8
+ import { DescribeFeatureMetadataRequest } from "../models/models_1";
9
+ import { DescribeFeatureMetadataResponse } from "../models/models_2";
12
10
  import {
13
11
  SageMakerClientResolvedConfig,
14
12
  ServiceInputTypes,
@@ -5,10 +5,8 @@ import {
5
5
  MetadataBearer as __MetadataBearer,
6
6
  MiddlewareStack,
7
7
  } from "@aws-sdk/types";
8
- import {
9
- ListNotebookInstanceLifecycleConfigsInput,
10
- ListNotebookInstanceLifecycleConfigsOutput,
11
- } from "../models/models_2";
8
+ import { ListNotebookInstanceLifecycleConfigsInput } from "../models/models_2";
9
+ import { ListNotebookInstanceLifecycleConfigsOutput } from "../models/models_3";
12
10
  import {
13
11
  SageMakerClientResolvedConfig,
14
12
  ServiceInputTypes,
@@ -1898,6 +1898,7 @@ export interface ResourceLimits {
1898
1898
  }
1899
1899
  export declare enum HyperParameterTuningJobStrategyType {
1900
1900
  BAYESIAN = "Bayesian",
1901
+ HYPERBAND = "Hyperband",
1901
1902
  RANDOM = "Random",
1902
1903
  }
1903
1904
  export declare const ActionSourceFilterSensitiveLog: (obj: ActionSource) => any;
@@ -52,7 +52,6 @@ import {
52
52
  EdgePresetDeploymentType,
53
53
  EndpointInput,
54
54
  FeatureDefinition,
55
- FeatureType,
56
55
  GitConfig,
57
56
  HyperParameterTuningJobObjective,
58
57
  HyperParameterTuningJobStrategyType,
@@ -102,6 +101,13 @@ import {
102
101
  UserSettings,
103
102
  VpcConfig,
104
103
  } from "./models_0";
104
+ export interface HyperbandStrategyConfig {
105
+ MinResource?: number;
106
+ MaxResource?: number;
107
+ }
108
+ export interface HyperParameterTuningJobStrategyConfig {
109
+ HyperbandStrategyConfig?: HyperbandStrategyConfig;
110
+ }
105
111
  export declare enum TrainingJobEarlyStoppingType {
106
112
  AUTO = "Auto",
107
113
  OFF = "Off",
@@ -111,6 +117,7 @@ export interface TuningJobCompletionCriteria {
111
117
  }
112
118
  export interface HyperParameterTuningJobConfig {
113
119
  Strategy: HyperParameterTuningJobStrategyType | string | undefined;
120
+ StrategyConfig?: HyperParameterTuningJobStrategyConfig;
114
121
  HyperParameterTuningJobObjective?: HyperParameterTuningJobObjective;
115
122
  ResourceLimits: ResourceLimits | undefined;
116
123
  ParameterRanges?: ParameterRanges;
@@ -1826,20 +1833,12 @@ export interface DescribeFeatureMetadataRequest {
1826
1833
  FeatureGroupName: string | undefined;
1827
1834
  FeatureName: string | undefined;
1828
1835
  }
1829
- export interface FeatureParameter {
1830
- Key?: string;
1831
- Value?: string;
1832
- }
1833
- export interface DescribeFeatureMetadataResponse {
1834
- FeatureGroupArn: string | undefined;
1835
- FeatureGroupName: string | undefined;
1836
- FeatureName: string | undefined;
1837
- FeatureType: FeatureType | string | undefined;
1838
- CreationTime: Date | undefined;
1839
- LastModifiedTime: Date | undefined;
1840
- Description?: string;
1841
- Parameters?: FeatureParameter[];
1842
- }
1836
+ export declare const HyperbandStrategyConfigFilterSensitiveLog: (
1837
+ obj: HyperbandStrategyConfig
1838
+ ) => any;
1839
+ export declare const HyperParameterTuningJobStrategyConfigFilterSensitiveLog: (
1840
+ obj: HyperParameterTuningJobStrategyConfig
1841
+ ) => any;
1843
1842
  export declare const TuningJobCompletionCriteriaFilterSensitiveLog: (
1844
1843
  obj: TuningJobCompletionCriteria
1845
1844
  ) => any;
@@ -2622,9 +2621,3 @@ export declare const DescribeFeatureGroupResponseFilterSensitiveLog: (
2622
2621
  export declare const DescribeFeatureMetadataRequestFilterSensitiveLog: (
2623
2622
  obj: DescribeFeatureMetadataRequest
2624
2623
  ) => any;
2625
- export declare const FeatureParameterFilterSensitiveLog: (
2626
- obj: FeatureParameter
2627
- ) => any;
2628
- export declare const DescribeFeatureMetadataResponseFilterSensitiveLog: (
2629
- obj: DescribeFeatureMetadataResponse
2630
- ) => any;
@@ -82,7 +82,6 @@ import {
82
82
  ExperimentConfig,
83
83
  ExperimentSource,
84
84
  FeatureGroupStatus,
85
- FeatureParameter,
86
85
  HumanTaskConfig,
87
86
  HyperParameterTrainingJobDefinition,
88
87
  HyperParameterTuningJobConfig,
@@ -139,6 +138,20 @@ import {
139
138
  TrialComponentParameterValue,
140
139
  TrialComponentStatus,
141
140
  } from "./models_1";
141
+ export interface FeatureParameter {
142
+ Key?: string;
143
+ Value?: string;
144
+ }
145
+ export interface DescribeFeatureMetadataResponse {
146
+ FeatureGroupArn: string | undefined;
147
+ FeatureGroupName: string | undefined;
148
+ FeatureName: string | undefined;
149
+ FeatureType: FeatureType | string | undefined;
150
+ CreationTime: Date | undefined;
151
+ LastModifiedTime: Date | undefined;
152
+ Description?: string;
153
+ Parameters?: FeatureParameter[];
154
+ }
142
155
  export interface DescribeFlowDefinitionRequest {
143
156
  FlowDefinitionName: string | undefined;
144
157
  }
@@ -2234,15 +2247,12 @@ export interface NotebookInstanceLifecycleConfigSummary {
2234
2247
  CreationTime?: Date;
2235
2248
  LastModifiedTime?: Date;
2236
2249
  }
2237
- export interface ListNotebookInstanceLifecycleConfigsOutput {
2238
- NextToken?: string;
2239
- NotebookInstanceLifecycleConfigs?: NotebookInstanceLifecycleConfigSummary[];
2240
- }
2241
- export declare enum NotebookInstanceSortKey {
2242
- CREATION_TIME = "CreationTime",
2243
- NAME = "Name",
2244
- STATUS = "Status",
2245
- }
2250
+ export declare const FeatureParameterFilterSensitiveLog: (
2251
+ obj: FeatureParameter
2252
+ ) => any;
2253
+ export declare const DescribeFeatureMetadataResponseFilterSensitiveLog: (
2254
+ obj: DescribeFeatureMetadataResponse
2255
+ ) => any;
2246
2256
  export declare const DescribeFlowDefinitionRequestFilterSensitiveLog: (
2247
2257
  obj: DescribeFlowDefinitionRequest
2248
2258
  ) => any;
@@ -2923,6 +2933,3 @@ export declare const ListNotebookInstanceLifecycleConfigsInputFilterSensitiveLog
2923
2933
  export declare const NotebookInstanceLifecycleConfigSummaryFilterSensitiveLog: (
2924
2934
  obj: NotebookInstanceLifecycleConfigSummary
2925
2935
  ) => any;
2926
- export declare const ListNotebookInstanceLifecycleConfigsOutputFilterSensitiveLog: (
2927
- obj: ListNotebookInstanceLifecycleConfigsOutput
2928
- ) => any;
@@ -40,7 +40,6 @@ import {
40
40
  DebugRuleEvaluationStatus,
41
41
  DriftCheckBaselines,
42
42
  ExperimentConfig,
43
- FeatureParameter,
44
43
  InstanceMetadataServiceConfiguration,
45
44
  MemberDefinition,
46
45
  ModelArtifacts,
@@ -86,6 +85,7 @@ import {
86
85
  FailStepMetadata,
87
86
  FeatureGroup,
88
87
  FeatureMetadata,
88
+ FeatureParameter,
89
89
  Filter,
90
90
  GitConfigForUpdate,
91
91
  HyperParameterTrainingJobSummary,
@@ -95,7 +95,7 @@ import {
95
95
  MetricData,
96
96
  ModelPackageGroupStatus,
97
97
  ModelPackageStatusDetails,
98
- NotebookInstanceSortKey,
98
+ NotebookInstanceLifecycleConfigSummary,
99
99
  NotebookInstanceStatus,
100
100
  PipelineExecutionStatus,
101
101
  PipelineExperimentConfig,
@@ -118,6 +118,15 @@ import {
118
118
  Workforce,
119
119
  Workteam,
120
120
  } from "./models_2";
121
+ export interface ListNotebookInstanceLifecycleConfigsOutput {
122
+ NextToken?: string;
123
+ NotebookInstanceLifecycleConfigs?: NotebookInstanceLifecycleConfigSummary[];
124
+ }
125
+ export declare enum NotebookInstanceSortKey {
126
+ CREATION_TIME = "CreationTime",
127
+ NAME = "Name",
128
+ STATUS = "Status",
129
+ }
121
130
  export declare enum NotebookInstanceSortOrder {
122
131
  ASCENDING = "Ascending",
123
132
  DESCENDING = "Descending",
@@ -1247,6 +1256,9 @@ export interface SearchRequest {
1247
1256
  NextToken?: string;
1248
1257
  MaxResults?: number;
1249
1258
  }
1259
+ export declare const ListNotebookInstanceLifecycleConfigsOutputFilterSensitiveLog: (
1260
+ obj: ListNotebookInstanceLifecycleConfigsOutput
1261
+ ) => any;
1250
1262
  export declare const ListNotebookInstancesInputFilterSensitiveLog: (
1251
1263
  obj: ListNotebookInstancesInput
1252
1264
  ) => any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-sagemaker",
3
3
  "description": "AWS SDK for JavaScript Sagemaker Client for Node.js, Browser and React Native",
4
- "version": "3.171.0",
4
+ "version": "3.172.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",