aws-sdk-sagemaker 1.269.0 → 1.271.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1484,6 +1484,7 @@ module Aws::SageMaker
1484
1484
  ModelInsightsLocation = Shapes::StringShape.new(name: 'ModelInsightsLocation')
1485
1485
  ModelLatencyThreshold = Shapes::StructureShape.new(name: 'ModelLatencyThreshold')
1486
1486
  ModelLatencyThresholds = Shapes::ListShape.new(name: 'ModelLatencyThresholds')
1487
+ ModelLifeCycle = Shapes::StructureShape.new(name: 'ModelLifeCycle')
1487
1488
  ModelMetadataFilter = Shapes::StructureShape.new(name: 'ModelMetadataFilter')
1488
1489
  ModelMetadataFilterType = Shapes::StringShape.new(name: 'ModelMetadataFilterType')
1489
1490
  ModelMetadataFilters = Shapes::ListShape.new(name: 'ModelMetadataFilters')
@@ -2034,6 +2035,7 @@ module Aws::SageMaker
2034
2035
  SpaceStorageSettings = Shapes::StructureShape.new(name: 'SpaceStorageSettings')
2035
2036
  SpawnRate = Shapes::IntegerShape.new(name: 'SpawnRate')
2036
2037
  SplitType = Shapes::StringShape.new(name: 'SplitType')
2038
+ StageDescription = Shapes::StringShape.new(name: 'StageDescription')
2037
2039
  StageStatus = Shapes::StringShape.new(name: 'StageStatus')
2038
2040
  Stairs = Shapes::StructureShape.new(name: 'Stairs')
2039
2041
  StartEdgeDeploymentStageRequest = Shapes::StructureShape.new(name: 'StartEdgeDeploymentStageRequest')
@@ -3668,6 +3670,7 @@ module Aws::SageMaker
3668
3670
  CreateModelPackageInput.add_member(:source_uri, Shapes::ShapeRef.new(shape: ModelPackageSourceUri, location_name: "SourceUri"))
3669
3671
  CreateModelPackageInput.add_member(:security_config, Shapes::ShapeRef.new(shape: ModelPackageSecurityConfig, location_name: "SecurityConfig"))
3670
3672
  CreateModelPackageInput.add_member(:model_card, Shapes::ShapeRef.new(shape: ModelPackageModelCard, location_name: "ModelCard"))
3673
+ CreateModelPackageInput.add_member(:model_life_cycle, Shapes::ShapeRef.new(shape: ModelLifeCycle, location_name: "ModelLifeCycle"))
3671
3674
  CreateModelPackageInput.struct_class = Types::CreateModelPackageInput
3672
3675
 
3673
3676
  CreateModelPackageOutput.add_member(:model_package_arn, Shapes::ShapeRef.new(shape: ModelPackageArn, required: true, location_name: "ModelPackageArn"))
@@ -5109,6 +5112,7 @@ module Aws::SageMaker
5109
5112
  DescribeModelPackageOutput.add_member(:source_uri, Shapes::ShapeRef.new(shape: ModelPackageSourceUri, location_name: "SourceUri"))
5110
5113
  DescribeModelPackageOutput.add_member(:security_config, Shapes::ShapeRef.new(shape: ModelPackageSecurityConfig, location_name: "SecurityConfig"))
5111
5114
  DescribeModelPackageOutput.add_member(:model_card, Shapes::ShapeRef.new(shape: ModelPackageModelCard, location_name: "ModelCard"))
5115
+ DescribeModelPackageOutput.add_member(:model_life_cycle, Shapes::ShapeRef.new(shape: ModelLifeCycle, location_name: "ModelLifeCycle"))
5112
5116
  DescribeModelPackageOutput.struct_class = Types::DescribeModelPackageOutput
5113
5117
 
5114
5118
  DescribeModelQualityJobDefinitionRequest.add_member(:job_definition_name, Shapes::ShapeRef.new(shape: MonitoringJobDefinitionName, required: true, location_name: "JobDefinitionName"))
@@ -7975,6 +7979,11 @@ module Aws::SageMaker
7975
7979
 
7976
7980
  ModelLatencyThresholds.member = Shapes::ShapeRef.new(shape: ModelLatencyThreshold)
7977
7981
 
7982
+ ModelLifeCycle.add_member(:stage, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "Stage"))
7983
+ ModelLifeCycle.add_member(:stage_status, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "StageStatus"))
7984
+ ModelLifeCycle.add_member(:stage_description, Shapes::ShapeRef.new(shape: StageDescription, location_name: "StageDescription"))
7985
+ ModelLifeCycle.struct_class = Types::ModelLifeCycle
7986
+
7978
7987
  ModelMetadataFilter.add_member(:name, Shapes::ShapeRef.new(shape: ModelMetadataFilterType, required: true, location_name: "Name"))
7979
7988
  ModelMetadataFilter.add_member(:value, Shapes::ShapeRef.new(shape: String256, required: true, location_name: "Value"))
7980
7989
  ModelMetadataFilter.struct_class = Types::ModelMetadataFilter
@@ -8025,6 +8034,7 @@ module Aws::SageMaker
8025
8034
  ModelPackage.add_member(:source_uri, Shapes::ShapeRef.new(shape: ModelPackageSourceUri, location_name: "SourceUri"))
8026
8035
  ModelPackage.add_member(:security_config, Shapes::ShapeRef.new(shape: ModelPackageSecurityConfig, location_name: "SecurityConfig"))
8027
8036
  ModelPackage.add_member(:model_card, Shapes::ShapeRef.new(shape: ModelPackageModelCard, location_name: "ModelCard"))
8037
+ ModelPackage.add_member(:model_life_cycle, Shapes::ShapeRef.new(shape: ModelLifeCycle, location_name: "ModelLifeCycle"))
8028
8038
  ModelPackage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
8029
8039
  ModelPackage.add_member(:customer_metadata_properties, Shapes::ShapeRef.new(shape: CustomerMetadataMap, location_name: "CustomerMetadataProperties"))
8030
8040
  ModelPackage.add_member(:drift_check_baselines, Shapes::ShapeRef.new(shape: DriftCheckBaselines, location_name: "DriftCheckBaselines"))
@@ -10194,6 +10204,8 @@ module Aws::SageMaker
10194
10204
  UpdateModelPackageInput.add_member(:inference_specification, Shapes::ShapeRef.new(shape: InferenceSpecification, location_name: "InferenceSpecification"))
10195
10205
  UpdateModelPackageInput.add_member(:source_uri, Shapes::ShapeRef.new(shape: ModelPackageSourceUri, location_name: "SourceUri"))
10196
10206
  UpdateModelPackageInput.add_member(:model_card, Shapes::ShapeRef.new(shape: ModelPackageModelCard, location_name: "ModelCard"))
10207
+ UpdateModelPackageInput.add_member(:model_life_cycle, Shapes::ShapeRef.new(shape: ModelLifeCycle, location_name: "ModelLifeCycle"))
10208
+ UpdateModelPackageInput.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken"))
10197
10209
  UpdateModelPackageInput.struct_class = Types::UpdateModelPackageInput
10198
10210
 
10199
10211
  UpdateModelPackageOutput.add_member(:model_package_arn, Shapes::ShapeRef.new(shape: ModelPackageArn, required: true, location_name: "ModelPackageArn"))
@@ -641,10 +641,10 @@ module Aws::SageMaker
641
641
  # The Amazon Resource Name (ARN) of a Lambda function implements the
642
642
  # logic for [annotation consolidation][1] and to process output data.
643
643
  #
644
- # This parameter is required for all labeling jobs. For [built-in task
645
- # types][2], use one of the following Amazon SageMaker Ground Truth
646
- # Lambda function ARNs for `AnnotationConsolidationLambdaArn`. For
647
- # custom labeling workflows, see [Post-annotation Lambda][3].
644
+ # For [built-in task types][2], use one of the following Amazon
645
+ # SageMaker Ground Truth Lambda function ARNs for
646
+ # `AnnotationConsolidationLambdaArn`. For custom labeling workflows,
647
+ # see [Post-annotation Lambda][3].
648
648
  #
649
649
  # **Bounding box** - Finds the most similar boxes from different
650
650
  # workers based on the Jaccard index of the boxes.
@@ -6230,7 +6230,8 @@ module Aws::SageMaker
6230
6230
  # @return [String]
6231
6231
  #
6232
6232
  # @!attribute [rw] default_space_settings
6233
- # The default settings used to create a space.
6233
+ # The default settings for shared spaces that users create in the
6234
+ # domain.
6234
6235
  # @return [Types::DefaultSpaceSettings]
6235
6236
  #
6236
6237
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateDomainRequest AWS API Documentation
@@ -8483,6 +8484,11 @@ module Aws::SageMaker
8483
8484
  # [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
8484
8485
  # @return [Types::ModelPackageModelCard]
8485
8486
  #
8487
+ # @!attribute [rw] model_life_cycle
8488
+ # A structure describing the current state of the model in its life
8489
+ # cycle.
8490
+ # @return [Types::ModelLifeCycle]
8491
+ #
8486
8492
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateModelPackageInput AWS API Documentation
8487
8493
  #
8488
8494
  class CreateModelPackageInput < Struct.new(
@@ -8507,7 +8513,8 @@ module Aws::SageMaker
8507
8513
  :skip_model_validation,
8508
8514
  :source_uri,
8509
8515
  :security_config,
8510
- :model_card)
8516
+ :model_card,
8517
+ :model_life_cycle)
8511
8518
  SENSITIVE = []
8512
8519
  include Aws::Structure
8513
8520
  end
@@ -8733,14 +8740,11 @@ module Aws::SageMaker
8733
8740
  # @return [Integer]
8734
8741
  #
8735
8742
  # @!attribute [rw] accelerator_types
8736
- # A list of Elastic Inference (EI) instance types to associate with
8737
- # this notebook instance. Currently, only one instance type can be
8738
- # associated with a notebook instance. For more information, see
8739
- # [Using Elastic Inference in Amazon SageMaker][1].
8740
- #
8743
+ # This parameter is no longer supported. Elastic Inference (EI) is no
8744
+ # longer available.
8741
8745
  #
8742
- #
8743
- # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/ei.html
8746
+ # This parameter was used to specify a list of EI instance types to
8747
+ # associate with this notebook instance.
8744
8748
  # @return [Array<String>]
8745
8749
  #
8746
8750
  # @!attribute [rw] default_code_repository
@@ -10932,7 +10936,11 @@ module Aws::SageMaker
10932
10936
  include Aws::Structure
10933
10937
  end
10934
10938
 
10935
- # A collection of settings that apply to spaces created in the domain.
10939
+ # The default settings for shared spaces that users create in the
10940
+ # domain.
10941
+ #
10942
+ # SageMaker applies these settings only to shared spaces. It doesn't
10943
+ # apply them to private spaces.
10936
10944
  #
10937
10945
  # @!attribute [rw] execution_role
10938
10946
  # The ARN of the execution role for the space.
@@ -13519,7 +13527,8 @@ module Aws::SageMaker
13519
13527
  # @return [String]
13520
13528
  #
13521
13529
  # @!attribute [rw] default_space_settings
13522
- # The default settings used to create a space.
13530
+ # The default settings for shared spaces that users create in the
13531
+ # domain.
13523
13532
  # @return [Types::DefaultSpaceSettings]
13524
13533
  #
13525
13534
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeDomainResponse AWS API Documentation
@@ -16284,6 +16293,11 @@ module Aws::SageMaker
16284
16293
  # [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
16285
16294
  # @return [Types::ModelPackageModelCard]
16286
16295
  #
16296
+ # @!attribute [rw] model_life_cycle
16297
+ # A structure describing the current state of the model in its life
16298
+ # cycle.
16299
+ # @return [Types::ModelLifeCycle]
16300
+ #
16287
16301
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelPackageOutput AWS API Documentation
16288
16302
  #
16289
16303
  class DescribeModelPackageOutput < Struct.new(
@@ -16315,7 +16329,8 @@ module Aws::SageMaker
16315
16329
  :skip_model_validation,
16316
16330
  :source_uri,
16317
16331
  :security_config,
16318
- :model_card)
16332
+ :model_card,
16333
+ :model_life_cycle)
16319
16334
  SENSITIVE = []
16320
16335
  include Aws::Structure
16321
16336
  end
@@ -16636,14 +16651,11 @@ module Aws::SageMaker
16636
16651
  # @return [Integer]
16637
16652
  #
16638
16653
  # @!attribute [rw] accelerator_types
16639
- # A list of the Elastic Inference (EI) instance types associated with
16640
- # this notebook instance. Currently only one EI instance type can be
16641
- # associated with a notebook instance. For more information, see
16642
- # [Using Elastic Inference in Amazon SageMaker][1].
16654
+ # This parameter is no longer supported. Elastic Inference (EI) is no
16655
+ # longer available.
16643
16656
  #
16644
- #
16645
- #
16646
- # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/ei.html
16657
+ # This parameter was used to specify a list of the EI instance types
16658
+ # associated with this notebook instance.
16647
16659
  # @return [Array<String>]
16648
16660
  #
16649
16661
  # @!attribute [rw] default_code_repository
@@ -32845,6 +32857,31 @@ module Aws::SageMaker
32845
32857
  include Aws::Structure
32846
32858
  end
32847
32859
 
32860
+ # A structure describing the current state of the model in its life
32861
+ # cycle.
32862
+ #
32863
+ # @!attribute [rw] stage
32864
+ # The current stage in the model life cycle.
32865
+ # @return [String]
32866
+ #
32867
+ # @!attribute [rw] stage_status
32868
+ # The current status of a stage in model life cycle.
32869
+ # @return [String]
32870
+ #
32871
+ # @!attribute [rw] stage_description
32872
+ # Describes the stage related details.
32873
+ # @return [String]
32874
+ #
32875
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ModelLifeCycle AWS API Documentation
32876
+ #
32877
+ class ModelLifeCycle < Struct.new(
32878
+ :stage,
32879
+ :stage_status,
32880
+ :stage_description)
32881
+ SENSITIVE = []
32882
+ include Aws::Structure
32883
+ end
32884
+
32848
32885
  # Part of the search expression. You can specify the name and value
32849
32886
  # (domain, task, framework, framework version, task, and model).
32850
32887
  #
@@ -33105,6 +33142,11 @@ module Aws::SageMaker
33105
33142
  # [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
33106
33143
  # @return [Types::ModelPackageModelCard]
33107
33144
  #
33145
+ # @!attribute [rw] model_life_cycle
33146
+ # A structure describing the current state of the model in its life
33147
+ # cycle.
33148
+ # @return [Types::ModelLifeCycle]
33149
+ #
33108
33150
  # @!attribute [rw] tags
33109
33151
  # A list of the tags associated with the model package. For more
33110
33152
  # information, see [Tagging Amazon Web Services resources][1] in the
@@ -33157,6 +33199,7 @@ module Aws::SageMaker
33157
33199
  :source_uri,
33158
33200
  :security_config,
33159
33201
  :model_card,
33202
+ :model_life_cycle,
33160
33203
  :tags,
33161
33204
  :customer_metadata_properties,
33162
33205
  :drift_check_baselines,
@@ -35673,23 +35716,6 @@ module Aws::SageMaker
35673
35716
  #
35674
35717
  # ^
35675
35718
  #
35676
- # * `EIA`: Compilation for the Elastic Inference Accelerator supports
35677
- # the following compiler options:
35678
- #
35679
- # * `precision_mode`: Specifies the precision of compiled artifacts.
35680
- # Supported values are `"FP16"` and `"FP32"`. Default is `"FP32"`.
35681
- #
35682
- # * `signature_def_key`: Specifies the signature to use for models
35683
- # in SavedModel format. Defaults is TensorFlow's default
35684
- # signature def key.
35685
- #
35686
- # * `output_names`: Specifies a list of output tensor names for
35687
- # models in FrozenGraph format. Set at most one API field, either:
35688
- # `signature_def_key` or `output_names`.
35689
- #
35690
- # For example: `\{"precision_mode": "FP32", "output_names":
35691
- # ["output:0"]\}`
35692
- #
35693
35719
  #
35694
35720
  #
35695
35721
  # [1]: https://awsdocs-neuron.readthedocs-hosted.com/en/latest/compiler/neuronx-cc/api-reference-guide/neuron-compiler-cli-reference-guide.html
@@ -36108,14 +36134,11 @@ module Aws::SageMaker
36108
36134
  # @return [String]
36109
36135
  #
36110
36136
  # @!attribute [rw] accelerator_type
36111
- # The size of the Elastic Inference (EI) instance to use for the
36112
- # production variant. EI instances provide on-demand GPU computing for
36113
- # inference. For more information, see [Using Elastic Inference in
36114
- # Amazon SageMaker][1].
36137
+ # This parameter is no longer supported. Elastic Inference (EI) is no
36138
+ # longer available.
36115
36139
  #
36116
- #
36117
- #
36118
- # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/ei.html
36140
+ # This parameter was used to specify the size of the EI instance to
36141
+ # use for the production variant.
36119
36142
  # @return [String]
36120
36143
  #
36121
36144
  # @!attribute [rw] variant_status
@@ -37275,14 +37298,11 @@ module Aws::SageMaker
37275
37298
  # @return [Float]
37276
37299
  #
37277
37300
  # @!attribute [rw] accelerator_type
37278
- # The size of the Elastic Inference (EI) instance to use for the
37279
- # production variant. EI instances provide on-demand GPU computing for
37280
- # inference. For more information, see [Using Elastic Inference in
37281
- # Amazon SageMaker][1].
37282
- #
37283
- #
37301
+ # This parameter is no longer supported. Elastic Inference (EI) is no
37302
+ # longer available.
37284
37303
  #
37285
- # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/ei.html
37304
+ # This parameter was used to specify the size of the EI instance to
37305
+ # use for the production variant.
37286
37306
  # @return [String]
37287
37307
  #
37288
37308
  # @!attribute [rw] core_dump_config
@@ -45322,7 +45342,8 @@ module Aws::SageMaker
45322
45342
  # @return [String]
45323
45343
  #
45324
45344
  # @!attribute [rw] default_space_settings
45325
- # The default settings used to create a space within the domain.
45345
+ # The default settings for shared spaces that users create in the
45346
+ # domain.
45326
45347
  # @return [Types::DefaultSpaceSettings]
45327
45348
  #
45328
45349
  # @!attribute [rw] subnet_ids
@@ -46085,6 +46106,16 @@ module Aws::SageMaker
46085
46106
  # [2]: https://docs.aws.amazon.com/sagemaker/latest/dg/model-registry-details.html
46086
46107
  # @return [Types::ModelPackageModelCard]
46087
46108
  #
46109
+ # @!attribute [rw] model_life_cycle
46110
+ # A structure describing the current state of the model in its life
46111
+ # cycle.
46112
+ # @return [Types::ModelLifeCycle]
46113
+ #
46114
+ # @!attribute [rw] client_token
46115
+ # A unique token that guarantees that the call to this API is
46116
+ # idempotent.
46117
+ # @return [String]
46118
+ #
46088
46119
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateModelPackageInput AWS API Documentation
46089
46120
  #
46090
46121
  class UpdateModelPackageInput < Struct.new(
@@ -46096,7 +46127,9 @@ module Aws::SageMaker
46096
46127
  :additional_inference_specifications_to_add,
46097
46128
  :inference_specification,
46098
46129
  :source_uri,
46099
- :model_card)
46130
+ :model_card,
46131
+ :model_life_cycle,
46132
+ :client_token)
46100
46133
  SENSITIVE = []
46101
46134
  include Aws::Structure
46102
46135
  end
@@ -46274,21 +46307,19 @@ module Aws::SageMaker
46274
46307
  # @return [Array<String>]
46275
46308
  #
46276
46309
  # @!attribute [rw] accelerator_types
46277
- # A list of the Elastic Inference (EI) instance types to associate
46278
- # with this notebook instance. Currently only one EI instance type can
46279
- # be associated with a notebook instance. For more information, see
46280
- # [Using Elastic Inference in Amazon SageMaker][1].
46281
- #
46282
- #
46310
+ # This parameter is no longer supported. Elastic Inference (EI) is no
46311
+ # longer available.
46283
46312
  #
46284
- # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/ei.html
46313
+ # This parameter was used to specify a list of the EI instance types
46314
+ # to associate with this notebook instance.
46285
46315
  # @return [Array<String>]
46286
46316
  #
46287
46317
  # @!attribute [rw] disassociate_accelerator_types
46288
- # A list of the Elastic Inference (EI) instance types to remove from
46289
- # this notebook instance. This operation is idempotent. If you specify
46290
- # an accelerator type that is not associated with the notebook
46291
- # instance when you call this method, it does not throw an error.
46318
+ # This parameter is no longer supported. Elastic Inference (EI) is no
46319
+ # longer available.
46320
+ #
46321
+ # This parameter was used to specify a list of the EI instance types
46322
+ # to remove from this notebook instance.
46292
46323
  # @return [Boolean]
46293
46324
  #
46294
46325
  # @!attribute [rw] disassociate_default_code_repository
@@ -46988,6 +47019,10 @@ module Aws::SageMaker
46988
47019
  #
46989
47020
  # @!attribute [rw] execution_role
46990
47021
  # The execution role for the user.
47022
+ #
47023
+ # SageMaker applies this setting only to private spaces that the user
47024
+ # creates in the domain. SageMaker doesn't apply this setting to
47025
+ # shared spaces.
46991
47026
  # @return [String]
46992
47027
  #
46993
47028
  # @!attribute [rw] security_groups
@@ -47004,6 +47039,10 @@ module Aws::SageMaker
47004
47039
  # Amazon SageMaker adds a security group to allow NFS traffic from
47005
47040
  # Amazon SageMaker Studio. Therefore, the number of security groups
47006
47041
  # that you can specify is one less than the maximum number shown.
47042
+ #
47043
+ # SageMaker applies these settings only to private spaces that the
47044
+ # user creates in the domain. SageMaker doesn't apply these settings
47045
+ # to shared spaces.
47007
47046
  # @return [Array<String>]
47008
47047
  #
47009
47048
  # @!attribute [rw] sharing_settings
@@ -47033,18 +47072,33 @@ module Aws::SageMaker
47033
47072
  #
47034
47073
  # @!attribute [rw] canvas_app_settings
47035
47074
  # The Canvas app settings.
47075
+ #
47076
+ # SageMaker applies these settings only to private spaces that
47077
+ # SageMaker creates for the Canvas app.
47036
47078
  # @return [Types::CanvasAppSettings]
47037
47079
  #
47038
47080
  # @!attribute [rw] code_editor_app_settings
47039
47081
  # The Code Editor application settings.
47082
+ #
47083
+ # SageMaker applies these settings only to private spaces that the
47084
+ # user creates in the domain. SageMaker doesn't apply these settings
47085
+ # to shared spaces.
47040
47086
  # @return [Types::CodeEditorAppSettings]
47041
47087
  #
47042
47088
  # @!attribute [rw] jupyter_lab_app_settings
47043
47089
  # The settings for the JupyterLab application.
47090
+ #
47091
+ # SageMaker applies these settings only to private spaces that the
47092
+ # user creates in the domain. SageMaker doesn't apply these settings
47093
+ # to shared spaces.
47044
47094
  # @return [Types::JupyterLabAppSettings]
47045
47095
  #
47046
47096
  # @!attribute [rw] space_storage_settings
47047
47097
  # The storage settings for a space.
47098
+ #
47099
+ # SageMaker applies these settings only to private spaces that the
47100
+ # user creates in the domain. SageMaker doesn't apply these settings
47101
+ # to shared spaces.
47048
47102
  # @return [Types::DefaultSpaceStorageSettings]
47049
47103
  #
47050
47104
  # @!attribute [rw] default_landing_uri
@@ -47067,12 +47121,20 @@ module Aws::SageMaker
47067
47121
  # @!attribute [rw] custom_posix_user_config
47068
47122
  # Details about the POSIX identity that is used for file system
47069
47123
  # operations.
47124
+ #
47125
+ # SageMaker applies these settings only to private spaces that the
47126
+ # user creates in the domain. SageMaker doesn't apply these settings
47127
+ # to shared spaces.
47070
47128
  # @return [Types::CustomPosixUserConfig]
47071
47129
  #
47072
47130
  # @!attribute [rw] custom_file_system_configs
47073
47131
  # The settings for assigning a custom file system to a user profile.
47074
47132
  # Permitted users can access this file system in Amazon SageMaker
47075
47133
  # Studio.
47134
+ #
47135
+ # SageMaker applies these settings only to private spaces that the
47136
+ # user creates in the domain. SageMaker doesn't apply these settings
47137
+ # to shared spaces.
47076
47138
  # @return [Array<Types::CustomFileSystemConfig>]
47077
47139
  #
47078
47140
  # @!attribute [rw] studio_web_portal_settings
@@ -47085,6 +47147,10 @@ module Aws::SageMaker
47085
47147
  # the user profile. The `DefaultAsDomain` value is only supported for
47086
47148
  # user profiles. Do not use the `DefaultAsDomain` value when setting
47087
47149
  # this parameter for a domain.
47150
+ #
47151
+ # SageMaker applies this setting only to private spaces that the user
47152
+ # creates in the domain. SageMaker doesn't apply this setting to
47153
+ # shared spaces.
47088
47154
  # @return [String]
47089
47155
  #
47090
47156
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UserSettings AWS API Documentation
@@ -55,7 +55,7 @@ module Aws::SageMaker
55
55
  autoload :EndpointProvider, 'aws-sdk-sagemaker/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-sagemaker/endpoints'
57
57
 
58
- GEM_VERSION = '1.269.0'
58
+ GEM_VERSION = '1.271.0'
59
59
 
60
60
  end
61
61