aws-sdk-sagemaker 1.327.0 → 1.329.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.
@@ -320,6 +320,7 @@ module Aws::SageMaker
320
320
  ClusterAutoScalingStatus = Shapes::StringShape.new(name: 'ClusterAutoScalingStatus')
321
321
  ClusterAvailabilityZone = Shapes::StringShape.new(name: 'ClusterAvailabilityZone')
322
322
  ClusterAvailabilityZoneId = Shapes::StringShape.new(name: 'ClusterAvailabilityZoneId')
323
+ ClusterConfigMode = Shapes::StringShape.new(name: 'ClusterConfigMode')
323
324
  ClusterEbsVolumeConfig = Shapes::StructureShape.new(name: 'ClusterEbsVolumeConfig')
324
325
  ClusterEbsVolumeSizeInGB = Shapes::IntegerShape.new(name: 'ClusterEbsVolumeSizeInGB')
325
326
  ClusterEventDetail = Shapes::StructureShape.new(name: 'ClusterEventDetail')
@@ -334,6 +335,7 @@ module Aws::SageMaker
334
335
  ClusterInstanceGroupSpecification = Shapes::StructureShape.new(name: 'ClusterInstanceGroupSpecification')
335
336
  ClusterInstanceGroupSpecifications = Shapes::ListShape.new(name: 'ClusterInstanceGroupSpecifications')
336
337
  ClusterInstanceGroupsToDelete = Shapes::ListShape.new(name: 'ClusterInstanceGroupsToDelete')
338
+ ClusterInstanceMemoryAllocationPercentage = Shapes::IntegerShape.new(name: 'ClusterInstanceMemoryAllocationPercentage')
337
339
  ClusterInstancePlacement = Shapes::StructureShape.new(name: 'ClusterInstancePlacement')
338
340
  ClusterInstanceStatus = Shapes::StringShape.new(name: 'ClusterInstanceStatus')
339
341
  ClusterInstanceStatusDetails = Shapes::StructureShape.new(name: 'ClusterInstanceStatusDetails')
@@ -374,6 +376,7 @@ module Aws::SageMaker
374
376
  ClusterSummaries = Shapes::ListShape.new(name: 'ClusterSummaries')
375
377
  ClusterSummary = Shapes::StructureShape.new(name: 'ClusterSummary')
376
378
  ClusterThreadsPerCore = Shapes::IntegerShape.new(name: 'ClusterThreadsPerCore')
379
+ ClusterTieredStorageConfig = Shapes::StructureShape.new(name: 'ClusterTieredStorageConfig')
377
380
  CodeEditorAppImageConfig = Shapes::StructureShape.new(name: 'CodeEditorAppImageConfig')
378
381
  CodeEditorAppSettings = Shapes::StructureShape.new(name: 'CodeEditorAppSettings')
379
382
  CodeRepositories = Shapes::ListShape.new(name: 'CodeRepositories')
@@ -1199,6 +1202,7 @@ module Aws::SageMaker
1199
1202
  HyperbandStrategyConfig = Shapes::StructureShape.new(name: 'HyperbandStrategyConfig')
1200
1203
  HyperbandStrategyMaxResource = Shapes::IntegerShape.new(name: 'HyperbandStrategyMaxResource')
1201
1204
  HyperbandStrategyMinResource = Shapes::IntegerShape.new(name: 'HyperbandStrategyMinResource')
1205
+ IPAddressType = Shapes::StringShape.new(name: 'IPAddressType')
1202
1206
  IamIdentity = Shapes::StructureShape.new(name: 'IamIdentity')
1203
1207
  IamPolicyConstraints = Shapes::StructureShape.new(name: 'IamPolicyConstraints')
1204
1208
  IdempotencyToken = Shapes::StringShape.new(name: 'IdempotencyToken')
@@ -3593,6 +3597,10 @@ module Aws::SageMaker
3593
3597
  ClusterSummary.add_member(:training_plan_arns, Shapes::ShapeRef.new(shape: TrainingPlanArns, location_name: "TrainingPlanArns"))
3594
3598
  ClusterSummary.struct_class = Types::ClusterSummary
3595
3599
 
3600
+ ClusterTieredStorageConfig.add_member(:mode, Shapes::ShapeRef.new(shape: ClusterConfigMode, required: true, location_name: "Mode"))
3601
+ ClusterTieredStorageConfig.add_member(:instance_memory_allocation_percentage, Shapes::ShapeRef.new(shape: ClusterInstanceMemoryAllocationPercentage, location_name: "InstanceMemoryAllocationPercentage"))
3602
+ ClusterTieredStorageConfig.struct_class = Types::ClusterTieredStorageConfig
3603
+
3596
3604
  CodeEditorAppImageConfig.add_member(:file_system_config, Shapes::ShapeRef.new(shape: FileSystemConfig, location_name: "FileSystemConfig"))
3597
3605
  CodeEditorAppImageConfig.add_member(:container_config, Shapes::ShapeRef.new(shape: ContainerConfig, location_name: "ContainerConfig"))
3598
3606
  CodeEditorAppImageConfig.struct_class = Types::CodeEditorAppImageConfig
@@ -3853,6 +3861,7 @@ module Aws::SageMaker
3853
3861
  CreateClusterRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
3854
3862
  CreateClusterRequest.add_member(:orchestrator, Shapes::ShapeRef.new(shape: ClusterOrchestrator, location_name: "Orchestrator"))
3855
3863
  CreateClusterRequest.add_member(:node_recovery, Shapes::ShapeRef.new(shape: ClusterNodeRecovery, location_name: "NodeRecovery"))
3864
+ CreateClusterRequest.add_member(:tiered_storage_config, Shapes::ShapeRef.new(shape: ClusterTieredStorageConfig, location_name: "TieredStorageConfig"))
3856
3865
  CreateClusterRequest.add_member(:node_provisioning_mode, Shapes::ShapeRef.new(shape: ClusterNodeProvisioningMode, location_name: "NodeProvisioningMode"))
3857
3866
  CreateClusterRequest.add_member(:cluster_role, Shapes::ShapeRef.new(shape: RoleArn, location_name: "ClusterRole"))
3858
3867
  CreateClusterRequest.add_member(:auto_scaling, Shapes::ShapeRef.new(shape: ClusterAutoScalingConfig, location_name: "AutoScaling"))
@@ -4319,6 +4328,7 @@ module Aws::SageMaker
4319
4328
  CreateNotebookInstanceInput.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, required: true, location_name: "InstanceType"))
4320
4329
  CreateNotebookInstanceInput.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, location_name: "SubnetId"))
4321
4330
  CreateNotebookInstanceInput.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "SecurityGroupIds"))
4331
+ CreateNotebookInstanceInput.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IPAddressType, location_name: "IpAddressType"))
4322
4332
  CreateNotebookInstanceInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "RoleArn"))
4323
4333
  CreateNotebookInstanceInput.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: KmsKeyId, location_name: "KmsKeyId"))
4324
4334
  CreateNotebookInstanceInput.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
@@ -5192,6 +5202,7 @@ module Aws::SageMaker
5192
5202
  DescribeClusterResponse.add_member(:restricted_instance_groups, Shapes::ShapeRef.new(shape: ClusterRestrictedInstanceGroupDetailsList, location_name: "RestrictedInstanceGroups"))
5193
5203
  DescribeClusterResponse.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "VpcConfig"))
5194
5204
  DescribeClusterResponse.add_member(:orchestrator, Shapes::ShapeRef.new(shape: ClusterOrchestrator, location_name: "Orchestrator"))
5205
+ DescribeClusterResponse.add_member(:tiered_storage_config, Shapes::ShapeRef.new(shape: ClusterTieredStorageConfig, location_name: "TieredStorageConfig"))
5195
5206
  DescribeClusterResponse.add_member(:node_recovery, Shapes::ShapeRef.new(shape: ClusterNodeRecovery, location_name: "NodeRecovery"))
5196
5207
  DescribeClusterResponse.add_member(:node_provisioning_mode, Shapes::ShapeRef.new(shape: ClusterNodeProvisioningMode, location_name: "NodeProvisioningMode"))
5197
5208
  DescribeClusterResponse.add_member(:cluster_role, Shapes::ShapeRef.new(shape: RoleArn, location_name: "ClusterRole"))
@@ -5906,6 +5917,7 @@ module Aws::SageMaker
5906
5917
  DescribeNotebookInstanceOutput.add_member(:failure_reason, Shapes::ShapeRef.new(shape: FailureReason, location_name: "FailureReason"))
5907
5918
  DescribeNotebookInstanceOutput.add_member(:url, Shapes::ShapeRef.new(shape: NotebookInstanceUrl, location_name: "Url"))
5908
5919
  DescribeNotebookInstanceOutput.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, location_name: "InstanceType"))
5920
+ DescribeNotebookInstanceOutput.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IPAddressType, location_name: "IpAddressType"))
5909
5921
  DescribeNotebookInstanceOutput.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, location_name: "SubnetId"))
5910
5922
  DescribeNotebookInstanceOutput.add_member(:security_groups, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "SecurityGroups"))
5911
5923
  DescribeNotebookInstanceOutput.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
@@ -6391,6 +6403,7 @@ module Aws::SageMaker
6391
6403
  DomainSettings.add_member(:docker_settings, Shapes::ShapeRef.new(shape: DockerSettings, location_name: "DockerSettings"))
6392
6404
  DomainSettings.add_member(:amazon_q_settings, Shapes::ShapeRef.new(shape: AmazonQSettings, location_name: "AmazonQSettings"))
6393
6405
  DomainSettings.add_member(:unified_studio_settings, Shapes::ShapeRef.new(shape: UnifiedStudioSettings, location_name: "UnifiedStudioSettings"))
6406
+ DomainSettings.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IPAddressType, location_name: "IpAddressType"))
6394
6407
  DomainSettings.struct_class = Types::DomainSettings
6395
6408
 
6396
6409
  DomainSettingsForUpdate.add_member(:r_studio_server_pro_domain_settings_for_update, Shapes::ShapeRef.new(shape: RStudioServerProDomainSettingsForUpdate, location_name: "RStudioServerProDomainSettingsForUpdate"))
@@ -6400,6 +6413,7 @@ module Aws::SageMaker
6400
6413
  DomainSettingsForUpdate.add_member(:docker_settings, Shapes::ShapeRef.new(shape: DockerSettings, location_name: "DockerSettings"))
6401
6414
  DomainSettingsForUpdate.add_member(:amazon_q_settings, Shapes::ShapeRef.new(shape: AmazonQSettings, location_name: "AmazonQSettings"))
6402
6415
  DomainSettingsForUpdate.add_member(:unified_studio_settings, Shapes::ShapeRef.new(shape: UnifiedStudioSettings, location_name: "UnifiedStudioSettings"))
6416
+ DomainSettingsForUpdate.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IPAddressType, location_name: "IpAddressType"))
6403
6417
  DomainSettingsForUpdate.struct_class = Types::DomainSettingsForUpdate
6404
6418
 
6405
6419
  DriftCheckBaselines.add_member(:bias, Shapes::ShapeRef.new(shape: DriftCheckBias, location_name: "Bias"))
@@ -11304,6 +11318,7 @@ module Aws::SageMaker
11304
11318
  UpdateClusterRequest.add_member(:cluster_name, Shapes::ShapeRef.new(shape: ClusterNameOrArn, required: true, location_name: "ClusterName"))
11305
11319
  UpdateClusterRequest.add_member(:instance_groups, Shapes::ShapeRef.new(shape: ClusterInstanceGroupSpecifications, location_name: "InstanceGroups"))
11306
11320
  UpdateClusterRequest.add_member(:restricted_instance_groups, Shapes::ShapeRef.new(shape: ClusterRestrictedInstanceGroupSpecifications, location_name: "RestrictedInstanceGroups"))
11321
+ UpdateClusterRequest.add_member(:tiered_storage_config, Shapes::ShapeRef.new(shape: ClusterTieredStorageConfig, location_name: "TieredStorageConfig"))
11307
11322
  UpdateClusterRequest.add_member(:node_recovery, Shapes::ShapeRef.new(shape: ClusterNodeRecovery, location_name: "NodeRecovery"))
11308
11323
  UpdateClusterRequest.add_member(:instance_groups_to_delete, Shapes::ShapeRef.new(shape: ClusterInstanceGroupsToDelete, location_name: "InstanceGroupsToDelete"))
11309
11324
  UpdateClusterRequest.add_member(:cluster_role, Shapes::ShapeRef.new(shape: RoleArn, location_name: "ClusterRole"))
@@ -11572,6 +11587,7 @@ module Aws::SageMaker
11572
11587
 
11573
11588
  UpdateNotebookInstanceInput.add_member(:notebook_instance_name, Shapes::ShapeRef.new(shape: NotebookInstanceName, required: true, location_name: "NotebookInstanceName"))
11574
11589
  UpdateNotebookInstanceInput.add_member(:instance_type, Shapes::ShapeRef.new(shape: InstanceType, location_name: "InstanceType"))
11590
+ UpdateNotebookInstanceInput.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IPAddressType, location_name: "IpAddressType"))
11575
11591
  UpdateNotebookInstanceInput.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
11576
11592
  UpdateNotebookInstanceInput.add_member(:lifecycle_config_name, Shapes::ShapeRef.new(shape: NotebookInstanceLifecycleConfigName, location_name: "LifecycleConfigName"))
11577
11593
  UpdateNotebookInstanceInput.add_member(:disassociate_lifecycle_config, Shapes::ShapeRef.new(shape: DisassociateNotebookInstanceLifecycleConfig, location_name: "DisassociateLifecycleConfig", metadata: {"box" => true}))
@@ -5848,6 +5848,36 @@ module Aws::SageMaker
5848
5848
  include Aws::Structure
5849
5849
  end
5850
5850
 
5851
+ # Defines the configuration for managed tier checkpointing in a HyperPod
5852
+ # cluster. Managed tier checkpointing uses multiple storage tiers,
5853
+ # including cluster CPU memory, to provide faster checkpoint operations
5854
+ # and improved fault tolerance for large-scale model training. The
5855
+ # system automatically saves checkpoints at high frequency to memory and
5856
+ # periodically persists them to durable storage, like Amazon S3.
5857
+ #
5858
+ # @!attribute [rw] mode
5859
+ # Specifies whether managed tier checkpointing is enabled or disabled
5860
+ # for the HyperPod cluster. When set to `Enable`, the system installs
5861
+ # a memory management daemon that provides disaggregated memory as a
5862
+ # service for checkpoint storage. When set to `Disable`, the feature
5863
+ # is turned off and the memory management daemon is removed from the
5864
+ # cluster.
5865
+ # @return [String]
5866
+ #
5867
+ # @!attribute [rw] instance_memory_allocation_percentage
5868
+ # The percentage (int) of cluster memory to allocate for
5869
+ # checkpointing.
5870
+ # @return [Integer]
5871
+ #
5872
+ # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/ClusterTieredStorageConfig AWS API Documentation
5873
+ #
5874
+ class ClusterTieredStorageConfig < Struct.new(
5875
+ :mode,
5876
+ :instance_memory_allocation_percentage)
5877
+ SENSITIVE = []
5878
+ include Aws::Structure
5879
+ end
5880
+
5851
5881
  # The configuration for the file system and kernels in a SageMaker image
5852
5882
  # running as a Code Editor app. The `FileSystemConfig` object is not
5853
5883
  # supported.
@@ -7366,6 +7396,13 @@ module Aws::SageMaker
7366
7396
  # cluster instances.
7367
7397
  # @return [String]
7368
7398
  #
7399
+ # @!attribute [rw] tiered_storage_config
7400
+ # The configuration for managed tier checkpointing on the HyperPod
7401
+ # cluster. When enabled, this feature uses a multi-tier storage
7402
+ # approach for storing model checkpoints, providing faster checkpoint
7403
+ # operations and improved fault tolerance across cluster nodes.
7404
+ # @return [Types::ClusterTieredStorageConfig]
7405
+ #
7369
7406
  # @!attribute [rw] node_provisioning_mode
7370
7407
  # The mode for provisioning nodes in the cluster. You can specify the
7371
7408
  # following modes:
@@ -7406,6 +7443,7 @@ module Aws::SageMaker
7406
7443
  :tags,
7407
7444
  :orchestrator,
7408
7445
  :node_recovery,
7446
+ :tiered_storage_config,
7409
7447
  :node_provisioning_mode,
7410
7448
  :cluster_role,
7411
7449
  :auto_scaling)
@@ -9423,13 +9461,14 @@ module Aws::SageMaker
9423
9461
  #
9424
9462
  # * The name can't end with "-metadata".
9425
9463
  #
9426
- # * If you are using one of the following [built-in task types][1],
9427
- # the attribute name *must* end with "-ref". If the task type you
9428
- # are using is not listed below, the attribute name *must not* end
9429
- # with "-ref".
9464
+ # * If you are using one of the [built-in task types][1] or one of the
9465
+ # following, the attribute name *must* end with "-ref".
9430
9466
  #
9431
- # * Verification (`VerificationSemanticSegmentation`) labeling jobs
9432
- # for this task type.
9467
+ # * Image semantic segmentation (`SemanticSegmentation)` and
9468
+ # adjustment (`AdjustmentSemanticSegmentation`) labeling jobs for
9469
+ # this task type. One exception is that verification
9470
+ # (`VerificationSemanticSegmentation`) *must not* end with
9471
+ # -"ref".
9433
9472
  #
9434
9473
  # * Video frame object detection (`VideoObjectDetection`), and
9435
9474
  # adjustment and verification (`AdjustmentVideoObjectDetection`)
@@ -10461,6 +10500,13 @@ module Aws::SageMaker
10461
10500
  # groups must be for the same VPC as specified in the subnet.
10462
10501
  # @return [Array<String>]
10463
10502
  #
10503
+ # @!attribute [rw] ip_address_type
10504
+ # The IP address type for the notebook instance. Specify `ipv4` for
10505
+ # IPv4-only connectivity or `dualstack` for both IPv4 and IPv6
10506
+ # connectivity. When you specify `dualstack`, the subnet must support
10507
+ # IPv6 CIDR blocks. If not specified, defaults to `ipv4`.
10508
+ # @return [String]
10509
+ #
10464
10510
  # @!attribute [rw] role_arn
10465
10511
  # When you send any requests to Amazon Web Services resources from the
10466
10512
  # notebook instance, SageMaker AI assumes this role to perform tasks
@@ -10603,6 +10649,7 @@ module Aws::SageMaker
10603
10649
  :instance_type,
10604
10650
  :subnet_id,
10605
10651
  :security_group_ids,
10652
+ :ip_address_type,
10606
10653
  :role_arn,
10607
10654
  :kms_key_id,
10608
10655
  :tags,
@@ -15099,6 +15146,13 @@ module Aws::SageMaker
15099
15146
  # The type of orchestrator used for the SageMaker HyperPod cluster.
15100
15147
  # @return [Types::ClusterOrchestrator]
15101
15148
  #
15149
+ # @!attribute [rw] tiered_storage_config
15150
+ # The current configuration for managed tier checkpointing on the
15151
+ # HyperPod cluster. For example, this shows whether the feature is
15152
+ # enabled and the percentage of cluster memory allocated for
15153
+ # checkpoint storage.
15154
+ # @return [Types::ClusterTieredStorageConfig]
15155
+ #
15102
15156
  # @!attribute [rw] node_recovery
15103
15157
  # The node recovery mode configured for the SageMaker HyperPod
15104
15158
  # cluster.
@@ -15129,6 +15183,7 @@ module Aws::SageMaker
15129
15183
  :restricted_instance_groups,
15130
15184
  :vpc_config,
15131
15185
  :orchestrator,
15186
+ :tiered_storage_config,
15132
15187
  :node_recovery,
15133
15188
  :node_provisioning_mode,
15134
15189
  :cluster_role,
@@ -19022,6 +19077,12 @@ module Aws::SageMaker
19022
19077
  # The type of ML compute instance running on the notebook instance.
19023
19078
  # @return [String]
19024
19079
  #
19080
+ # @!attribute [rw] ip_address_type
19081
+ # The IP address type configured for the notebook instance. Returns
19082
+ # `ipv4` for IPv4-only connectivity or `dualstack` for both IPv4 and
19083
+ # IPv6 connectivity.
19084
+ # @return [String]
19085
+ #
19025
19086
  # @!attribute [rw] subnet_id
19026
19087
  # The ID of the VPC subnet.
19027
19088
  # @return [String]
@@ -19155,6 +19216,7 @@ module Aws::SageMaker
19155
19216
  :failure_reason,
19156
19217
  :url,
19157
19218
  :instance_type,
19219
+ :ip_address_type,
19158
19220
  :subnet_id,
19159
19221
  :security_groups,
19160
19222
  :role_arn,
@@ -19331,6 +19393,27 @@ module Aws::SageMaker
19331
19393
  #
19332
19394
  # @!attribute [rw] status
19333
19395
  # The status of the SageMaker Partner AI App.
19396
+ #
19397
+ # * Creating: SageMaker AI is creating the partner AI app. The partner
19398
+ # AI app is not available during creation.
19399
+ #
19400
+ # * Updating: SageMaker AI is updating the partner AI app. The partner
19401
+ # AI app is not available when updating.
19402
+ #
19403
+ # * Deleting: SageMaker AI is deleting the partner AI app. The partner
19404
+ # AI app is not available during deletion.
19405
+ #
19406
+ # * Available: The partner AI app is provisioned and accessible.
19407
+ #
19408
+ # * Failed: The partner AI app is in a failed state and isn't
19409
+ # available. SageMaker AI is investigating the issue. For further
19410
+ # guidance, contact Amazon Web Services Support.
19411
+ #
19412
+ # * UpdateFailed: The partner AI app couldn't be updated but is
19413
+ # available.
19414
+ #
19415
+ # * Deleted: The partner AI app is permanently deleted and not
19416
+ # available.
19334
19417
  # @return [String]
19335
19418
  #
19336
19419
  # @!attribute [rw] creation_time
@@ -21565,8 +21648,7 @@ module Aws::SageMaker
21565
21648
  # @return [Array<String>]
21566
21649
  #
21567
21650
  # @!attribute [rw] rootless_docker
21568
- # Indicates whether to use rootless Docker. Default value is
21569
- # `DISABLED`.
21651
+ # Indicates whether to use rootless Docker.
21570
21652
  # @return [String]
21571
21653
  #
21572
21654
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DockerSettings AWS API Documentation
@@ -21669,6 +21751,13 @@ module Aws::SageMaker
21669
21751
  # Amazon SageMaker Unified Studio.
21670
21752
  # @return [Types::UnifiedStudioSettings]
21671
21753
  #
21754
+ # @!attribute [rw] ip_address_type
21755
+ # The IP address type for the domain. Specify `ipv4` for IPv4-only
21756
+ # connectivity or `dualstack` for both IPv4 and IPv6 connectivity.
21757
+ # When you specify `dualstack`, the subnet must support IPv6 CIDR
21758
+ # blocks. If not specified, defaults to `ipv4`.
21759
+ # @return [String]
21760
+ #
21672
21761
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DomainSettings AWS API Documentation
21673
21762
  #
21674
21763
  class DomainSettings < Struct.new(
@@ -21678,7 +21767,8 @@ module Aws::SageMaker
21678
21767
  :trusted_identity_propagation_settings,
21679
21768
  :docker_settings,
21680
21769
  :amazon_q_settings,
21681
- :unified_studio_settings)
21770
+ :unified_studio_settings,
21771
+ :ip_address_type)
21682
21772
  SENSITIVE = []
21683
21773
  include Aws::Structure
21684
21774
  end
@@ -21730,6 +21820,13 @@ module Aws::SageMaker
21730
21820
  # Amazon SageMaker Unified Studio.
21731
21821
  # @return [Types::UnifiedStudioSettings]
21732
21822
  #
21823
+ # @!attribute [rw] ip_address_type
21824
+ # The IP address type for the domain. Specify `ipv4` for IPv4-only
21825
+ # connectivity or `dualstack` for both IPv4 and IPv6 connectivity.
21826
+ # When you specify `dualstack`, the subnet must support IPv6 CIDR
21827
+ # blocks.
21828
+ # @return [String]
21829
+ #
21733
21830
  # @see http://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DomainSettingsForUpdate AWS API Documentation
21734
21831
  #
21735
21832
  class DomainSettingsForUpdate < Struct.new(
@@ -21739,7 +21836,8 @@ module Aws::SageMaker
21739
21836
  :trusted_identity_propagation_settings,
21740
21837
  :docker_settings,
21741
21838
  :amazon_q_settings,
21742
- :unified_studio_settings)
21839
+ :unified_studio_settings,
21840
+ :ip_address_type)
21743
21841
  SENSITIVE = []
21744
21842
  include Aws::Structure
21745
21843
  end
@@ -50623,6 +50721,13 @@ module Aws::SageMaker
50623
50721
  # to be created in the SageMaker HyperPod cluster.
50624
50722
  # @return [Array<Types::ClusterRestrictedInstanceGroupSpecification>]
50625
50723
  #
50724
+ # @!attribute [rw] tiered_storage_config
50725
+ # Updates the configuration for managed tier checkpointing on the
50726
+ # HyperPod cluster. For example, you can enable or disable the feature
50727
+ # and modify the percentage of cluster memory allocated for checkpoint
50728
+ # storage.
50729
+ # @return [Types::ClusterTieredStorageConfig]
50730
+ #
50626
50731
  # @!attribute [rw] node_recovery
50627
50732
  # The node recovery mode to be applied to the SageMaker HyperPod
50628
50733
  # cluster.
@@ -50650,6 +50755,7 @@ module Aws::SageMaker
50650
50755
  :cluster_name,
50651
50756
  :instance_groups,
50652
50757
  :restricted_instance_groups,
50758
+ :tiered_storage_config,
50653
50759
  :node_recovery,
50654
50760
  :instance_groups_to_delete,
50655
50761
  :cluster_role,
@@ -52029,6 +52135,14 @@ module Aws::SageMaker
52029
52135
  # The Amazon ML compute instance type.
52030
52136
  # @return [String]
52031
52137
  #
52138
+ # @!attribute [rw] ip_address_type
52139
+ # The IP address type for the notebook instance. Specify `ipv4` for
52140
+ # IPv4-only connectivity or `dualstack` for both IPv4 and IPv6
52141
+ # connectivity. The notebook instance must be stopped before updating
52142
+ # this setting. When you specify `dualstack`, the subnet must support
52143
+ # IPv6 addressing.
52144
+ # @return [String]
52145
+ #
52032
52146
  # @!attribute [rw] role_arn
52033
52147
  # The Amazon Resource Name (ARN) of the IAM role that SageMaker AI can
52034
52148
  # assume to access the notebook instance. For more information, see
@@ -52155,6 +52269,7 @@ module Aws::SageMaker
52155
52269
  class UpdateNotebookInstanceInput < Struct.new(
52156
52270
  :notebook_instance_name,
52157
52271
  :instance_type,
52272
+ :ip_address_type,
52158
52273
  :role_arn,
52159
52274
  :lifecycle_config_name,
52160
52275
  :disassociate_lifecycle_config,
@@ -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.327.0'
58
+ GEM_VERSION = '1.329.0'
59
59
 
60
60
  end
61
61