CfnSpaceMixinProps
- class aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnSpaceMixinProps(*, domain_id=None, ownership_settings=None, space_display_name=None, space_name=None, space_settings=None, space_sharing_settings=None, tags=None)
Bases:
objectProperties for CfnSpacePropsMixin.
- Parameters:
domain_id (
Optional[str]) – The ID of the associated domain.ownership_settings (
Union[IResolvable,OwnershipSettingsProperty,Dict[str,Any],None]) – The collection of ownership settings for a space.space_display_name (
Optional[str]) – The name of the space that appears in the Studio UI.space_name (
Optional[str]) – The name of the space.space_settings (
Union[IResolvable,SpaceSettingsProperty,Dict[str,Any],None]) – A collection of space settings.space_sharing_settings (
Union[IResolvable,SpaceSharingSettingsProperty,Dict[str,Any],None]) – A collection of space sharing settings.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs to apply to this resource. For more information, see Tag .
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-space.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_sagemaker import mixins as sagemaker_mixins cfn_space_mixin_props = sagemaker_mixins.CfnSpaceMixinProps( domain_id="domainId", ownership_settings=sagemaker_mixins.CfnSpacePropsMixin.OwnershipSettingsProperty( owner_user_profile_name="ownerUserProfileName" ), space_display_name="spaceDisplayName", space_name="spaceName", space_settings=sagemaker_mixins.CfnSpacePropsMixin.SpaceSettingsProperty( app_type="appType", code_editor_app_settings=sagemaker_mixins.CfnSpacePropsMixin.SpaceCodeEditorAppSettingsProperty( app_lifecycle_management=sagemaker_mixins.CfnSpacePropsMixin.SpaceAppLifecycleManagementProperty( idle_settings=sagemaker_mixins.CfnSpacePropsMixin.SpaceIdleSettingsProperty( idle_timeout_in_minutes=123 ) ), default_resource_spec=sagemaker_mixins.CfnSpacePropsMixin.ResourceSpecProperty( instance_type="instanceType", lifecycle_config_arn="lifecycleConfigArn", sage_maker_image_arn="sageMakerImageArn", sage_maker_image_version_arn="sageMakerImageVersionArn" ) ), custom_file_systems=[sagemaker_mixins.CfnSpacePropsMixin.CustomFileSystemProperty( efs_file_system=sagemaker_mixins.CfnSpacePropsMixin.EFSFileSystemProperty( file_system_id="fileSystemId" ), f_sx_lustre_file_system=sagemaker_mixins.CfnSpacePropsMixin.FSxLustreFileSystemProperty( file_system_id="fileSystemId" ), s3_file_system=sagemaker_mixins.CfnSpacePropsMixin.S3FileSystemProperty( s3_uri="s3Uri" ) )], jupyter_lab_app_settings=sagemaker_mixins.CfnSpacePropsMixin.SpaceJupyterLabAppSettingsProperty( app_lifecycle_management=sagemaker_mixins.CfnSpacePropsMixin.SpaceAppLifecycleManagementProperty( idle_settings=sagemaker_mixins.CfnSpacePropsMixin.SpaceIdleSettingsProperty( idle_timeout_in_minutes=123 ) ), code_repositories=[sagemaker_mixins.CfnSpacePropsMixin.CodeRepositoryProperty( repository_url="repositoryUrl" )], default_resource_spec=sagemaker_mixins.CfnSpacePropsMixin.ResourceSpecProperty( instance_type="instanceType", lifecycle_config_arn="lifecycleConfigArn", sage_maker_image_arn="sageMakerImageArn", sage_maker_image_version_arn="sageMakerImageVersionArn" ) ), jupyter_server_app_settings=sagemaker_mixins.CfnSpacePropsMixin.JupyterServerAppSettingsProperty( default_resource_spec=sagemaker_mixins.CfnSpacePropsMixin.ResourceSpecProperty( instance_type="instanceType", lifecycle_config_arn="lifecycleConfigArn", sage_maker_image_arn="sageMakerImageArn", sage_maker_image_version_arn="sageMakerImageVersionArn" ), lifecycle_config_arns=["lifecycleConfigArns"] ), kernel_gateway_app_settings=sagemaker_mixins.CfnSpacePropsMixin.KernelGatewayAppSettingsProperty( custom_images=[sagemaker_mixins.CfnSpacePropsMixin.CustomImageProperty( app_image_config_name="appImageConfigName", image_name="imageName", image_version_number=123 )], default_resource_spec=sagemaker_mixins.CfnSpacePropsMixin.ResourceSpecProperty( instance_type="instanceType", lifecycle_config_arn="lifecycleConfigArn", sage_maker_image_arn="sageMakerImageArn", sage_maker_image_version_arn="sageMakerImageVersionArn" ), lifecycle_config_arns=["lifecycleConfigArns"] ), remote_access="remoteAccess", space_managed_resources="spaceManagedResources", space_storage_settings=sagemaker_mixins.CfnSpacePropsMixin.SpaceStorageSettingsProperty( ebs_storage_settings=sagemaker_mixins.CfnSpacePropsMixin.EbsStorageSettingsProperty( ebs_volume_size_in_gb=123 ) ) ), space_sharing_settings=sagemaker_mixins.CfnSpacePropsMixin.SpaceSharingSettingsProperty( sharing_type="sharingType" ), tags=[CfnTag( key="key", value="value" )] )
Attributes
- domain_id
The ID of the associated domain.
- ownership_settings
The collection of ownership settings for a space.
- space_display_name
The name of the space that appears in the Studio UI.
- space_name
The name of the space.
- space_settings
A collection of space settings.
- space_sharing_settings
A collection of space sharing settings.