aws-sdk-sagemaker 1.223.0 → 1.224.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.
@@ -1287,6 +1287,11 @@ module Aws::SageMaker
1287
1287
  # The name of the space.
1288
1288
  # @return [String]
1289
1289
  #
1290
+ # @!attribute [rw] resource_spec
1291
+ # Specifies the ARN's of a SageMaker image and SageMaker image
1292
+ # version, and the instance type that the version runs on.
1293
+ # @return [Types::ResourceSpec]
1294
+ #
1290
1295
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AppDetails AWS API Documentation
1291
1296
  #
1292
1297
  class AppDetails < Struct.new(
@@ -1296,7 +1301,8 @@ module Aws::SageMaker
1296
1301
  :app_name,
1297
1302
  :status,
1298
1303
  :creation_time,
1299
- :space_name)
1304
+ :space_name,
1305
+ :resource_spec)
1300
1306
  SENSITIVE = []
1301
1307
  include Aws::Structure
1302
1308
  end
@@ -1325,6 +1331,11 @@ module Aws::SageMaker
1325
1331
  # image.
1326
1332
  # @return [Types::KernelGatewayImageConfig]
1327
1333
  #
1334
+ # @!attribute [rw] jupyter_lab_app_image_config
1335
+ # The configuration for the file system and the runtime, such as the
1336
+ # environment variables and entry point.
1337
+ # @return [Types::JupyterLabAppImageConfig]
1338
+ #
1328
1339
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/AppImageConfigDetails AWS API Documentation
1329
1340
  #
1330
1341
  class AppImageConfigDetails < Struct.new(
@@ -1332,7 +1343,8 @@ module Aws::SageMaker
1332
1343
  :app_image_config_name,
1333
1344
  :creation_time,
1334
1345
  :last_modified_time,
1335
- :kernel_gateway_image_config)
1346
+ :kernel_gateway_image_config,
1347
+ :jupyter_lab_app_image_config)
1336
1348
  SENSITIVE = []
1337
1349
  include Aws::Structure
1338
1350
  end
@@ -4169,6 +4181,34 @@ module Aws::SageMaker
4169
4181
  include Aws::Structure
4170
4182
  end
4171
4183
 
4184
+ # The Code Editor application settings.
4185
+ #
4186
+ # For more information about Code Editor, see [Get started with Code
4187
+ # Editor in Amazon SageMaker][1].
4188
+ #
4189
+ #
4190
+ #
4191
+ # [1]: https://docs.aws.amazon.com/sagemaker/latest/dg/code-editor.html
4192
+ #
4193
+ # @!attribute [rw] default_resource_spec
4194
+ # Specifies the ARN's of a SageMaker image and SageMaker image
4195
+ # version, and the instance type that the version runs on.
4196
+ # @return [Types::ResourceSpec]
4197
+ #
4198
+ # @!attribute [rw] lifecycle_config_arns
4199
+ # The Amazon Resource Name (ARN) of the Code Editor application
4200
+ # lifecycle configuration.
4201
+ # @return [Array<String>]
4202
+ #
4203
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CodeEditorAppSettings AWS API Documentation
4204
+ #
4205
+ class CodeEditorAppSettings < Struct.new(
4206
+ :default_resource_spec,
4207
+ :lifecycle_config_arns)
4208
+ SENSITIVE = []
4209
+ include Aws::Structure
4210
+ end
4211
+
4172
4212
  # A Git repository that SageMaker automatically displays to users for
4173
4213
  # cloning in the JupyterServer application.
4174
4214
  #
@@ -4427,6 +4467,31 @@ module Aws::SageMaker
4427
4467
  include Aws::Structure
4428
4468
  end
4429
4469
 
4470
+ # The configuration used to run the application image container.
4471
+ #
4472
+ # @!attribute [rw] container_arguments
4473
+ # The arguments for the container when you're running the
4474
+ # application.
4475
+ # @return [Array<String>]
4476
+ #
4477
+ # @!attribute [rw] container_entrypoint
4478
+ # The entrypoint used to run the application in the container.
4479
+ # @return [Array<String>]
4480
+ #
4481
+ # @!attribute [rw] container_environment_variables
4482
+ # The environment variables to set in the container
4483
+ # @return [Hash<String,String>]
4484
+ #
4485
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ContainerConfig AWS API Documentation
4486
+ #
4487
+ class ContainerConfig < Struct.new(
4488
+ :container_arguments,
4489
+ :container_entrypoint,
4490
+ :container_environment_variables)
4491
+ SENSITIVE = []
4492
+ include Aws::Structure
4493
+ end
4494
+
4430
4495
  # Describes the container, as part of model definition.
4431
4496
  #
4432
4497
  # @!attribute [rw] container_hostname
@@ -4908,12 +4973,20 @@ module Aws::SageMaker
4908
4973
  # JupyterLab.
4909
4974
  # @return [Types::KernelGatewayImageConfig]
4910
4975
  #
4976
+ # @!attribute [rw] jupyter_lab_app_image_config
4977
+ # The `JupyterLabAppImageConfig`. You can only specify one image
4978
+ # kernel in the `AppImageConfig` API. This kernel is shown to users
4979
+ # before the image starts. After the image runs, all kernels are
4980
+ # visible in JupyterLab.
4981
+ # @return [Types::JupyterLabAppImageConfig]
4982
+ #
4911
4983
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateAppImageConfigRequest AWS API Documentation
4912
4984
  #
4913
4985
  class CreateAppImageConfigRequest < Struct.new(
4914
4986
  :app_image_config_name,
4915
4987
  :tags,
4916
- :kernel_gateway_image_config)
4988
+ :kernel_gateway_image_config,
4989
+ :jupyter_lab_app_image_config)
4917
4990
  SENSITIVE = []
4918
4991
  include Aws::Structure
4919
4992
  end
@@ -8541,13 +8614,28 @@ module Aws::SageMaker
8541
8614
  # A collection of space settings.
8542
8615
  # @return [Types::SpaceSettings]
8543
8616
  #
8617
+ # @!attribute [rw] space_display_name
8618
+ # The name of the space that appears in the SageMaker Studio UI.
8619
+ # @return [String]
8620
+ #
8621
+ # @!attribute [rw] ownership_settings
8622
+ # A collection of ownership settings.
8623
+ # @return [Types::OwnershipSettings]
8624
+ #
8625
+ # @!attribute [rw] space_sharing_settings
8626
+ # A collection of space sharing settings.
8627
+ # @return [Types::SpaceSharingSettings]
8628
+ #
8544
8629
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CreateSpaceRequest AWS API Documentation
8545
8630
  #
8546
8631
  class CreateSpaceRequest < Struct.new(
8547
8632
  :domain_id,
8548
8633
  :space_name,
8549
8634
  :tags,
8550
- :space_settings)
8635
+ :space_settings,
8636
+ :space_display_name,
8637
+ :ownership_settings,
8638
+ :space_sharing_settings)
8551
8639
  SENSITIVE = []
8552
8640
  include Aws::Structure
8553
8641
  end
@@ -9412,6 +9500,56 @@ module Aws::SageMaker
9412
9500
  include Aws::Structure
9413
9501
  end
9414
9502
 
9503
+ # A file system, created by you, that you assign to a user profile or
9504
+ # space for an Amazon SageMaker Domain. Permitted users can access this
9505
+ # file system in Amazon SageMaker Studio.
9506
+ #
9507
+ # @note CustomFileSystem is a union - when making an API calls you must set exactly one of the members.
9508
+ #
9509
+ # @note CustomFileSystem is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of CustomFileSystem corresponding to the set member.
9510
+ #
9511
+ # @!attribute [rw] efs_file_system
9512
+ # A custom file system in Amazon EFS.
9513
+ # @return [Types::EFSFileSystem]
9514
+ #
9515
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CustomFileSystem AWS API Documentation
9516
+ #
9517
+ class CustomFileSystem < Struct.new(
9518
+ :efs_file_system,
9519
+ :unknown)
9520
+ SENSITIVE = []
9521
+ include Aws::Structure
9522
+ include Aws::Structure::Union
9523
+
9524
+ class EfsFileSystem < CustomFileSystem; end
9525
+ class Unknown < CustomFileSystem; end
9526
+ end
9527
+
9528
+ # The settings for assigning a custom file system to a user profile or
9529
+ # space for an Amazon SageMaker Domain. Permitted users can access this
9530
+ # file system in Amazon SageMaker Studio.
9531
+ #
9532
+ # @note CustomFileSystemConfig is a union - when making an API calls you must set exactly one of the members.
9533
+ #
9534
+ # @note CustomFileSystemConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of CustomFileSystemConfig corresponding to the set member.
9535
+ #
9536
+ # @!attribute [rw] efs_file_system_config
9537
+ # The settings for a custom Amazon EFS file system.
9538
+ # @return [Types::EFSFileSystemConfig]
9539
+ #
9540
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CustomFileSystemConfig AWS API Documentation
9541
+ #
9542
+ class CustomFileSystemConfig < Struct.new(
9543
+ :efs_file_system_config,
9544
+ :unknown)
9545
+ SENSITIVE = []
9546
+ include Aws::Structure
9547
+ include Aws::Structure::Union
9548
+
9549
+ class EfsFileSystemConfig < CustomFileSystemConfig; end
9550
+ class Unknown < CustomFileSystemConfig; end
9551
+ end
9552
+
9415
9553
  # A custom SageMaker image. For more information, see [Bring your own
9416
9554
  # SageMaker image][1].
9417
9555
  #
@@ -9441,6 +9579,26 @@ module Aws::SageMaker
9441
9579
  include Aws::Structure
9442
9580
  end
9443
9581
 
9582
+ # Details about the POSIX identity that is used for file system
9583
+ # operations.
9584
+ #
9585
+ # @!attribute [rw] uid
9586
+ # The POSIX user ID.
9587
+ # @return [Integer]
9588
+ #
9589
+ # @!attribute [rw] gid
9590
+ # The POSIX group ID.
9591
+ # @return [Integer]
9592
+ #
9593
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/CustomPosixUserConfig AWS API Documentation
9594
+ #
9595
+ class CustomPosixUserConfig < Struct.new(
9596
+ :uid,
9597
+ :gid)
9598
+ SENSITIVE = []
9599
+ include Aws::Structure
9600
+ end
9601
+
9444
9602
  # A customized metric.
9445
9603
  #
9446
9604
  # @!attribute [rw] metric_name
@@ -9959,6 +10117,26 @@ module Aws::SageMaker
9959
10117
  include Aws::Structure
9960
10118
  end
9961
10119
 
10120
+ # A collection of default EBS storage settings that applies to private
10121
+ # spaces created within a domain or user profile.
10122
+ #
10123
+ # @!attribute [rw] default_ebs_volume_size_in_gb
10124
+ # The default size of the EBS storage volume for a private space.
10125
+ # @return [Integer]
10126
+ #
10127
+ # @!attribute [rw] maximum_ebs_volume_size_in_gb
10128
+ # The maximum size of the EBS storage volume for a private space.
10129
+ # @return [Integer]
10130
+ #
10131
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DefaultEbsStorageSettings AWS API Documentation
10132
+ #
10133
+ class DefaultEbsStorageSettings < Struct.new(
10134
+ :default_ebs_volume_size_in_gb,
10135
+ :maximum_ebs_volume_size_in_gb)
10136
+ SENSITIVE = []
10137
+ include Aws::Structure
10138
+ end
10139
+
9962
10140
  # A collection of settings that apply to spaces created in the Domain.
9963
10141
  #
9964
10142
  # @!attribute [rw] execution_role
@@ -9989,6 +10167,20 @@ module Aws::SageMaker
9989
10167
  include Aws::Structure
9990
10168
  end
9991
10169
 
10170
+ # The default storage settings for a private space.
10171
+ #
10172
+ # @!attribute [rw] default_ebs_storage_settings
10173
+ # The default EBS storage settings for a private space.
10174
+ # @return [Types::DefaultEbsStorageSettings]
10175
+ #
10176
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DefaultSpaceStorageSettings AWS API Documentation
10177
+ #
10178
+ class DefaultSpaceStorageSettings < Struct.new(
10179
+ :default_ebs_storage_settings)
10180
+ SENSITIVE = []
10181
+ include Aws::Structure
10182
+ end
10183
+
9992
10184
  # @!attribute [rw] action_name
9993
10185
  # The name of the action to delete.
9994
10186
  # @return [String]
@@ -11211,6 +11403,10 @@ module Aws::SageMaker
11211
11403
  # The configuration of a KernelGateway app.
11212
11404
  # @return [Types::KernelGatewayImageConfig]
11213
11405
  #
11406
+ # @!attribute [rw] jupyter_lab_app_image_config
11407
+ # The configuration of the JupyterLab app.
11408
+ # @return [Types::JupyterLabAppImageConfig]
11409
+ #
11214
11410
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeAppImageConfigResponse AWS API Documentation
11215
11411
  #
11216
11412
  class DescribeAppImageConfigResponse < Struct.new(
@@ -11218,7 +11414,8 @@ module Aws::SageMaker
11218
11414
  :app_image_config_name,
11219
11415
  :creation_time,
11220
11416
  :last_modified_time,
11221
- :kernel_gateway_image_config)
11417
+ :kernel_gateway_image_config,
11418
+ :jupyter_lab_app_image_config)
11222
11419
  SENSITIVE = []
11223
11420
  include Aws::Structure
11224
11421
  end
@@ -15899,6 +16096,19 @@ module Aws::SageMaker
15899
16096
  # * JupyterLab: `&redirect=JupyterLab`
15900
16097
  # @return [String]
15901
16098
  #
16099
+ # @!attribute [rw] space_display_name
16100
+ # The name of the space that appears in the Amazon SageMaker Studio
16101
+ # UI.
16102
+ # @return [String]
16103
+ #
16104
+ # @!attribute [rw] ownership_settings
16105
+ # The collection of ownership settings for a space.
16106
+ # @return [Types::OwnershipSettings]
16107
+ #
16108
+ # @!attribute [rw] space_sharing_settings
16109
+ # The collection of space sharing settings for a space.
16110
+ # @return [Types::SpaceSharingSettings]
16111
+ #
15902
16112
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeSpaceResponse AWS API Documentation
15903
16113
  #
15904
16114
  class DescribeSpaceResponse < Struct.new(
@@ -15911,7 +16121,10 @@ module Aws::SageMaker
15911
16121
  :creation_time,
15912
16122
  :failure_reason,
15913
16123
  :space_settings,
15914
- :url)
16124
+ :url,
16125
+ :space_display_name,
16126
+ :ownership_settings,
16127
+ :space_sharing_settings)
15915
16128
  SENSITIVE = []
15916
16129
  include Aws::Structure
15917
16130
  end
@@ -17480,6 +17693,44 @@ module Aws::SageMaker
17480
17693
  include Aws::Structure
17481
17694
  end
17482
17695
 
17696
+ # A file system, created by you in Amazon EFS, that you assign to a user
17697
+ # profile or space for an Amazon SageMaker Domain. Permitted users can
17698
+ # access this file system in Amazon SageMaker Studio.
17699
+ #
17700
+ # @!attribute [rw] file_system_id
17701
+ # The ID of your Amazon EFS file system.
17702
+ # @return [String]
17703
+ #
17704
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EFSFileSystem AWS API Documentation
17705
+ #
17706
+ class EFSFileSystem < Struct.new(
17707
+ :file_system_id)
17708
+ SENSITIVE = []
17709
+ include Aws::Structure
17710
+ end
17711
+
17712
+ # The settings for assigning a custom Amazon EFS file system to a user
17713
+ # profile or space for an Amazon SageMaker Domain.
17714
+ #
17715
+ # @!attribute [rw] file_system_id
17716
+ # The ID of your Amazon EFS file system.
17717
+ # @return [String]
17718
+ #
17719
+ # @!attribute [rw] file_system_path
17720
+ # The path to the file system directory that is accessible in Amazon
17721
+ # SageMaker Studio. Permitted users can access only this directory and
17722
+ # below.
17723
+ # @return [String]
17724
+ #
17725
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EFSFileSystemConfig AWS API Documentation
17726
+ #
17727
+ class EFSFileSystemConfig < Struct.new(
17728
+ :file_system_id,
17729
+ :file_system_path)
17730
+ SENSITIVE = []
17731
+ include Aws::Structure
17732
+ end
17733
+
17483
17734
  # The configurations and outcomes of an Amazon EMR step execution.
17484
17735
  #
17485
17736
  # @!attribute [rw] cluster_id
@@ -17510,6 +17761,20 @@ module Aws::SageMaker
17510
17761
  include Aws::Structure
17511
17762
  end
17512
17763
 
17764
+ # A collection of EBS storage settings that applies to private spaces.
17765
+ #
17766
+ # @!attribute [rw] ebs_volume_size_in_gb
17767
+ # The size of an EBS storage volume for a private space.
17768
+ # @return [Integer]
17769
+ #
17770
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/EbsStorageSettings AWS API Documentation
17771
+ #
17772
+ class EbsStorageSettings < Struct.new(
17773
+ :ebs_volume_size_in_gb)
17774
+ SENSITIVE = []
17775
+ include Aws::Structure
17776
+ end
17777
+
17513
17778
  # A directed edge connecting two lineage entities.
17514
17779
  #
17515
17780
  # @!attribute [rw] source_arn
@@ -23302,6 +23567,55 @@ module Aws::SageMaker
23302
23567
  include Aws::Structure
23303
23568
  end
23304
23569
 
23570
+ # The configuration for the file system and kernels in a SageMaker image
23571
+ # running as a JupyterLab app.
23572
+ #
23573
+ # @!attribute [rw] container_config
23574
+ # The configuration used to run the application image container.
23575
+ # @return [Types::ContainerConfig]
23576
+ #
23577
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/JupyterLabAppImageConfig AWS API Documentation
23578
+ #
23579
+ class JupyterLabAppImageConfig < Struct.new(
23580
+ :container_config)
23581
+ SENSITIVE = []
23582
+ include Aws::Structure
23583
+ end
23584
+
23585
+ # The settings for the JupyterLab application.
23586
+ #
23587
+ # @!attribute [rw] default_resource_spec
23588
+ # Specifies the ARN's of a SageMaker image and SageMaker image
23589
+ # version, and the instance type that the version runs on.
23590
+ # @return [Types::ResourceSpec]
23591
+ #
23592
+ # @!attribute [rw] custom_images
23593
+ # A list of custom SageMaker images that are configured to run as a
23594
+ # JupyterLab app.
23595
+ # @return [Array<Types::CustomImage>]
23596
+ #
23597
+ # @!attribute [rw] lifecycle_config_arns
23598
+ # The Amazon Resource Name (ARN) of the lifecycle configurations
23599
+ # attached to the user profile or domain. To remove a lifecycle
23600
+ # config, you must set `LifecycleConfigArns` to an empty list.
23601
+ # @return [Array<String>]
23602
+ #
23603
+ # @!attribute [rw] code_repositories
23604
+ # A list of Git repositories that SageMaker automatically displays to
23605
+ # users for cloning in the JupyterLab application.
23606
+ # @return [Array<Types::CodeRepository>]
23607
+ #
23608
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/JupyterLabAppSettings AWS API Documentation
23609
+ #
23610
+ class JupyterLabAppSettings < Struct.new(
23611
+ :default_resource_spec,
23612
+ :custom_images,
23613
+ :lifecycle_config_arns,
23614
+ :code_repositories)
23615
+ SENSITIVE = []
23616
+ include Aws::Structure
23617
+ end
23618
+
23305
23619
  # The JupyterServer app settings.
23306
23620
  #
23307
23621
  # @!attribute [rw] default_resource_spec
@@ -33306,6 +33620,34 @@ module Aws::SageMaker
33306
33620
  include Aws::Structure
33307
33621
  end
33308
33622
 
33623
+ # The collection of ownership settings for a space.
33624
+ #
33625
+ # @!attribute [rw] owner_user_profile_name
33626
+ # The user profile who is the owner of the private space.
33627
+ # @return [String]
33628
+ #
33629
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/OwnershipSettings AWS API Documentation
33630
+ #
33631
+ class OwnershipSettings < Struct.new(
33632
+ :owner_user_profile_name)
33633
+ SENSITIVE = []
33634
+ include Aws::Structure
33635
+ end
33636
+
33637
+ # Specifies summary information about the ownership settings.
33638
+ #
33639
+ # @!attribute [rw] owner_user_profile_name
33640
+ # The user profile who is the owner of the private space.
33641
+ # @return [String]
33642
+ #
33643
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/OwnershipSettingsSummary AWS API Documentation
33644
+ #
33645
+ class OwnershipSettingsSummary < Struct.new(
33646
+ :owner_user_profile_name)
33647
+ SENSITIVE = []
33648
+ include Aws::Structure
33649
+ end
33650
+
33309
33651
  # Configuration that controls the parallelism of the pipeline. By
33310
33652
  # default, the parallelism configuration specified applies to all
33311
33653
  # executions of the pipeline unless overridden.
@@ -38406,6 +38748,21 @@ module Aws::SageMaker
38406
38748
  include Aws::Structure
38407
38749
  end
38408
38750
 
38751
+ # The application settings for a Code Editor space.
38752
+ #
38753
+ # @!attribute [rw] default_resource_spec
38754
+ # Specifies the ARN's of a SageMaker image and SageMaker image
38755
+ # version, and the instance type that the version runs on.
38756
+ # @return [Types::ResourceSpec]
38757
+ #
38758
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceCodeEditorAppSettings AWS API Documentation
38759
+ #
38760
+ class SpaceCodeEditorAppSettings < Struct.new(
38761
+ :default_resource_spec)
38762
+ SENSITIVE = []
38763
+ include Aws::Structure
38764
+ end
38765
+
38409
38766
  # The space's details.
38410
38767
  #
38411
38768
  # @!attribute [rw] domain_id
@@ -38428,6 +38785,22 @@ module Aws::SageMaker
38428
38785
  # The last modified time.
38429
38786
  # @return [Time]
38430
38787
  #
38788
+ # @!attribute [rw] space_display_name
38789
+ # The name of the space that appears in the Studio UI.
38790
+ # @return [String]
38791
+ #
38792
+ # @!attribute [rw] space_settings_summary
38793
+ # Specifies summary information about the space settings.
38794
+ # @return [Types::SpaceSettingsSummary]
38795
+ #
38796
+ # @!attribute [rw] space_sharing_settings_summary
38797
+ # Specifies summary information about the space sharing settings.
38798
+ # @return [Types::SpaceSharingSettingsSummary]
38799
+ #
38800
+ # @!attribute [rw] ownership_settings_summary
38801
+ # Specifies summary information about the ownership settings.
38802
+ # @return [Types::OwnershipSettingsSummary]
38803
+ #
38431
38804
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceDetails AWS API Documentation
38432
38805
  #
38433
38806
  class SpaceDetails < Struct.new(
@@ -38435,7 +38808,32 @@ module Aws::SageMaker
38435
38808
  :space_name,
38436
38809
  :status,
38437
38810
  :creation_time,
38438
- :last_modified_time)
38811
+ :last_modified_time,
38812
+ :space_display_name,
38813
+ :space_settings_summary,
38814
+ :space_sharing_settings_summary,
38815
+ :ownership_settings_summary)
38816
+ SENSITIVE = []
38817
+ include Aws::Structure
38818
+ end
38819
+
38820
+ # The settings for the JupyterLab application within a space.
38821
+ #
38822
+ # @!attribute [rw] default_resource_spec
38823
+ # Specifies the ARN's of a SageMaker image and SageMaker image
38824
+ # version, and the instance type that the version runs on.
38825
+ # @return [Types::ResourceSpec]
38826
+ #
38827
+ # @!attribute [rw] code_repositories
38828
+ # A list of Git repositories that SageMaker automatically displays to
38829
+ # users for cloning in the JupyterLab application.
38830
+ # @return [Array<Types::CodeRepository>]
38831
+ #
38832
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceJupyterLabAppSettings AWS API Documentation
38833
+ #
38834
+ class SpaceJupyterLabAppSettings < Struct.new(
38835
+ :default_resource_spec,
38836
+ :code_repositories)
38439
38837
  SENSITIVE = []
38440
38838
  include Aws::Structure
38441
38839
  end
@@ -38450,11 +38848,99 @@ module Aws::SageMaker
38450
38848
  # The KernelGateway app settings.
38451
38849
  # @return [Types::KernelGatewayAppSettings]
38452
38850
  #
38851
+ # @!attribute [rw] jupyter_lab_app_settings
38852
+ # The settings for the JupyterLab application.
38853
+ # @return [Types::SpaceJupyterLabAppSettings]
38854
+ #
38855
+ # @!attribute [rw] code_editor_app_settings
38856
+ # The Code Editor application settings.
38857
+ # @return [Types::SpaceCodeEditorAppSettings]
38858
+ #
38859
+ # @!attribute [rw] space_storage_settings
38860
+ # The storage settings for a private space.
38861
+ # @return [Types::SpaceStorageSettings]
38862
+ #
38863
+ # @!attribute [rw] app_type
38864
+ # The type of app created within the space.
38865
+ # @return [String]
38866
+ #
38867
+ # @!attribute [rw] custom_file_systems
38868
+ # A file system, created by you, that you assign to a space for an
38869
+ # Amazon SageMaker Domain. Permitted users can access this file system
38870
+ # in Amazon SageMaker Studio.
38871
+ # @return [Array<Types::CustomFileSystem>]
38872
+ #
38453
38873
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceSettings AWS API Documentation
38454
38874
  #
38455
38875
  class SpaceSettings < Struct.new(
38456
38876
  :jupyter_server_app_settings,
38457
- :kernel_gateway_app_settings)
38877
+ :kernel_gateway_app_settings,
38878
+ :jupyter_lab_app_settings,
38879
+ :code_editor_app_settings,
38880
+ :space_storage_settings,
38881
+ :app_type,
38882
+ :custom_file_systems)
38883
+ SENSITIVE = []
38884
+ include Aws::Structure
38885
+ end
38886
+
38887
+ # Specifies summary information about the space settings.
38888
+ #
38889
+ # @!attribute [rw] app_type
38890
+ # The type of app created within the space.
38891
+ # @return [String]
38892
+ #
38893
+ # @!attribute [rw] space_storage_settings
38894
+ # The storage settings for a private space.
38895
+ # @return [Types::SpaceStorageSettings]
38896
+ #
38897
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceSettingsSummary AWS API Documentation
38898
+ #
38899
+ class SpaceSettingsSummary < Struct.new(
38900
+ :app_type,
38901
+ :space_storage_settings)
38902
+ SENSITIVE = []
38903
+ include Aws::Structure
38904
+ end
38905
+
38906
+ # A collection of space sharing settings.
38907
+ #
38908
+ # @!attribute [rw] sharing_type
38909
+ # Specifies the sharing type of the space.
38910
+ # @return [String]
38911
+ #
38912
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceSharingSettings AWS API Documentation
38913
+ #
38914
+ class SpaceSharingSettings < Struct.new(
38915
+ :sharing_type)
38916
+ SENSITIVE = []
38917
+ include Aws::Structure
38918
+ end
38919
+
38920
+ # Specifies summary information about the space sharing settings.
38921
+ #
38922
+ # @!attribute [rw] sharing_type
38923
+ # Specifies the sharing type of the space.
38924
+ # @return [String]
38925
+ #
38926
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceSharingSettingsSummary AWS API Documentation
38927
+ #
38928
+ class SpaceSharingSettingsSummary < Struct.new(
38929
+ :sharing_type)
38930
+ SENSITIVE = []
38931
+ include Aws::Structure
38932
+ end
38933
+
38934
+ # The storage settings for a private space.
38935
+ #
38936
+ # @!attribute [rw] ebs_storage_settings
38937
+ # A collection of EBS storage settings for a private space.
38938
+ # @return [Types::EbsStorageSettings]
38939
+ #
38940
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/SpaceStorageSettings AWS API Documentation
38941
+ #
38942
+ class SpaceStorageSettings < Struct.new(
38943
+ :ebs_storage_settings)
38458
38944
  SENSITIVE = []
38459
38945
  include Aws::Structure
38460
38946
  end
@@ -41860,11 +42346,16 @@ module Aws::SageMaker
41860
42346
  # The new KernelGateway app to run on the image.
41861
42347
  # @return [Types::KernelGatewayImageConfig]
41862
42348
  #
42349
+ # @!attribute [rw] jupyter_lab_app_image_config
42350
+ # The JupyterLab app running on the image.
42351
+ # @return [Types::JupyterLabAppImageConfig]
42352
+ #
41863
42353
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateAppImageConfigRequest AWS API Documentation
41864
42354
  #
41865
42355
  class UpdateAppImageConfigRequest < Struct.new(
41866
42356
  :app_image_config_name,
41867
- :kernel_gateway_image_config)
42357
+ :kernel_gateway_image_config,
42358
+ :jupyter_lab_app_image_config)
41868
42359
  SENSITIVE = []
41869
42360
  include Aws::Structure
41870
42361
  end
@@ -43216,12 +43707,18 @@ module Aws::SageMaker
43216
43707
  # A collection of space settings.
43217
43708
  # @return [Types::SpaceSettings]
43218
43709
  #
43710
+ # @!attribute [rw] space_display_name
43711
+ # The name of the space that appears in the Amazon SageMaker Studio
43712
+ # UI.
43713
+ # @return [String]
43714
+ #
43219
43715
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UpdateSpaceRequest AWS API Documentation
43220
43716
  #
43221
43717
  class UpdateSpaceRequest < Struct.new(
43222
43718
  :domain_id,
43223
43719
  :space_name,
43224
- :space_settings)
43720
+ :space_settings,
43721
+ :space_display_name)
43225
43722
  SENSITIVE = []
43226
43723
  include Aws::Structure
43227
43724
  end
@@ -43682,6 +44179,18 @@ module Aws::SageMaker
43682
44179
  # The Canvas app settings.
43683
44180
  # @return [Types::CanvasAppSettings]
43684
44181
  #
44182
+ # @!attribute [rw] jupyter_lab_app_settings
44183
+ # The settings for the JupyterLab application.
44184
+ # @return [Types::JupyterLabAppSettings]
44185
+ #
44186
+ # @!attribute [rw] code_editor_app_settings
44187
+ # The Code Editor application settings.
44188
+ # @return [Types::CodeEditorAppSettings]
44189
+ #
44190
+ # @!attribute [rw] space_storage_settings
44191
+ # The storage settings for a private space.
44192
+ # @return [Types::DefaultSpaceStorageSettings]
44193
+ #
43685
44194
  # @!attribute [rw] default_landing_uri
43686
44195
  # The default experience that the user is directed to when accessing
43687
44196
  # the domain. The supported values are:
@@ -43699,6 +44208,17 @@ module Aws::SageMaker
43699
44208
  # default experience for the domain.
43700
44209
  # @return [String]
43701
44210
  #
44211
+ # @!attribute [rw] custom_posix_user_config
44212
+ # Details about the POSIX identity that is used for file system
44213
+ # operations.
44214
+ # @return [Types::CustomPosixUserConfig]
44215
+ #
44216
+ # @!attribute [rw] custom_file_system_configs
44217
+ # The settings for assigning a custom file system to a user profile.
44218
+ # Permitted users can access this file system in Amazon SageMaker
44219
+ # Studio.
44220
+ # @return [Array<Types::CustomFileSystemConfig>]
44221
+ #
43702
44222
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/UserSettings AWS API Documentation
43703
44223
  #
43704
44224
  class UserSettings < Struct.new(
@@ -43711,8 +44231,13 @@ module Aws::SageMaker
43711
44231
  :r_studio_server_pro_app_settings,
43712
44232
  :r_session_app_settings,
43713
44233
  :canvas_app_settings,
44234
+ :jupyter_lab_app_settings,
44235
+ :code_editor_app_settings,
44236
+ :space_storage_settings,
43714
44237
  :default_landing_uri,
43715
- :studio_web_portal)
44238
+ :studio_web_portal,
44239
+ :custom_posix_user_config,
44240
+ :custom_file_system_configs)
43716
44241
  SENSITIVE = []
43717
44242
  include Aws::Structure
43718
44243
  end