1. Packages
  2. AWS Native
  3. API Docs
  4. sagemaker
  5. UserProfile

AWS Native is in preview. AWS Classic is fully supported.

AWS Native v0.102.0 published on Tuesday, Apr 16, 2024 by Pulumi

aws-native.sagemaker.UserProfile

Explore with Pulumi AI

aws-native logo

AWS Native is in preview. AWS Classic is fully supported.

AWS Native v0.102.0 published on Tuesday, Apr 16, 2024 by Pulumi

    Resource Type definition for AWS::SageMaker::UserProfile

    Create UserProfile Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new UserProfile(name: string, args: UserProfileArgs, opts?: CustomResourceOptions);
    @overload
    def UserProfile(resource_name: str,
                    args: UserProfileArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def UserProfile(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    domain_id: Optional[str] = None,
                    single_sign_on_user_identifier: Optional[str] = None,
                    single_sign_on_user_value: Optional[str] = None,
                    tags: Optional[Sequence[_root_inputs.CreateOnlyTagArgs]] = None,
                    user_profile_name: Optional[str] = None,
                    user_settings: Optional[UserProfileUserSettingsArgs] = None)
    func NewUserProfile(ctx *Context, name string, args UserProfileArgs, opts ...ResourceOption) (*UserProfile, error)
    public UserProfile(string name, UserProfileArgs args, CustomResourceOptions? opts = null)
    public UserProfile(String name, UserProfileArgs args)
    public UserProfile(String name, UserProfileArgs args, CustomResourceOptions options)
    
    type: aws-native:sagemaker:UserProfile
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args UserProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args UserProfileArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args UserProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args UserProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args UserProfileArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    const userProfileResource = new aws_native.sagemaker.UserProfile("userProfileResource", {
        domainId: "string",
        singleSignOnUserIdentifier: "string",
        singleSignOnUserValue: "string",
        tags: [{
            key: "string",
            value: "string",
        }],
        userProfileName: "string",
        userSettings: {
            codeEditorAppSettings: {
                customImages: [{
                    appImageConfigName: "string",
                    imageName: "string",
                    imageVersionNumber: 0,
                }],
                defaultResourceSpec: {
                    instanceType: aws_native.sagemaker.UserProfileResourceSpecInstanceType.System,
                    sageMakerImageArn: "string",
                    sageMakerImageVersionArn: "string",
                },
                lifecycleConfigArns: ["string"],
            },
            customFileSystemConfigs: [{
                efsFileSystemConfig: {
                    fileSystemId: "string",
                    fileSystemPath: "string",
                },
            }],
            customPosixUserConfig: {
                gid: 0,
                uid: 0,
            },
            defaultLandingUri: "string",
            executionRole: "string",
            jupyterLabAppSettings: {
                codeRepositories: [{
                    repositoryUrl: "string",
                }],
                customImages: [{
                    appImageConfigName: "string",
                    imageName: "string",
                    imageVersionNumber: 0,
                }],
                defaultResourceSpec: {
                    instanceType: aws_native.sagemaker.UserProfileResourceSpecInstanceType.System,
                    sageMakerImageArn: "string",
                    sageMakerImageVersionArn: "string",
                },
                lifecycleConfigArns: ["string"],
            },
            jupyterServerAppSettings: {
                defaultResourceSpec: {
                    instanceType: aws_native.sagemaker.UserProfileResourceSpecInstanceType.System,
                    sageMakerImageArn: "string",
                    sageMakerImageVersionArn: "string",
                },
            },
            kernelGatewayAppSettings: {
                customImages: [{
                    appImageConfigName: "string",
                    imageName: "string",
                    imageVersionNumber: 0,
                }],
                defaultResourceSpec: {
                    instanceType: aws_native.sagemaker.UserProfileResourceSpecInstanceType.System,
                    sageMakerImageArn: "string",
                    sageMakerImageVersionArn: "string",
                },
            },
            rStudioServerProAppSettings: {
                accessStatus: aws_native.sagemaker.UserProfileRStudioServerProAppSettingsAccessStatus.Enabled,
                userGroup: aws_native.sagemaker.UserProfileRStudioServerProAppSettingsUserGroup.RStudioAdmin,
            },
            securityGroups: ["string"],
            sharingSettings: {
                notebookOutputOption: aws_native.sagemaker.UserProfileSharingSettingsNotebookOutputOption.Allowed,
                s3KmsKeyId: "string",
                s3OutputPath: "string",
            },
            spaceStorageSettings: {
                defaultEbsStorageSettings: {
                    defaultEbsVolumeSizeInGb: 0,
                    maximumEbsVolumeSizeInGb: 0,
                },
            },
            studioWebPortal: aws_native.sagemaker.UserProfileUserSettingsStudioWebPortal.Enabled,
        },
    });
    
    Coming soon!
    

    UserProfile Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The UserProfile resource accepts the following input properties:

    DomainId string
    The ID of the associated Domain.
    SingleSignOnUserIdentifier string
    A specifier for the type of value specified in SingleSignOnUserValue. Currently, the only supported value is "UserName". If the Domain's AuthMode is SSO, this field is required. If the Domain's AuthMode is not SSO, this field cannot be specified.
    SingleSignOnUserValue string
    The username of the associated AWS Single Sign-On User for this UserProfile. If the Domain's AuthMode is SSO, this field is required, and must match a valid username of a user in your directory. If the Domain's AuthMode is not SSO, this field cannot be specified.
    Tags List<Pulumi.AwsNative.Inputs.CreateOnlyTag>
    A list of tags to apply to the user profile.
    UserProfileName string
    A name for the UserProfile.
    UserSettings Pulumi.AwsNative.SageMaker.Inputs.UserProfileUserSettings
    A collection of settings.
    DomainId string
    The ID of the associated Domain.
    SingleSignOnUserIdentifier string
    A specifier for the type of value specified in SingleSignOnUserValue. Currently, the only supported value is "UserName". If the Domain's AuthMode is SSO, this field is required. If the Domain's AuthMode is not SSO, this field cannot be specified.
    SingleSignOnUserValue string
    The username of the associated AWS Single Sign-On User for this UserProfile. If the Domain's AuthMode is SSO, this field is required, and must match a valid username of a user in your directory. If the Domain's AuthMode is not SSO, this field cannot be specified.
    Tags CreateOnlyTagArgs
    A list of tags to apply to the user profile.
    UserProfileName string
    A name for the UserProfile.
    UserSettings UserProfileUserSettingsArgs
    A collection of settings.
    domainId String
    The ID of the associated Domain.
    singleSignOnUserIdentifier String
    A specifier for the type of value specified in SingleSignOnUserValue. Currently, the only supported value is "UserName". If the Domain's AuthMode is SSO, this field is required. If the Domain's AuthMode is not SSO, this field cannot be specified.
    singleSignOnUserValue String
    The username of the associated AWS Single Sign-On User for this UserProfile. If the Domain's AuthMode is SSO, this field is required, and must match a valid username of a user in your directory. If the Domain's AuthMode is not SSO, this field cannot be specified.
    tags List<CreateOnlyTag>
    A list of tags to apply to the user profile.
    userProfileName String
    A name for the UserProfile.
    userSettings UserProfileUserSettings
    A collection of settings.
    domainId string
    The ID of the associated Domain.
    singleSignOnUserIdentifier string
    A specifier for the type of value specified in SingleSignOnUserValue. Currently, the only supported value is "UserName". If the Domain's AuthMode is SSO, this field is required. If the Domain's AuthMode is not SSO, this field cannot be specified.
    singleSignOnUserValue string
    The username of the associated AWS Single Sign-On User for this UserProfile. If the Domain's AuthMode is SSO, this field is required, and must match a valid username of a user in your directory. If the Domain's AuthMode is not SSO, this field cannot be specified.
    tags CreateOnlyTag[]
    A list of tags to apply to the user profile.
    userProfileName string
    A name for the UserProfile.
    userSettings UserProfileUserSettings
    A collection of settings.
    domain_id str
    The ID of the associated Domain.
    single_sign_on_user_identifier str
    A specifier for the type of value specified in SingleSignOnUserValue. Currently, the only supported value is "UserName". If the Domain's AuthMode is SSO, this field is required. If the Domain's AuthMode is not SSO, this field cannot be specified.
    single_sign_on_user_value str
    The username of the associated AWS Single Sign-On User for this UserProfile. If the Domain's AuthMode is SSO, this field is required, and must match a valid username of a user in your directory. If the Domain's AuthMode is not SSO, this field cannot be specified.
    tags Sequence[CreateOnlyTagArgs]
    A list of tags to apply to the user profile.
    user_profile_name str
    A name for the UserProfile.
    user_settings UserProfileUserSettingsArgs
    A collection of settings.
    domainId String
    The ID of the associated Domain.
    singleSignOnUserIdentifier String
    A specifier for the type of value specified in SingleSignOnUserValue. Currently, the only supported value is "UserName". If the Domain's AuthMode is SSO, this field is required. If the Domain's AuthMode is not SSO, this field cannot be specified.
    singleSignOnUserValue String
    The username of the associated AWS Single Sign-On User for this UserProfile. If the Domain's AuthMode is SSO, this field is required, and must match a valid username of a user in your directory. If the Domain's AuthMode is not SSO, this field cannot be specified.
    tags List<Property Map>
    A list of tags to apply to the user profile.
    userProfileName String
    A name for the UserProfile.
    userSettings Property Map
    A collection of settings.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the UserProfile resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    UserProfileArn string
    The user profile Amazon Resource Name (ARN).
    Id string
    The provider-assigned unique ID for this managed resource.
    UserProfileArn string
    The user profile Amazon Resource Name (ARN).
    id String
    The provider-assigned unique ID for this managed resource.
    userProfileArn String
    The user profile Amazon Resource Name (ARN).
    id string
    The provider-assigned unique ID for this managed resource.
    userProfileArn string
    The user profile Amazon Resource Name (ARN).
    id str
    The provider-assigned unique ID for this managed resource.
    user_profile_arn str
    The user profile Amazon Resource Name (ARN).
    id String
    The provider-assigned unique ID for this managed resource.
    userProfileArn String
    The user profile Amazon Resource Name (ARN).

    Supporting Types

    CreateOnlyTag, CreateOnlyTagArgs

    Key string
    The key name of the tag
    Value string
    The value of the tag
    Key string
    The key name of the tag
    Value string
    The value of the tag
    key String
    The key name of the tag
    value String
    The value of the tag
    key string
    The key name of the tag
    value string
    The value of the tag
    key str
    The key name of the tag
    value str
    The value of the tag
    key String
    The key name of the tag
    value String
    The value of the tag

    UserProfileCodeEditorAppSettings, UserProfileCodeEditorAppSettingsArgs

    CustomImages List<Pulumi.AwsNative.SageMaker.Inputs.UserProfileCustomImage>
    A list of custom images for use for CodeEditor apps.
    DefaultResourceSpec Pulumi.AwsNative.SageMaker.Inputs.UserProfileResourceSpec
    The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the CodeEditor app.
    LifecycleConfigArns List<string>
    A list of LifecycleConfigArns available for use with CodeEditor apps.
    CustomImages []UserProfileCustomImage
    A list of custom images for use for CodeEditor apps.
    DefaultResourceSpec UserProfileResourceSpec
    The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the CodeEditor app.
    LifecycleConfigArns []string
    A list of LifecycleConfigArns available for use with CodeEditor apps.
    customImages List<UserProfileCustomImage>
    A list of custom images for use for CodeEditor apps.
    defaultResourceSpec UserProfileResourceSpec
    The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the CodeEditor app.
    lifecycleConfigArns List<String>
    A list of LifecycleConfigArns available for use with CodeEditor apps.
    customImages UserProfileCustomImage[]
    A list of custom images for use for CodeEditor apps.
    defaultResourceSpec UserProfileResourceSpec
    The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the CodeEditor app.
    lifecycleConfigArns string[]
    A list of LifecycleConfigArns available for use with CodeEditor apps.
    custom_images Sequence[UserProfileCustomImage]
    A list of custom images for use for CodeEditor apps.
    default_resource_spec UserProfileResourceSpec
    The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the CodeEditor app.
    lifecycle_config_arns Sequence[str]
    A list of LifecycleConfigArns available for use with CodeEditor apps.
    customImages List<Property Map>
    A list of custom images for use for CodeEditor apps.
    defaultResourceSpec Property Map
    The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the CodeEditor app.
    lifecycleConfigArns List<String>
    A list of LifecycleConfigArns available for use with CodeEditor apps.

    UserProfileCodeRepository, UserProfileCodeRepositoryArgs

    RepositoryUrl string
    A CodeRepository (valid URL) to be used within Jupyter's Git extension.
    RepositoryUrl string
    A CodeRepository (valid URL) to be used within Jupyter's Git extension.
    repositoryUrl String
    A CodeRepository (valid URL) to be used within Jupyter's Git extension.
    repositoryUrl string
    A CodeRepository (valid URL) to be used within Jupyter's Git extension.
    repository_url str
    A CodeRepository (valid URL) to be used within Jupyter's Git extension.
    repositoryUrl String
    A CodeRepository (valid URL) to be used within Jupyter's Git extension.

    UserProfileCustomFileSystemConfig, UserProfileCustomFileSystemConfigArgs

    UserProfileCustomImage, UserProfileCustomImageArgs

    AppImageConfigName string
    The Name of the AppImageConfig.
    ImageName string
    The name of the CustomImage. Must be unique to your account.
    ImageVersionNumber int
    The version number of the CustomImage.
    AppImageConfigName string
    The Name of the AppImageConfig.
    ImageName string
    The name of the CustomImage. Must be unique to your account.
    ImageVersionNumber int
    The version number of the CustomImage.
    appImageConfigName String
    The Name of the AppImageConfig.
    imageName String
    The name of the CustomImage. Must be unique to your account.
    imageVersionNumber Integer
    The version number of the CustomImage.
    appImageConfigName string
    The Name of the AppImageConfig.
    imageName string
    The name of the CustomImage. Must be unique to your account.
    imageVersionNumber number
    The version number of the CustomImage.
    app_image_config_name str
    The Name of the AppImageConfig.
    image_name str
    The name of the CustomImage. Must be unique to your account.
    image_version_number int
    The version number of the CustomImage.
    appImageConfigName String
    The Name of the AppImageConfig.
    imageName String
    The name of the CustomImage. Must be unique to your account.
    imageVersionNumber Number
    The version number of the CustomImage.

    UserProfileCustomPosixUserConfig, UserProfileCustomPosixUserConfigArgs

    Gid int
    Uid int
    Gid int
    Uid int
    gid Integer
    uid Integer
    gid number
    uid number
    gid int
    uid int
    gid Number
    uid Number

    UserProfileDefaultEbsStorageSettings, UserProfileDefaultEbsStorageSettingsArgs

    DefaultEbsVolumeSizeInGb int
    Default size of the Amazon EBS volume in Gb
    MaximumEbsVolumeSizeInGb int
    Maximum size of the Amazon EBS volume in Gb. Must be greater than or equal to the DefaultEbsVolumeSizeInGb.
    DefaultEbsVolumeSizeInGb int
    Default size of the Amazon EBS volume in Gb
    MaximumEbsVolumeSizeInGb int
    Maximum size of the Amazon EBS volume in Gb. Must be greater than or equal to the DefaultEbsVolumeSizeInGb.
    defaultEbsVolumeSizeInGb Integer
    Default size of the Amazon EBS volume in Gb
    maximumEbsVolumeSizeInGb Integer
    Maximum size of the Amazon EBS volume in Gb. Must be greater than or equal to the DefaultEbsVolumeSizeInGb.
    defaultEbsVolumeSizeInGb number
    Default size of the Amazon EBS volume in Gb
    maximumEbsVolumeSizeInGb number
    Maximum size of the Amazon EBS volume in Gb. Must be greater than or equal to the DefaultEbsVolumeSizeInGb.
    default_ebs_volume_size_in_gb int
    Default size of the Amazon EBS volume in Gb
    maximum_ebs_volume_size_in_gb int
    Maximum size of the Amazon EBS volume in Gb. Must be greater than or equal to the DefaultEbsVolumeSizeInGb.
    defaultEbsVolumeSizeInGb Number
    Default size of the Amazon EBS volume in Gb
    maximumEbsVolumeSizeInGb Number
    Maximum size of the Amazon EBS volume in Gb. Must be greater than or equal to the DefaultEbsVolumeSizeInGb.

    UserProfileDefaultSpaceStorageSettings, UserProfileDefaultSpaceStorageSettingsArgs

    UserProfileEfsFileSystemConfig, UserProfileEfsFileSystemConfigArgs

    UserProfileJupyterLabAppSettings, UserProfileJupyterLabAppSettingsArgs

    CodeRepositories List<Pulumi.AwsNative.SageMaker.Inputs.UserProfileCodeRepository>
    A list of CodeRepositories available for use with JupyterLab apps.
    CustomImages List<Pulumi.AwsNative.SageMaker.Inputs.UserProfileCustomImage>
    A list of custom images available for use for JupyterLab apps
    DefaultResourceSpec Pulumi.AwsNative.SageMaker.Inputs.UserProfileResourceSpec
    The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the JupyterLab app.
    LifecycleConfigArns List<string>
    A list of LifecycleConfigArns available for use with JupyterLab apps.
    CodeRepositories []UserProfileCodeRepository
    A list of CodeRepositories available for use with JupyterLab apps.
    CustomImages []UserProfileCustomImage
    A list of custom images available for use for JupyterLab apps
    DefaultResourceSpec UserProfileResourceSpec
    The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the JupyterLab app.
    LifecycleConfigArns []string
    A list of LifecycleConfigArns available for use with JupyterLab apps.
    codeRepositories List<UserProfileCodeRepository>
    A list of CodeRepositories available for use with JupyterLab apps.
    customImages List<UserProfileCustomImage>
    A list of custom images available for use for JupyterLab apps
    defaultResourceSpec UserProfileResourceSpec
    The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the JupyterLab app.
    lifecycleConfigArns List<String>
    A list of LifecycleConfigArns available for use with JupyterLab apps.
    codeRepositories UserProfileCodeRepository[]
    A list of CodeRepositories available for use with JupyterLab apps.
    customImages UserProfileCustomImage[]
    A list of custom images available for use for JupyterLab apps
    defaultResourceSpec UserProfileResourceSpec
    The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the JupyterLab app.
    lifecycleConfigArns string[]
    A list of LifecycleConfigArns available for use with JupyterLab apps.
    code_repositories Sequence[UserProfileCodeRepository]
    A list of CodeRepositories available for use with JupyterLab apps.
    custom_images Sequence[UserProfileCustomImage]
    A list of custom images available for use for JupyterLab apps
    default_resource_spec UserProfileResourceSpec
    The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the JupyterLab app.
    lifecycle_config_arns Sequence[str]
    A list of LifecycleConfigArns available for use with JupyterLab apps.
    codeRepositories List<Property Map>
    A list of CodeRepositories available for use with JupyterLab apps.
    customImages List<Property Map>
    A list of custom images available for use for JupyterLab apps
    defaultResourceSpec Property Map
    The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the JupyterLab app.
    lifecycleConfigArns List<String>
    A list of LifecycleConfigArns available for use with JupyterLab apps.

    UserProfileJupyterServerAppSettings, UserProfileJupyterServerAppSettingsArgs

    UserProfileKernelGatewayAppSettings, UserProfileKernelGatewayAppSettingsArgs

    CustomImages List<Pulumi.AwsNative.SageMaker.Inputs.UserProfileCustomImage>
    A list of custom SageMaker images that are configured to run as a KernelGateway app.
    DefaultResourceSpec Pulumi.AwsNative.SageMaker.Inputs.UserProfileResourceSpec
    The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the KernelGateway app.
    CustomImages []UserProfileCustomImage
    A list of custom SageMaker images that are configured to run as a KernelGateway app.
    DefaultResourceSpec UserProfileResourceSpec
    The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the KernelGateway app.
    customImages List<UserProfileCustomImage>
    A list of custom SageMaker images that are configured to run as a KernelGateway app.
    defaultResourceSpec UserProfileResourceSpec
    The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the KernelGateway app.
    customImages UserProfileCustomImage[]
    A list of custom SageMaker images that are configured to run as a KernelGateway app.
    defaultResourceSpec UserProfileResourceSpec
    The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the KernelGateway app.
    custom_images Sequence[UserProfileCustomImage]
    A list of custom SageMaker images that are configured to run as a KernelGateway app.
    default_resource_spec UserProfileResourceSpec
    The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the KernelGateway app.
    customImages List<Property Map>
    A list of custom SageMaker images that are configured to run as a KernelGateway app.
    defaultResourceSpec Property Map
    The default instance type and the Amazon Resource Name (ARN) of the default SageMaker image used by the KernelGateway app.

    UserProfileRStudioServerProAppSettings, UserProfileRStudioServerProAppSettingsArgs

    AccessStatus Pulumi.AwsNative.SageMaker.UserProfileRStudioServerProAppSettingsAccessStatus
    Indicates whether the current user has access to the RStudioServerPro app.
    UserGroup Pulumi.AwsNative.SageMaker.UserProfileRStudioServerProAppSettingsUserGroup
    The level of permissions that the user has within the RStudioServerPro app. This value defaults to User. The Admin value allows the user access to the RStudio Administrative Dashboard.
    AccessStatus UserProfileRStudioServerProAppSettingsAccessStatus
    Indicates whether the current user has access to the RStudioServerPro app.
    UserGroup UserProfileRStudioServerProAppSettingsUserGroup
    The level of permissions that the user has within the RStudioServerPro app. This value defaults to User. The Admin value allows the user access to the RStudio Administrative Dashboard.
    accessStatus UserProfileRStudioServerProAppSettingsAccessStatus
    Indicates whether the current user has access to the RStudioServerPro app.
    userGroup UserProfileRStudioServerProAppSettingsUserGroup
    The level of permissions that the user has within the RStudioServerPro app. This value defaults to User. The Admin value allows the user access to the RStudio Administrative Dashboard.
    accessStatus UserProfileRStudioServerProAppSettingsAccessStatus
    Indicates whether the current user has access to the RStudioServerPro app.
    userGroup UserProfileRStudioServerProAppSettingsUserGroup
    The level of permissions that the user has within the RStudioServerPro app. This value defaults to User. The Admin value allows the user access to the RStudio Administrative Dashboard.
    access_status UserProfileRStudioServerProAppSettingsAccessStatus
    Indicates whether the current user has access to the RStudioServerPro app.
    user_group UserProfileRStudioServerProAppSettingsUserGroup
    The level of permissions that the user has within the RStudioServerPro app. This value defaults to User. The Admin value allows the user access to the RStudio Administrative Dashboard.
    accessStatus "ENABLED" | "DISABLED"
    Indicates whether the current user has access to the RStudioServerPro app.
    userGroup "R_STUDIO_ADMIN" | "R_STUDIO_USER"
    The level of permissions that the user has within the RStudioServerPro app. This value defaults to User. The Admin value allows the user access to the RStudio Administrative Dashboard.

    UserProfileRStudioServerProAppSettingsAccessStatus, UserProfileRStudioServerProAppSettingsAccessStatusArgs

    Enabled
    ENABLED
    Disabled
    DISABLED
    UserProfileRStudioServerProAppSettingsAccessStatusEnabled
    ENABLED
    UserProfileRStudioServerProAppSettingsAccessStatusDisabled
    DISABLED
    Enabled
    ENABLED
    Disabled
    DISABLED
    Enabled
    ENABLED
    Disabled
    DISABLED
    ENABLED
    ENABLED
    DISABLED
    DISABLED
    "ENABLED"
    ENABLED
    "DISABLED"
    DISABLED

    UserProfileRStudioServerProAppSettingsUserGroup, UserProfileRStudioServerProAppSettingsUserGroupArgs

    RStudioAdmin
    R_STUDIO_ADMIN
    RStudioUser
    R_STUDIO_USER
    UserProfileRStudioServerProAppSettingsUserGroupRStudioAdmin
    R_STUDIO_ADMIN
    UserProfileRStudioServerProAppSettingsUserGroupRStudioUser
    R_STUDIO_USER
    RStudioAdmin
    R_STUDIO_ADMIN
    RStudioUser
    R_STUDIO_USER
    RStudioAdmin
    R_STUDIO_ADMIN
    RStudioUser
    R_STUDIO_USER
    R_STUDIO_ADMIN
    R_STUDIO_ADMIN
    R_STUDIO_USER
    R_STUDIO_USER
    "R_STUDIO_ADMIN"
    R_STUDIO_ADMIN
    "R_STUDIO_USER"
    R_STUDIO_USER

    UserProfileResourceSpec, UserProfileResourceSpecArgs

    InstanceType Pulumi.AwsNative.SageMaker.UserProfileResourceSpecInstanceType
    The instance type that the image version runs on.
    SageMakerImageArn string
    The ARN of the SageMaker image that the image version belongs to.
    SageMakerImageVersionArn string
    The ARN of the image version created on the instance.
    InstanceType UserProfileResourceSpecInstanceType
    The instance type that the image version runs on.
    SageMakerImageArn string
    The ARN of the SageMaker image that the image version belongs to.
    SageMakerImageVersionArn string
    The ARN of the image version created on the instance.
    instanceType UserProfileResourceSpecInstanceType
    The instance type that the image version runs on.
    sageMakerImageArn String
    The ARN of the SageMaker image that the image version belongs to.
    sageMakerImageVersionArn String
    The ARN of the image version created on the instance.
    instanceType UserProfileResourceSpecInstanceType
    The instance type that the image version runs on.
    sageMakerImageArn string
    The ARN of the SageMaker image that the image version belongs to.
    sageMakerImageVersionArn string
    The ARN of the image version created on the instance.
    instance_type UserProfileResourceSpecInstanceType
    The instance type that the image version runs on.
    sage_maker_image_arn str
    The ARN of the SageMaker image that the image version belongs to.
    sage_maker_image_version_arn str
    The ARN of the image version created on the instance.
    instanceType "system" | "ml.t3.micro" | "ml.t3.small" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3.16xlarge" | "ml.g4dn.xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.r5.large" | "ml.r5.xlarge" | "ml.r5.2xlarge" | "ml.r5.4xlarge" | "ml.r5.8xlarge" | "ml.r5.12xlarge" | "ml.r5.16xlarge" | "ml.r5.24xlarge" | "ml.p3dn.24xlarge" | "ml.m5d.large" | "ml.m5d.xlarge" | "ml.m5d.2xlarge" | "ml.m5d.4xlarge" | "ml.m5d.8xlarge" | "ml.m5d.12xlarge" | "ml.m5d.16xlarge" | "ml.m5d.24xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.geospatial.interactive" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge"
    The instance type that the image version runs on.
    sageMakerImageArn String
    The ARN of the SageMaker image that the image version belongs to.
    sageMakerImageVersionArn String
    The ARN of the image version created on the instance.

    UserProfileResourceSpecInstanceType, UserProfileResourceSpecInstanceTypeArgs

    System
    system
    MlT3Micro
    ml.t3.micro
    MlT3Small
    ml.t3.small
    MlT3Medium
    ml.t3.medium
    MlT3Large
    ml.t3.large
    MlT3Xlarge
    ml.t3.xlarge
    MlT32xlarge
    ml.t3.2xlarge
    MlM5Large
    ml.m5.large
    MlM5Xlarge
    ml.m5.xlarge
    MlM52xlarge
    ml.m5.2xlarge
    MlM54xlarge
    ml.m5.4xlarge
    MlM58xlarge
    ml.m5.8xlarge
    MlM512xlarge
    ml.m5.12xlarge
    MlM516xlarge
    ml.m5.16xlarge
    MlM524xlarge
    ml.m5.24xlarge
    MlC5Large
    ml.c5.large
    MlC5Xlarge
    ml.c5.xlarge
    MlC52xlarge
    ml.c5.2xlarge
    MlC54xlarge
    ml.c5.4xlarge
    MlC59xlarge
    ml.c5.9xlarge
    MlC512xlarge
    ml.c5.12xlarge
    MlC518xlarge
    ml.c5.18xlarge
    MlC524xlarge
    ml.c5.24xlarge
    MlP32xlarge
    ml.p3.2xlarge
    MlP38xlarge
    ml.p3.8xlarge
    MlP316xlarge
    ml.p3.16xlarge
    MlG4dnXlarge
    ml.g4dn.xlarge
    MlG4dn2xlarge
    ml.g4dn.2xlarge
    MlG4dn4xlarge
    ml.g4dn.4xlarge
    MlG4dn8xlarge
    ml.g4dn.8xlarge
    MlG4dn12xlarge
    ml.g4dn.12xlarge
    MlG4dn16xlarge
    ml.g4dn.16xlarge
    MlR5Large
    ml.r5.large
    MlR5Xlarge
    ml.r5.xlarge
    MlR52xlarge
    ml.r5.2xlarge
    MlR54xlarge
    ml.r5.4xlarge
    MlR58xlarge
    ml.r5.8xlarge
    MlR512xlarge
    ml.r5.12xlarge
    MlR516xlarge
    ml.r5.16xlarge
    MlR524xlarge
    ml.r5.24xlarge
    MlP3dn24xlarge
    ml.p3dn.24xlarge
    MlM5dLarge
    ml.m5d.large
    MlM5dXlarge
    ml.m5d.xlarge
    MlM5d2xlarge
    ml.m5d.2xlarge
    MlM5d4xlarge
    ml.m5d.4xlarge
    MlM5d8xlarge
    ml.m5d.8xlarge
    MlM5d12xlarge
    ml.m5d.12xlarge
    MlM5d16xlarge
    ml.m5d.16xlarge
    MlM5d24xlarge
    ml.m5d.24xlarge
    MlG5Xlarge
    ml.g5.xlarge
    MlG52xlarge
    ml.g5.2xlarge
    MlG54xlarge
    ml.g5.4xlarge
    MlG58xlarge
    ml.g5.8xlarge
    MlG512xlarge
    ml.g5.12xlarge
    MlG516xlarge
    ml.g5.16xlarge
    MlG524xlarge
    ml.g5.24xlarge
    MlG548xlarge
    ml.g5.48xlarge
    MlP4d24xlarge
    ml.p4d.24xlarge
    MlP4de24xlarge
    ml.p4de.24xlarge
    MlGeospatialInteractive
    ml.geospatial.interactive
    MlTrn12xlarge
    ml.trn1.2xlarge
    MlTrn132xlarge
    ml.trn1.32xlarge
    MlTrn1n32xlarge
    ml.trn1n.32xlarge
    UserProfileResourceSpecInstanceTypeSystem
    system
    UserProfileResourceSpecInstanceTypeMlT3Micro
    ml.t3.micro
    UserProfileResourceSpecInstanceTypeMlT3Small
    ml.t3.small
    UserProfileResourceSpecInstanceTypeMlT3Medium
    ml.t3.medium
    UserProfileResourceSpecInstanceTypeMlT3Large
    ml.t3.large
    UserProfileResourceSpecInstanceTypeMlT3Xlarge
    ml.t3.xlarge
    UserProfileResourceSpecInstanceTypeMlT32xlarge
    ml.t3.2xlarge
    UserProfileResourceSpecInstanceTypeMlM5Large
    ml.m5.large
    UserProfileResourceSpecInstanceTypeMlM5Xlarge
    ml.m5.xlarge
    UserProfileResourceSpecInstanceTypeMlM52xlarge
    ml.m5.2xlarge
    UserProfileResourceSpecInstanceTypeMlM54xlarge
    ml.m5.4xlarge
    UserProfileResourceSpecInstanceTypeMlM58xlarge
    ml.m5.8xlarge
    UserProfileResourceSpecInstanceTypeMlM512xlarge
    ml.m5.12xlarge
    UserProfileResourceSpecInstanceTypeMlM516xlarge
    ml.m5.16xlarge
    UserProfileResourceSpecInstanceTypeMlM524xlarge
    ml.m5.24xlarge
    UserProfileResourceSpecInstanceTypeMlC5Large
    ml.c5.large
    UserProfileResourceSpecInstanceTypeMlC5Xlarge
    ml.c5.xlarge
    UserProfileResourceSpecInstanceTypeMlC52xlarge
    ml.c5.2xlarge
    UserProfileResourceSpecInstanceTypeMlC54xlarge
    ml.c5.4xlarge
    UserProfileResourceSpecInstanceTypeMlC59xlarge
    ml.c5.9xlarge
    UserProfileResourceSpecInstanceTypeMlC512xlarge
    ml.c5.12xlarge
    UserProfileResourceSpecInstanceTypeMlC518xlarge
    ml.c5.18xlarge
    UserProfileResourceSpecInstanceTypeMlC524xlarge
    ml.c5.24xlarge
    UserProfileResourceSpecInstanceTypeMlP32xlarge
    ml.p3.2xlarge
    UserProfileResourceSpecInstanceTypeMlP38xlarge
    ml.p3.8xlarge
    UserProfileResourceSpecInstanceTypeMlP316xlarge
    ml.p3.16xlarge
    UserProfileResourceSpecInstanceTypeMlG4dnXlarge
    ml.g4dn.xlarge
    UserProfileResourceSpecInstanceTypeMlG4dn2xlarge
    ml.g4dn.2xlarge
    UserProfileResourceSpecInstanceTypeMlG4dn4xlarge
    ml.g4dn.4xlarge
    UserProfileResourceSpecInstanceTypeMlG4dn8xlarge
    ml.g4dn.8xlarge
    UserProfileResourceSpecInstanceTypeMlG4dn12xlarge
    ml.g4dn.12xlarge
    UserProfileResourceSpecInstanceTypeMlG4dn16xlarge
    ml.g4dn.16xlarge
    UserProfileResourceSpecInstanceTypeMlR5Large
    ml.r5.large
    UserProfileResourceSpecInstanceTypeMlR5Xlarge
    ml.r5.xlarge
    UserProfileResourceSpecInstanceTypeMlR52xlarge
    ml.r5.2xlarge
    UserProfileResourceSpecInstanceTypeMlR54xlarge
    ml.r5.4xlarge
    UserProfileResourceSpecInstanceTypeMlR58xlarge
    ml.r5.8xlarge
    UserProfileResourceSpecInstanceTypeMlR512xlarge
    ml.r5.12xlarge
    UserProfileResourceSpecInstanceTypeMlR516xlarge
    ml.r5.16xlarge
    UserProfileResourceSpecInstanceTypeMlR524xlarge
    ml.r5.24xlarge
    UserProfileResourceSpecInstanceTypeMlP3dn24xlarge
    ml.p3dn.24xlarge
    UserProfileResourceSpecInstanceTypeMlM5dLarge
    ml.m5d.large
    UserProfileResourceSpecInstanceTypeMlM5dXlarge
    ml.m5d.xlarge
    UserProfileResourceSpecInstanceTypeMlM5d2xlarge
    ml.m5d.2xlarge
    UserProfileResourceSpecInstanceTypeMlM5d4xlarge
    ml.m5d.4xlarge
    UserProfileResourceSpecInstanceTypeMlM5d8xlarge
    ml.m5d.8xlarge
    UserProfileResourceSpecInstanceTypeMlM5d12xlarge
    ml.m5d.12xlarge
    UserProfileResourceSpecInstanceTypeMlM5d16xlarge
    ml.m5d.16xlarge
    UserProfileResourceSpecInstanceTypeMlM5d24xlarge
    ml.m5d.24xlarge
    UserProfileResourceSpecInstanceTypeMlG5Xlarge
    ml.g5.xlarge
    UserProfileResourceSpecInstanceTypeMlG52xlarge
    ml.g5.2xlarge
    UserProfileResourceSpecInstanceTypeMlG54xlarge
    ml.g5.4xlarge
    UserProfileResourceSpecInstanceTypeMlG58xlarge
    ml.g5.8xlarge
    UserProfileResourceSpecInstanceTypeMlG512xlarge
    ml.g5.12xlarge
    UserProfileResourceSpecInstanceTypeMlG516xlarge
    ml.g5.16xlarge
    UserProfileResourceSpecInstanceTypeMlG524xlarge
    ml.g5.24xlarge
    UserProfileResourceSpecInstanceTypeMlG548xlarge
    ml.g5.48xlarge
    UserProfileResourceSpecInstanceTypeMlP4d24xlarge
    ml.p4d.24xlarge
    UserProfileResourceSpecInstanceTypeMlP4de24xlarge
    ml.p4de.24xlarge
    UserProfileResourceSpecInstanceTypeMlGeospatialInteractive
    ml.geospatial.interactive
    UserProfileResourceSpecInstanceTypeMlTrn12xlarge
    ml.trn1.2xlarge
    UserProfileResourceSpecInstanceTypeMlTrn132xlarge
    ml.trn1.32xlarge
    UserProfileResourceSpecInstanceTypeMlTrn1n32xlarge
    ml.trn1n.32xlarge
    System
    system
    MlT3Micro
    ml.t3.micro
    MlT3Small
    ml.t3.small
    MlT3Medium
    ml.t3.medium
    MlT3Large
    ml.t3.large
    MlT3Xlarge
    ml.t3.xlarge
    MlT32xlarge
    ml.t3.2xlarge
    MlM5Large
    ml.m5.large
    MlM5Xlarge
    ml.m5.xlarge
    MlM52xlarge
    ml.m5.2xlarge
    MlM54xlarge
    ml.m5.4xlarge
    MlM58xlarge
    ml.m5.8xlarge
    MlM512xlarge
    ml.m5.12xlarge
    MlM516xlarge
    ml.m5.16xlarge
    MlM524xlarge
    ml.m5.24xlarge
    MlC5Large
    ml.c5.large
    MlC5Xlarge
    ml.c5.xlarge
    MlC52xlarge
    ml.c5.2xlarge
    MlC54xlarge
    ml.c5.4xlarge
    MlC59xlarge
    ml.c5.9xlarge
    MlC512xlarge
    ml.c5.12xlarge
    MlC518xlarge
    ml.c5.18xlarge
    MlC524xlarge
    ml.c5.24xlarge
    MlP32xlarge
    ml.p3.2xlarge
    MlP38xlarge
    ml.p3.8xlarge
    MlP316xlarge
    ml.p3.16xlarge
    MlG4dnXlarge
    ml.g4dn.xlarge
    MlG4dn2xlarge
    ml.g4dn.2xlarge
    MlG4dn4xlarge
    ml.g4dn.4xlarge
    MlG4dn8xlarge
    ml.g4dn.8xlarge
    MlG4dn12xlarge
    ml.g4dn.12xlarge
    MlG4dn16xlarge
    ml.g4dn.16xlarge
    MlR5Large
    ml.r5.large
    MlR5Xlarge
    ml.r5.xlarge
    MlR52xlarge
    ml.r5.2xlarge
    MlR54xlarge
    ml.r5.4xlarge
    MlR58xlarge
    ml.r5.8xlarge
    MlR512xlarge
    ml.r5.12xlarge
    MlR516xlarge
    ml.r5.16xlarge
    MlR524xlarge
    ml.r5.24xlarge
    MlP3dn24xlarge
    ml.p3dn.24xlarge
    MlM5dLarge
    ml.m5d.large
    MlM5dXlarge
    ml.m5d.xlarge
    MlM5d2xlarge
    ml.m5d.2xlarge
    MlM5d4xlarge
    ml.m5d.4xlarge
    MlM5d8xlarge
    ml.m5d.8xlarge
    MlM5d12xlarge
    ml.m5d.12xlarge
    MlM5d16xlarge
    ml.m5d.16xlarge
    MlM5d24xlarge
    ml.m5d.24xlarge
    MlG5Xlarge
    ml.g5.xlarge
    MlG52xlarge
    ml.g5.2xlarge
    MlG54xlarge
    ml.g5.4xlarge
    MlG58xlarge
    ml.g5.8xlarge
    MlG512xlarge
    ml.g5.12xlarge
    MlG516xlarge
    ml.g5.16xlarge
    MlG524xlarge
    ml.g5.24xlarge
    MlG548xlarge
    ml.g5.48xlarge
    MlP4d24xlarge
    ml.p4d.24xlarge
    MlP4de24xlarge
    ml.p4de.24xlarge
    MlGeospatialInteractive
    ml.geospatial.interactive
    MlTrn12xlarge
    ml.trn1.2xlarge
    MlTrn132xlarge
    ml.trn1.32xlarge
    MlTrn1n32xlarge
    ml.trn1n.32xlarge
    System
    system
    MlT3Micro
    ml.t3.micro
    MlT3Small
    ml.t3.small
    MlT3Medium
    ml.t3.medium
    MlT3Large
    ml.t3.large
    MlT3Xlarge
    ml.t3.xlarge
    MlT32xlarge
    ml.t3.2xlarge
    MlM5Large
    ml.m5.large
    MlM5Xlarge
    ml.m5.xlarge
    MlM52xlarge
    ml.m5.2xlarge
    MlM54xlarge
    ml.m5.4xlarge
    MlM58xlarge
    ml.m5.8xlarge
    MlM512xlarge
    ml.m5.12xlarge
    MlM516xlarge
    ml.m5.16xlarge
    MlM524xlarge
    ml.m5.24xlarge
    MlC5Large
    ml.c5.large
    MlC5Xlarge
    ml.c5.xlarge
    MlC52xlarge
    ml.c5.2xlarge
    MlC54xlarge
    ml.c5.4xlarge
    MlC59xlarge
    ml.c5.9xlarge
    MlC512xlarge
    ml.c5.12xlarge
    MlC518xlarge
    ml.c5.18xlarge
    MlC524xlarge
    ml.c5.24xlarge
    MlP32xlarge
    ml.p3.2xlarge
    MlP38xlarge
    ml.p3.8xlarge
    MlP316xlarge
    ml.p3.16xlarge
    MlG4dnXlarge
    ml.g4dn.xlarge
    MlG4dn2xlarge
    ml.g4dn.2xlarge
    MlG4dn4xlarge
    ml.g4dn.4xlarge
    MlG4dn8xlarge
    ml.g4dn.8xlarge
    MlG4dn12xlarge
    ml.g4dn.12xlarge
    MlG4dn16xlarge
    ml.g4dn.16xlarge
    MlR5Large
    ml.r5.large
    MlR5Xlarge
    ml.r5.xlarge
    MlR52xlarge
    ml.r5.2xlarge
    MlR54xlarge
    ml.r5.4xlarge
    MlR58xlarge
    ml.r5.8xlarge
    MlR512xlarge
    ml.r5.12xlarge
    MlR516xlarge
    ml.r5.16xlarge
    MlR524xlarge
    ml.r5.24xlarge
    MlP3dn24xlarge
    ml.p3dn.24xlarge
    MlM5dLarge
    ml.m5d.large
    MlM5dXlarge
    ml.m5d.xlarge
    MlM5d2xlarge
    ml.m5d.2xlarge
    MlM5d4xlarge
    ml.m5d.4xlarge
    MlM5d8xlarge
    ml.m5d.8xlarge
    MlM5d12xlarge
    ml.m5d.12xlarge
    MlM5d16xlarge
    ml.m5d.16xlarge
    MlM5d24xlarge
    ml.m5d.24xlarge
    MlG5Xlarge
    ml.g5.xlarge
    MlG52xlarge
    ml.g5.2xlarge
    MlG54xlarge
    ml.g5.4xlarge
    MlG58xlarge
    ml.g5.8xlarge
    MlG512xlarge
    ml.g5.12xlarge
    MlG516xlarge
    ml.g5.16xlarge
    MlG524xlarge
    ml.g5.24xlarge
    MlG548xlarge
    ml.g5.48xlarge
    MlP4d24xlarge
    ml.p4d.24xlarge
    MlP4de24xlarge
    ml.p4de.24xlarge
    MlGeospatialInteractive
    ml.geospatial.interactive
    MlTrn12xlarge
    ml.trn1.2xlarge
    MlTrn132xlarge
    ml.trn1.32xlarge
    MlTrn1n32xlarge
    ml.trn1n.32xlarge
    SYSTEM
    system
    ML_T3_MICRO
    ml.t3.micro
    ML_T3_SMALL
    ml.t3.small
    ML_T3_MEDIUM
    ml.t3.medium
    ML_T3_LARGE
    ml.t3.large
    ML_T3_XLARGE
    ml.t3.xlarge
    ML_T32XLARGE
    ml.t3.2xlarge
    ML_M5_LARGE
    ml.m5.large
    ML_M5_XLARGE
    ml.m5.xlarge
    ML_M52XLARGE
    ml.m5.2xlarge
    ML_M54XLARGE
    ml.m5.4xlarge
    ML_M58XLARGE
    ml.m5.8xlarge
    ML_M512XLARGE
    ml.m5.12xlarge
    ML_M516XLARGE
    ml.m5.16xlarge
    ML_M524XLARGE
    ml.m5.24xlarge
    ML_C5_LARGE
    ml.c5.large
    ML_C5_XLARGE
    ml.c5.xlarge
    ML_C52XLARGE
    ml.c5.2xlarge
    ML_C54XLARGE
    ml.c5.4xlarge
    ML_C59XLARGE
    ml.c5.9xlarge
    ML_C512XLARGE
    ml.c5.12xlarge
    ML_C518XLARGE
    ml.c5.18xlarge
    ML_C524XLARGE
    ml.c5.24xlarge
    ML_P32XLARGE
    ml.p3.2xlarge
    ML_P38XLARGE
    ml.p3.8xlarge
    ML_P316XLARGE
    ml.p3.16xlarge
    ML_G4DN_XLARGE
    ml.g4dn.xlarge
    ML_G4DN2XLARGE
    ml.g4dn.2xlarge
    ML_G4DN4XLARGE
    ml.g4dn.4xlarge
    ML_G4DN8XLARGE
    ml.g4dn.8xlarge
    ML_G4DN12XLARGE
    ml.g4dn.12xlarge
    ML_G4DN16XLARGE
    ml.g4dn.16xlarge
    ML_R5_LARGE
    ml.r5.large
    ML_R5_XLARGE
    ml.r5.xlarge
    ML_R52XLARGE
    ml.r5.2xlarge
    ML_R54XLARGE
    ml.r5.4xlarge
    ML_R58XLARGE
    ml.r5.8xlarge
    ML_R512XLARGE
    ml.r5.12xlarge
    ML_R516XLARGE
    ml.r5.16xlarge
    ML_R524XLARGE
    ml.r5.24xlarge
    ML_P3DN24XLARGE
    ml.p3dn.24xlarge
    ML_M5D_LARGE
    ml.m5d.large
    ML_M5D_XLARGE
    ml.m5d.xlarge
    ML_M5D2XLARGE
    ml.m5d.2xlarge
    ML_M5D4XLARGE
    ml.m5d.4xlarge
    ML_M5D8XLARGE
    ml.m5d.8xlarge
    ML_M5D12XLARGE
    ml.m5d.12xlarge
    ML_M5D16XLARGE
    ml.m5d.16xlarge
    ML_M5D24XLARGE
    ml.m5d.24xlarge
    ML_G5_XLARGE
    ml.g5.xlarge
    ML_G52XLARGE
    ml.g5.2xlarge
    ML_G54XLARGE
    ml.g5.4xlarge
    ML_G58XLARGE
    ml.g5.8xlarge
    ML_G512XLARGE
    ml.g5.12xlarge
    ML_G516XLARGE
    ml.g5.16xlarge
    ML_G524XLARGE
    ml.g5.24xlarge
    ML_G548XLARGE
    ml.g5.48xlarge
    ML_P4D24XLARGE
    ml.p4d.24xlarge
    ML_P4DE24XLARGE
    ml.p4de.24xlarge
    ML_GEOSPATIAL_INTERACTIVE
    ml.geospatial.interactive
    ML_TRN12XLARGE
    ml.trn1.2xlarge
    ML_TRN132XLARGE
    ml.trn1.32xlarge
    ML_TRN1N32XLARGE
    ml.trn1n.32xlarge
    "system"
    system
    "ml.t3.micro"
    ml.t3.micro
    "ml.t3.small"
    ml.t3.small
    "ml.t3.medium"
    ml.t3.medium
    "ml.t3.large"
    ml.t3.large
    "ml.t3.xlarge"
    ml.t3.xlarge
    "ml.t3.2xlarge"
    ml.t3.2xlarge
    "ml.m5.large"
    ml.m5.large
    "ml.m5.xlarge"
    ml.m5.xlarge
    "ml.m5.2xlarge"
    ml.m5.2xlarge
    "ml.m5.4xlarge"
    ml.m5.4xlarge
    "ml.m5.8xlarge"
    ml.m5.8xlarge
    "ml.m5.12xlarge"
    ml.m5.12xlarge
    "ml.m5.16xlarge"
    ml.m5.16xlarge
    "ml.m5.24xlarge"
    ml.m5.24xlarge
    "ml.c5.large"
    ml.c5.large
    "ml.c5.xlarge"
    ml.c5.xlarge
    "ml.c5.2xlarge"
    ml.c5.2xlarge
    "ml.c5.4xlarge"
    ml.c5.4xlarge
    "ml.c5.9xlarge"
    ml.c5.9xlarge
    "ml.c5.12xlarge"
    ml.c5.12xlarge
    "ml.c5.18xlarge"
    ml.c5.18xlarge
    "ml.c5.24xlarge"
    ml.c5.24xlarge
    "ml.p3.2xlarge"
    ml.p3.2xlarge
    "ml.p3.8xlarge"
    ml.p3.8xlarge
    "ml.p3.16xlarge"
    ml.p3.16xlarge
    "ml.g4dn.xlarge"
    ml.g4dn.xlarge
    "ml.g4dn.2xlarge"
    ml.g4dn.2xlarge
    "ml.g4dn.4xlarge"
    ml.g4dn.4xlarge
    "ml.g4dn.8xlarge"
    ml.g4dn.8xlarge
    "ml.g4dn.12xlarge"
    ml.g4dn.12xlarge
    "ml.g4dn.16xlarge"
    ml.g4dn.16xlarge
    "ml.r5.large"
    ml.r5.large
    "ml.r5.xlarge"
    ml.r5.xlarge
    "ml.r5.2xlarge"
    ml.r5.2xlarge
    "ml.r5.4xlarge"
    ml.r5.4xlarge
    "ml.r5.8xlarge"
    ml.r5.8xlarge
    "ml.r5.12xlarge"
    ml.r5.12xlarge
    "ml.r5.16xlarge"
    ml.r5.16xlarge
    "ml.r5.24xlarge"
    ml.r5.24xlarge
    "ml.p3dn.24xlarge"
    ml.p3dn.24xlarge
    "ml.m5d.large"
    ml.m5d.large
    "ml.m5d.xlarge"
    ml.m5d.xlarge
    "ml.m5d.2xlarge"
    ml.m5d.2xlarge
    "ml.m5d.4xlarge"
    ml.m5d.4xlarge
    "ml.m5d.8xlarge"
    ml.m5d.8xlarge
    "ml.m5d.12xlarge"
    ml.m5d.12xlarge
    "ml.m5d.16xlarge"
    ml.m5d.16xlarge
    "ml.m5d.24xlarge"
    ml.m5d.24xlarge
    "ml.g5.xlarge"
    ml.g5.xlarge
    "ml.g5.2xlarge"
    ml.g5.2xlarge
    "ml.g5.4xlarge"
    ml.g5.4xlarge
    "ml.g5.8xlarge"
    ml.g5.8xlarge
    "ml.g5.12xlarge"
    ml.g5.12xlarge
    "ml.g5.16xlarge"
    ml.g5.16xlarge
    "ml.g5.24xlarge"
    ml.g5.24xlarge
    "ml.g5.48xlarge"
    ml.g5.48xlarge
    "ml.p4d.24xlarge"
    ml.p4d.24xlarge
    "ml.p4de.24xlarge"
    ml.p4de.24xlarge
    "ml.geospatial.interactive"
    ml.geospatial.interactive
    "ml.trn1.2xlarge"
    ml.trn1.2xlarge
    "ml.trn1.32xlarge"
    ml.trn1.32xlarge
    "ml.trn1n.32xlarge"
    ml.trn1n.32xlarge

    UserProfileSharingSettings, UserProfileSharingSettingsArgs

    NotebookOutputOption Pulumi.AwsNative.SageMaker.UserProfileSharingSettingsNotebookOutputOption
    Whether to include the notebook cell output when sharing the notebook. The default is Disabled.
    S3KmsKeyId string
    When NotebookOutputOption is Allowed, the AWS Key Management Service (KMS) encryption key ID used to encrypt the notebook cell output in the Amazon S3 bucket.
    S3OutputPath string
    When NotebookOutputOption is Allowed, the Amazon S3 bucket used to store the shared notebook snapshots.
    NotebookOutputOption UserProfileSharingSettingsNotebookOutputOption
    Whether to include the notebook cell output when sharing the notebook. The default is Disabled.
    S3KmsKeyId string
    When NotebookOutputOption is Allowed, the AWS Key Management Service (KMS) encryption key ID used to encrypt the notebook cell output in the Amazon S3 bucket.
    S3OutputPath string
    When NotebookOutputOption is Allowed, the Amazon S3 bucket used to store the shared notebook snapshots.
    notebookOutputOption UserProfileSharingSettingsNotebookOutputOption
    Whether to include the notebook cell output when sharing the notebook. The default is Disabled.
    s3KmsKeyId String
    When NotebookOutputOption is Allowed, the AWS Key Management Service (KMS) encryption key ID used to encrypt the notebook cell output in the Amazon S3 bucket.
    s3OutputPath String
    When NotebookOutputOption is Allowed, the Amazon S3 bucket used to store the shared notebook snapshots.
    notebookOutputOption UserProfileSharingSettingsNotebookOutputOption
    Whether to include the notebook cell output when sharing the notebook. The default is Disabled.
    s3KmsKeyId string
    When NotebookOutputOption is Allowed, the AWS Key Management Service (KMS) encryption key ID used to encrypt the notebook cell output in the Amazon S3 bucket.
    s3OutputPath string
    When NotebookOutputOption is Allowed, the Amazon S3 bucket used to store the shared notebook snapshots.
    notebook_output_option UserProfileSharingSettingsNotebookOutputOption
    Whether to include the notebook cell output when sharing the notebook. The default is Disabled.
    s3_kms_key_id str
    When NotebookOutputOption is Allowed, the AWS Key Management Service (KMS) encryption key ID used to encrypt the notebook cell output in the Amazon S3 bucket.
    s3_output_path str
    When NotebookOutputOption is Allowed, the Amazon S3 bucket used to store the shared notebook snapshots.
    notebookOutputOption "Allowed" | "Disabled"
    Whether to include the notebook cell output when sharing the notebook. The default is Disabled.
    s3KmsKeyId String
    When NotebookOutputOption is Allowed, the AWS Key Management Service (KMS) encryption key ID used to encrypt the notebook cell output in the Amazon S3 bucket.
    s3OutputPath String
    When NotebookOutputOption is Allowed, the Amazon S3 bucket used to store the shared notebook snapshots.

    UserProfileSharingSettingsNotebookOutputOption, UserProfileSharingSettingsNotebookOutputOptionArgs

    Allowed
    Allowed
    Disabled
    Disabled
    UserProfileSharingSettingsNotebookOutputOptionAllowed
    Allowed
    UserProfileSharingSettingsNotebookOutputOptionDisabled
    Disabled
    Allowed
    Allowed
    Disabled
    Disabled
    Allowed
    Allowed
    Disabled
    Disabled
    ALLOWED
    Allowed
    DISABLED
    Disabled
    "Allowed"
    Allowed
    "Disabled"
    Disabled

    UserProfileUserSettings, UserProfileUserSettingsArgs

    CodeEditorAppSettings Pulumi.AwsNative.SageMaker.Inputs.UserProfileCodeEditorAppSettings
    CustomFileSystemConfigs List<Pulumi.AwsNative.SageMaker.Inputs.UserProfileCustomFileSystemConfig>
    CustomPosixUserConfig Pulumi.AwsNative.SageMaker.Inputs.UserProfileCustomPosixUserConfig
    DefaultLandingUri string
    Defines which Amazon SageMaker application users are directed to by default.
    ExecutionRole string
    The user profile Amazon Resource Name (ARN).
    JupyterLabAppSettings Pulumi.AwsNative.SageMaker.Inputs.UserProfileJupyterLabAppSettings
    JupyterServerAppSettings Pulumi.AwsNative.SageMaker.Inputs.UserProfileJupyterServerAppSettings
    The Jupyter server's app settings.
    KernelGatewayAppSettings Pulumi.AwsNative.SageMaker.Inputs.UserProfileKernelGatewayAppSettings
    The kernel gateway app settings.
    RStudioServerProAppSettings Pulumi.AwsNative.SageMaker.Inputs.UserProfileRStudioServerProAppSettings
    SecurityGroups List<string>
    The security groups for the Amazon Virtual Private Cloud (VPC) that Studio uses for communication.
    SharingSettings Pulumi.AwsNative.SageMaker.Inputs.UserProfileSharingSettings
    The sharing settings.
    SpaceStorageSettings Pulumi.AwsNative.SageMaker.Inputs.UserProfileDefaultSpaceStorageSettings
    StudioWebPortal Pulumi.AwsNative.SageMaker.UserProfileUserSettingsStudioWebPortal
    Indicates whether the Studio experience is available to users. If not, users cannot access Studio.
    CodeEditorAppSettings UserProfileCodeEditorAppSettings
    CustomFileSystemConfigs []UserProfileCustomFileSystemConfig
    CustomPosixUserConfig UserProfileCustomPosixUserConfig
    DefaultLandingUri string
    Defines which Amazon SageMaker application users are directed to by default.
    ExecutionRole string
    The user profile Amazon Resource Name (ARN).
    JupyterLabAppSettings UserProfileJupyterLabAppSettings
    JupyterServerAppSettings UserProfileJupyterServerAppSettings
    The Jupyter server's app settings.
    KernelGatewayAppSettings UserProfileKernelGatewayAppSettings
    The kernel gateway app settings.
    RStudioServerProAppSettings UserProfileRStudioServerProAppSettings
    SecurityGroups []string
    The security groups for the Amazon Virtual Private Cloud (VPC) that Studio uses for communication.
    SharingSettings UserProfileSharingSettings
    The sharing settings.
    SpaceStorageSettings UserProfileDefaultSpaceStorageSettings
    StudioWebPortal UserProfileUserSettingsStudioWebPortal
    Indicates whether the Studio experience is available to users. If not, users cannot access Studio.
    codeEditorAppSettings UserProfileCodeEditorAppSettings
    customFileSystemConfigs List<UserProfileCustomFileSystemConfig>
    customPosixUserConfig UserProfileCustomPosixUserConfig
    defaultLandingUri String
    Defines which Amazon SageMaker application users are directed to by default.
    executionRole String
    The user profile Amazon Resource Name (ARN).
    jupyterLabAppSettings UserProfileJupyterLabAppSettings
    jupyterServerAppSettings UserProfileJupyterServerAppSettings
    The Jupyter server's app settings.
    kernelGatewayAppSettings UserProfileKernelGatewayAppSettings
    The kernel gateway app settings.
    rStudioServerProAppSettings UserProfileRStudioServerProAppSettings
    securityGroups List<String>
    The security groups for the Amazon Virtual Private Cloud (VPC) that Studio uses for communication.
    sharingSettings UserProfileSharingSettings
    The sharing settings.
    spaceStorageSettings UserProfileDefaultSpaceStorageSettings
    studioWebPortal UserProfileUserSettingsStudioWebPortal
    Indicates whether the Studio experience is available to users. If not, users cannot access Studio.
    codeEditorAppSettings UserProfileCodeEditorAppSettings
    customFileSystemConfigs UserProfileCustomFileSystemConfig[]
    customPosixUserConfig UserProfileCustomPosixUserConfig
    defaultLandingUri string
    Defines which Amazon SageMaker application users are directed to by default.
    executionRole string
    The user profile Amazon Resource Name (ARN).
    jupyterLabAppSettings UserProfileJupyterLabAppSettings
    jupyterServerAppSettings UserProfileJupyterServerAppSettings
    The Jupyter server's app settings.
    kernelGatewayAppSettings UserProfileKernelGatewayAppSettings
    The kernel gateway app settings.
    rStudioServerProAppSettings UserProfileRStudioServerProAppSettings
    securityGroups string[]
    The security groups for the Amazon Virtual Private Cloud (VPC) that Studio uses for communication.
    sharingSettings UserProfileSharingSettings
    The sharing settings.
    spaceStorageSettings UserProfileDefaultSpaceStorageSettings
    studioWebPortal UserProfileUserSettingsStudioWebPortal
    Indicates whether the Studio experience is available to users. If not, users cannot access Studio.
    code_editor_app_settings UserProfileCodeEditorAppSettings
    custom_file_system_configs Sequence[UserProfileCustomFileSystemConfig]
    custom_posix_user_config UserProfileCustomPosixUserConfig
    default_landing_uri str
    Defines which Amazon SageMaker application users are directed to by default.
    execution_role str
    The user profile Amazon Resource Name (ARN).
    jupyter_lab_app_settings UserProfileJupyterLabAppSettings
    jupyter_server_app_settings UserProfileJupyterServerAppSettings
    The Jupyter server's app settings.
    kernel_gateway_app_settings UserProfileKernelGatewayAppSettings
    The kernel gateway app settings.
    r_studio_server_pro_app_settings UserProfileRStudioServerProAppSettings
    security_groups Sequence[str]
    The security groups for the Amazon Virtual Private Cloud (VPC) that Studio uses for communication.
    sharing_settings UserProfileSharingSettings
    The sharing settings.
    space_storage_settings UserProfileDefaultSpaceStorageSettings
    studio_web_portal UserProfileUserSettingsStudioWebPortal
    Indicates whether the Studio experience is available to users. If not, users cannot access Studio.
    codeEditorAppSettings Property Map
    customFileSystemConfigs List<Property Map>
    customPosixUserConfig Property Map
    defaultLandingUri String
    Defines which Amazon SageMaker application users are directed to by default.
    executionRole String
    The user profile Amazon Resource Name (ARN).
    jupyterLabAppSettings Property Map
    jupyterServerAppSettings Property Map
    The Jupyter server's app settings.
    kernelGatewayAppSettings Property Map
    The kernel gateway app settings.
    rStudioServerProAppSettings Property Map
    securityGroups List<String>
    The security groups for the Amazon Virtual Private Cloud (VPC) that Studio uses for communication.
    sharingSettings Property Map
    The sharing settings.
    spaceStorageSettings Property Map
    studioWebPortal "ENABLED" | "DISABLED"
    Indicates whether the Studio experience is available to users. If not, users cannot access Studio.

    UserProfileUserSettingsStudioWebPortal, UserProfileUserSettingsStudioWebPortalArgs

    Enabled
    ENABLED
    Disabled
    DISABLED
    UserProfileUserSettingsStudioWebPortalEnabled
    ENABLED
    UserProfileUserSettingsStudioWebPortalDisabled
    DISABLED
    Enabled
    ENABLED
    Disabled
    DISABLED
    Enabled
    ENABLED
    Disabled
    DISABLED
    ENABLED
    ENABLED
    DISABLED
    DISABLED
    "ENABLED"
    ENABLED
    "DISABLED"
    DISABLED

    Package Details

    Repository
    AWS Native pulumi/pulumi-aws-native
    License
    Apache-2.0
    aws-native logo

    AWS Native is in preview. AWS Classic is fully supported.

    AWS Native v0.102.0 published on Tuesday, Apr 16, 2024 by Pulumi