1. Packages
  2. Azure Native
  3. API Docs
  4. awsconnector
  5. SageMakerApp
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.73.0 published on Wednesday, Nov 20, 2024 by Pulumi

azure-native.awsconnector.SageMakerApp

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.73.0 published on Wednesday, Nov 20, 2024 by Pulumi

    A Microsoft.AwsConnector resource Azure REST API version: 2024-12-01.

    Example Usage

    SageMakerApps_CreateOrReplace

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var sageMakerApp = new AzureNative.AwsConnector.SageMakerApp("sageMakerApp", new()
        {
            Location = "wnlhgbkbelgwiwhnismoau",
            Name = "Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])",
            Properties = new AzureNative.AwsConnector.Inputs.SageMakerAppPropertiesArgs
            {
                Arn = "jlzaozimvtjn",
                AwsAccountId = "lgqcehdauhqdqezactw",
                AwsProperties = new AzureNative.AwsConnector.Inputs.AwsSageMakerAppPropertiesArgs
                {
                    AppArn = "gher",
                    AppName = "evzkcyynebo",
                    AppType = AzureNative.AwsConnector.AppType.Canvas,
                    DomainId = "dkqxukvimzaw",
                    ResourceSpec = new AzureNative.AwsConnector.Inputs.ResourceSpecArgs
                    {
                        InstanceType = AzureNative.AwsConnector.ResourceSpecInstanceType.MlC512xlarge,
                        SageMakerImageArn = "pgukixbhpruaz",
                        SageMakerImageVersionArn = "juqpu",
                    },
                    Tags = new[]
                    {
                        new AzureNative.AwsConnector.Inputs.TagArgs
                        {
                            Key = "bwiejavqzxocieoyuhmayxvf",
                            Value = "oiirwwaoqv",
                        },
                    },
                    UserProfileName = "hqjtakkgaetxvrmswgdzfbnna",
                },
                AwsRegion = "tnogtlqasqlenkt",
                AwsSourceSchema = "xshoewjusdxuy",
                AwsTags = 
                {
                    { "key2126", "vfltdeknkbeu" },
                },
                PublicCloudConnectorsResourceId = "vaphifjjavrvy",
                PublicCloudResourceName = "ptlnykuziapscweekj",
            },
            ResourceGroupName = "rgsageMakerApp",
            Tags = 
            {
                { "key3532", "z" },
            },
        });
    
    });
    
    package main
    
    import (
    	awsconnector "github.com/pulumi/pulumi-azure-native-sdk/awsconnector/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := awsconnector.NewSageMakerApp(ctx, "sageMakerApp", &awsconnector.SageMakerAppArgs{
    			Location: pulumi.String("wnlhgbkbelgwiwhnismoau"),
    			Name:     pulumi.String("Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])"),
    			Properties: &awsconnector.SageMakerAppPropertiesArgs{
    				Arn:          pulumi.String("jlzaozimvtjn"),
    				AwsAccountId: pulumi.String("lgqcehdauhqdqezactw"),
    				AwsProperties: &awsconnector.AwsSageMakerAppPropertiesArgs{
    					AppArn:   pulumi.String("gher"),
    					AppName:  pulumi.String("evzkcyynebo"),
    					AppType:  pulumi.String(awsconnector.AppTypeCanvas),
    					DomainId: pulumi.String("dkqxukvimzaw"),
    					ResourceSpec: &awsconnector.ResourceSpecArgs{
    						InstanceType:             pulumi.String(awsconnector.ResourceSpecInstanceTypeMlC512xlarge),
    						SageMakerImageArn:        pulumi.String("pgukixbhpruaz"),
    						SageMakerImageVersionArn: pulumi.String("juqpu"),
    					},
    					Tags: awsconnector.TagArray{
    						&awsconnector.TagArgs{
    							Key:   pulumi.String("bwiejavqzxocieoyuhmayxvf"),
    							Value: pulumi.String("oiirwwaoqv"),
    						},
    					},
    					UserProfileName: pulumi.String("hqjtakkgaetxvrmswgdzfbnna"),
    				},
    				AwsRegion:       pulumi.String("tnogtlqasqlenkt"),
    				AwsSourceSchema: pulumi.String("xshoewjusdxuy"),
    				AwsTags: pulumi.StringMap{
    					"key2126": pulumi.String("vfltdeknkbeu"),
    				},
    				PublicCloudConnectorsResourceId: pulumi.String("vaphifjjavrvy"),
    				PublicCloudResourceName:         pulumi.String("ptlnykuziapscweekj"),
    			},
    			ResourceGroupName: pulumi.String("rgsageMakerApp"),
    			Tags: pulumi.StringMap{
    				"key3532": pulumi.String("z"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.awsconnector.SageMakerApp;
    import com.pulumi.azurenative.awsconnector.SageMakerAppArgs;
    import com.pulumi.azurenative.awsconnector.inputs.SageMakerAppPropertiesArgs;
    import com.pulumi.azurenative.awsconnector.inputs.AwsSageMakerAppPropertiesArgs;
    import com.pulumi.azurenative.awsconnector.inputs.ResourceSpecArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var sageMakerApp = new SageMakerApp("sageMakerApp", SageMakerAppArgs.builder()
                .location("wnlhgbkbelgwiwhnismoau")
                .name("Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])")
                .properties(SageMakerAppPropertiesArgs.builder()
                    .arn("jlzaozimvtjn")
                    .awsAccountId("lgqcehdauhqdqezactw")
                    .awsProperties(AwsSageMakerAppPropertiesArgs.builder()
                        .appArn("gher")
                        .appName("evzkcyynebo")
                        .appType("Canvas")
                        .domainId("dkqxukvimzaw")
                        .resourceSpec(ResourceSpecArgs.builder()
                            .instanceType("ml.c5.12xlarge")
                            .sageMakerImageArn("pgukixbhpruaz")
                            .sageMakerImageVersionArn("juqpu")
                            .build())
                        .tags(TagArgs.builder()
                            .key("bwiejavqzxocieoyuhmayxvf")
                            .value("oiirwwaoqv")
                            .build())
                        .userProfileName("hqjtakkgaetxvrmswgdzfbnna")
                        .build())
                    .awsRegion("tnogtlqasqlenkt")
                    .awsSourceSchema("xshoewjusdxuy")
                    .awsTags(Map.of("key2126", "vfltdeknkbeu"))
                    .publicCloudConnectorsResourceId("vaphifjjavrvy")
                    .publicCloudResourceName("ptlnykuziapscweekj")
                    .build())
                .resourceGroupName("rgsageMakerApp")
                .tags(Map.of("key3532", "z"))
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    sage_maker_app = azure_native.awsconnector.SageMakerApp("sageMakerApp",
        location="wnlhgbkbelgwiwhnismoau",
        name="Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])",
        properties={
            "arn": "jlzaozimvtjn",
            "aws_account_id": "lgqcehdauhqdqezactw",
            "aws_properties": {
                "app_arn": "gher",
                "app_name": "evzkcyynebo",
                "app_type": azure_native.awsconnector.AppType.CANVAS,
                "domain_id": "dkqxukvimzaw",
                "resource_spec": {
                    "instance_type": azure_native.awsconnector.ResourceSpecInstanceType.ML_C512XLARGE,
                    "sage_maker_image_arn": "pgukixbhpruaz",
                    "sage_maker_image_version_arn": "juqpu",
                },
                "tags": [{
                    "key": "bwiejavqzxocieoyuhmayxvf",
                    "value": "oiirwwaoqv",
                }],
                "user_profile_name": "hqjtakkgaetxvrmswgdzfbnna",
            },
            "aws_region": "tnogtlqasqlenkt",
            "aws_source_schema": "xshoewjusdxuy",
            "aws_tags": {
                "key2126": "vfltdeknkbeu",
            },
            "public_cloud_connectors_resource_id": "vaphifjjavrvy",
            "public_cloud_resource_name": "ptlnykuziapscweekj",
        },
        resource_group_name="rgsageMakerApp",
        tags={
            "key3532": "z",
        })
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const sageMakerApp = new azure_native.awsconnector.SageMakerApp("sageMakerApp", {
        location: "wnlhgbkbelgwiwhnismoau",
        name: "Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])",
        properties: {
            arn: "jlzaozimvtjn",
            awsAccountId: "lgqcehdauhqdqezactw",
            awsProperties: {
                appArn: "gher",
                appName: "evzkcyynebo",
                appType: azure_native.awsconnector.AppType.Canvas,
                domainId: "dkqxukvimzaw",
                resourceSpec: {
                    instanceType: azure_native.awsconnector.ResourceSpecInstanceType.MlC512xlarge,
                    sageMakerImageArn: "pgukixbhpruaz",
                    sageMakerImageVersionArn: "juqpu",
                },
                tags: [{
                    key: "bwiejavqzxocieoyuhmayxvf",
                    value: "oiirwwaoqv",
                }],
                userProfileName: "hqjtakkgaetxvrmswgdzfbnna",
            },
            awsRegion: "tnogtlqasqlenkt",
            awsSourceSchema: "xshoewjusdxuy",
            awsTags: {
                key2126: "vfltdeknkbeu",
            },
            publicCloudConnectorsResourceId: "vaphifjjavrvy",
            publicCloudResourceName: "ptlnykuziapscweekj",
        },
        resourceGroupName: "rgsageMakerApp",
        tags: {
            key3532: "z",
        },
    });
    
    resources:
      sageMakerApp:
        type: azure-native:awsconnector:SageMakerApp
        properties:
          location: wnlhgbkbelgwiwhnismoau
          name: Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])
          properties:
            arn: jlzaozimvtjn
            awsAccountId: lgqcehdauhqdqezactw
            awsProperties:
              appArn: gher
              appName: evzkcyynebo
              appType: Canvas
              domainId: dkqxukvimzaw
              resourceSpec:
                instanceType: ml.c5.12xlarge
                sageMakerImageArn: pgukixbhpruaz
                sageMakerImageVersionArn: juqpu
              tags:
                - key: bwiejavqzxocieoyuhmayxvf
                  value: oiirwwaoqv
              userProfileName: hqjtakkgaetxvrmswgdzfbnna
            awsRegion: tnogtlqasqlenkt
            awsSourceSchema: xshoewjusdxuy
            awsTags:
              key2126: vfltdeknkbeu
            publicCloudConnectorsResourceId: vaphifjjavrvy
            publicCloudResourceName: ptlnykuziapscweekj
          resourceGroupName: rgsageMakerApp
          tags:
            key3532: z
    

    Create SageMakerApp Resource

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

    Constructor syntax

    new SageMakerApp(name: string, args: SageMakerAppArgs, opts?: CustomResourceOptions);
    @overload
    def SageMakerApp(resource_name: str,
                     args: SageMakerAppArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def SageMakerApp(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     resource_group_name: Optional[str] = None,
                     location: Optional[str] = None,
                     name: Optional[str] = None,
                     properties: Optional[SageMakerAppPropertiesArgs] = None,
                     tags: Optional[Mapping[str, str]] = None)
    func NewSageMakerApp(ctx *Context, name string, args SageMakerAppArgs, opts ...ResourceOption) (*SageMakerApp, error)
    public SageMakerApp(string name, SageMakerAppArgs args, CustomResourceOptions? opts = null)
    public SageMakerApp(String name, SageMakerAppArgs args)
    public SageMakerApp(String name, SageMakerAppArgs args, CustomResourceOptions options)
    
    type: azure-native:awsconnector:SageMakerApp
    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 SageMakerAppArgs
    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 SageMakerAppArgs
    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 SageMakerAppArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SageMakerAppArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SageMakerAppArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

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

    var sageMakerAppResource = new AzureNative.AwsConnector.SageMakerApp("sageMakerAppResource", new()
    {
        ResourceGroupName = "string",
        Location = "string",
        Name = "string",
        Properties = new AzureNative.AwsConnector.Inputs.SageMakerAppPropertiesArgs
        {
            Arn = "string",
            AwsAccountId = "string",
            AwsProperties = new AzureNative.AwsConnector.Inputs.AwsSageMakerAppPropertiesArgs
            {
                AppArn = "string",
                AppName = "string",
                AppType = "string",
                DomainId = "string",
                ResourceSpec = new AzureNative.AwsConnector.Inputs.ResourceSpecArgs
                {
                    InstanceType = "string",
                    SageMakerImageArn = "string",
                    SageMakerImageVersionArn = "string",
                },
                Tags = new[]
                {
                    new AzureNative.AwsConnector.Inputs.TagArgs
                    {
                        Key = "string",
                        Value = "string",
                    },
                },
                UserProfileName = "string",
            },
            AwsRegion = "string",
            AwsSourceSchema = "string",
            AwsTags = 
            {
                { "string", "string" },
            },
            PublicCloudConnectorsResourceId = "string",
            PublicCloudResourceName = "string",
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := awsconnector.NewSageMakerApp(ctx, "sageMakerAppResource", &awsconnector.SageMakerAppArgs{
    	ResourceGroupName: pulumi.String("string"),
    	Location:          pulumi.String("string"),
    	Name:              pulumi.String("string"),
    	Properties: &awsconnector.SageMakerAppPropertiesArgs{
    		Arn:          pulumi.String("string"),
    		AwsAccountId: pulumi.String("string"),
    		AwsProperties: &awsconnector.AwsSageMakerAppPropertiesArgs{
    			AppArn:   pulumi.String("string"),
    			AppName:  pulumi.String("string"),
    			AppType:  pulumi.String("string"),
    			DomainId: pulumi.String("string"),
    			ResourceSpec: &awsconnector.ResourceSpecArgs{
    				InstanceType:             pulumi.String("string"),
    				SageMakerImageArn:        pulumi.String("string"),
    				SageMakerImageVersionArn: pulumi.String("string"),
    			},
    			Tags: awsconnector.TagArray{
    				&awsconnector.TagArgs{
    					Key:   pulumi.String("string"),
    					Value: pulumi.String("string"),
    				},
    			},
    			UserProfileName: pulumi.String("string"),
    		},
    		AwsRegion:       pulumi.String("string"),
    		AwsSourceSchema: pulumi.String("string"),
    		AwsTags: pulumi.StringMap{
    			"string": pulumi.String("string"),
    		},
    		PublicCloudConnectorsResourceId: pulumi.String("string"),
    		PublicCloudResourceName:         pulumi.String("string"),
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var sageMakerAppResource = new SageMakerApp("sageMakerAppResource", SageMakerAppArgs.builder()
        .resourceGroupName("string")
        .location("string")
        .name("string")
        .properties(SageMakerAppPropertiesArgs.builder()
            .arn("string")
            .awsAccountId("string")
            .awsProperties(AwsSageMakerAppPropertiesArgs.builder()
                .appArn("string")
                .appName("string")
                .appType("string")
                .domainId("string")
                .resourceSpec(ResourceSpecArgs.builder()
                    .instanceType("string")
                    .sageMakerImageArn("string")
                    .sageMakerImageVersionArn("string")
                    .build())
                .tags(TagArgs.builder()
                    .key("string")
                    .value("string")
                    .build())
                .userProfileName("string")
                .build())
            .awsRegion("string")
            .awsSourceSchema("string")
            .awsTags(Map.of("string", "string"))
            .publicCloudConnectorsResourceId("string")
            .publicCloudResourceName("string")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    sage_maker_app_resource = azure_native.awsconnector.SageMakerApp("sageMakerAppResource",
        resource_group_name="string",
        location="string",
        name="string",
        properties={
            "arn": "string",
            "aws_account_id": "string",
            "aws_properties": {
                "app_arn": "string",
                "app_name": "string",
                "app_type": "string",
                "domain_id": "string",
                "resource_spec": {
                    "instance_type": "string",
                    "sage_maker_image_arn": "string",
                    "sage_maker_image_version_arn": "string",
                },
                "tags": [{
                    "key": "string",
                    "value": "string",
                }],
                "user_profile_name": "string",
            },
            "aws_region": "string",
            "aws_source_schema": "string",
            "aws_tags": {
                "string": "string",
            },
            "public_cloud_connectors_resource_id": "string",
            "public_cloud_resource_name": "string",
        },
        tags={
            "string": "string",
        })
    
    const sageMakerAppResource = new azure_native.awsconnector.SageMakerApp("sageMakerAppResource", {
        resourceGroupName: "string",
        location: "string",
        name: "string",
        properties: {
            arn: "string",
            awsAccountId: "string",
            awsProperties: {
                appArn: "string",
                appName: "string",
                appType: "string",
                domainId: "string",
                resourceSpec: {
                    instanceType: "string",
                    sageMakerImageArn: "string",
                    sageMakerImageVersionArn: "string",
                },
                tags: [{
                    key: "string",
                    value: "string",
                }],
                userProfileName: "string",
            },
            awsRegion: "string",
            awsSourceSchema: "string",
            awsTags: {
                string: "string",
            },
            publicCloudConnectorsResourceId: "string",
            publicCloudResourceName: "string",
        },
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:awsconnector:SageMakerApp
    properties:
        location: string
        name: string
        properties:
            arn: string
            awsAccountId: string
            awsProperties:
                appArn: string
                appName: string
                appType: string
                domainId: string
                resourceSpec:
                    instanceType: string
                    sageMakerImageArn: string
                    sageMakerImageVersionArn: string
                tags:
                    - key: string
                      value: string
                userProfileName: string
            awsRegion: string
            awsSourceSchema: string
            awsTags:
                string: string
            publicCloudConnectorsResourceId: string
            publicCloudResourceName: string
        resourceGroupName: string
        tags:
            string: string
    

    SageMakerApp Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The SageMakerApp resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Location string
    The geo-location where the resource lives
    Name string
    Name of SageMakerApp
    Properties Pulumi.AzureNative.AwsConnector.Inputs.SageMakerAppProperties
    The resource-specific properties for this resource.
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Location string
    The geo-location where the resource lives
    Name string
    Name of SageMakerApp
    Properties SageMakerAppPropertiesArgs
    The resource-specific properties for this resource.
    Tags map[string]string
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    location String
    The geo-location where the resource lives
    name String
    Name of SageMakerApp
    properties SageMakerAppProperties
    The resource-specific properties for this resource.
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    location string
    The geo-location where the resource lives
    name string
    Name of SageMakerApp
    properties SageMakerAppProperties
    The resource-specific properties for this resource.
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    location str
    The geo-location where the resource lives
    name str
    Name of SageMakerApp
    properties SageMakerAppPropertiesArgs
    The resource-specific properties for this resource.
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    location String
    The geo-location where the resource lives
    name String
    Name of SageMakerApp
    properties Property Map
    The resource-specific properties for this resource.
    tags Map<String>
    Resource tags.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    SystemData Pulumi.AzureNative.AwsConnector.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Id string
    The provider-assigned unique ID for this managed resource.
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id string
    The provider-assigned unique ID for this managed resource.
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id str
    The provider-assigned unique ID for this managed resource.
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    AppType, AppTypeArgs

    Canvas
    CanvasAppType enum Canvas
    JupyterServer
    JupyterServerAppType enum JupyterServer
    KernelGateway
    KernelGatewayAppType enum KernelGateway
    RSessionGateway
    RSessionGatewayAppType enum RSessionGateway
    RStudioServerPro
    RStudioServerProAppType enum RStudioServerPro
    AppTypeCanvas
    CanvasAppType enum Canvas
    AppTypeJupyterServer
    JupyterServerAppType enum JupyterServer
    AppTypeKernelGateway
    KernelGatewayAppType enum KernelGateway
    AppTypeRSessionGateway
    RSessionGatewayAppType enum RSessionGateway
    AppTypeRStudioServerPro
    RStudioServerProAppType enum RStudioServerPro
    Canvas
    CanvasAppType enum Canvas
    JupyterServer
    JupyterServerAppType enum JupyterServer
    KernelGateway
    KernelGatewayAppType enum KernelGateway
    RSessionGateway
    RSessionGatewayAppType enum RSessionGateway
    RStudioServerPro
    RStudioServerProAppType enum RStudioServerPro
    Canvas
    CanvasAppType enum Canvas
    JupyterServer
    JupyterServerAppType enum JupyterServer
    KernelGateway
    KernelGatewayAppType enum KernelGateway
    RSessionGateway
    RSessionGatewayAppType enum RSessionGateway
    RStudioServerPro
    RStudioServerProAppType enum RStudioServerPro
    CANVAS
    CanvasAppType enum Canvas
    JUPYTER_SERVER
    JupyterServerAppType enum JupyterServer
    KERNEL_GATEWAY
    KernelGatewayAppType enum KernelGateway
    R_SESSION_GATEWAY
    RSessionGatewayAppType enum RSessionGateway
    R_STUDIO_SERVER_PRO
    RStudioServerProAppType enum RStudioServerPro
    "Canvas"
    CanvasAppType enum Canvas
    "JupyterServer"
    JupyterServerAppType enum JupyterServer
    "KernelGateway"
    KernelGatewayAppType enum KernelGateway
    "RSessionGateway"
    RSessionGatewayAppType enum RSessionGateway
    "RStudioServerPro"
    RStudioServerProAppType enum RStudioServerPro

    AwsSageMakerAppProperties, AwsSageMakerAppPropertiesArgs

    AppArn string
    The Amazon Resource Name (ARN) of the app.
    AppName string
    The name of the app.
    AppType string | Pulumi.AzureNative.AwsConnector.AppType
    The type of app.
    DomainId string
    The domain ID.
    ResourceSpec Pulumi.AzureNative.AwsConnector.Inputs.ResourceSpec
    The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
    Tags List<Pulumi.AzureNative.AwsConnector.Inputs.Tag>
    A list of tags to apply to the app.
    UserProfileName string
    The user profile name.
    AppArn string
    The Amazon Resource Name (ARN) of the app.
    AppName string
    The name of the app.
    AppType string | AppType
    The type of app.
    DomainId string
    The domain ID.
    ResourceSpec ResourceSpec
    The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
    Tags []Tag
    A list of tags to apply to the app.
    UserProfileName string
    The user profile name.
    appArn String
    The Amazon Resource Name (ARN) of the app.
    appName String
    The name of the app.
    appType String | AppType
    The type of app.
    domainId String
    The domain ID.
    resourceSpec ResourceSpec
    The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
    tags List<Tag>
    A list of tags to apply to the app.
    userProfileName String
    The user profile name.
    appArn string
    The Amazon Resource Name (ARN) of the app.
    appName string
    The name of the app.
    appType string | AppType
    The type of app.
    domainId string
    The domain ID.
    resourceSpec ResourceSpec
    The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
    tags Tag[]
    A list of tags to apply to the app.
    userProfileName string
    The user profile name.
    app_arn str
    The Amazon Resource Name (ARN) of the app.
    app_name str
    The name of the app.
    app_type str | AppType
    The type of app.
    domain_id str
    The domain ID.
    resource_spec ResourceSpec
    The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
    tags Sequence[Tag]
    A list of tags to apply to the app.
    user_profile_name str
    The user profile name.
    appArn String
    The Amazon Resource Name (ARN) of the app.
    appName String
    The name of the app.
    appType String | "Canvas" | "JupyterServer" | "KernelGateway" | "RSessionGateway" | "RStudioServerPro"
    The type of app.
    domainId String
    The domain ID.
    resourceSpec Property Map
    The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
    tags List<Property Map>
    A list of tags to apply to the app.
    userProfileName String
    The user profile name.

    AwsSageMakerAppPropertiesResponse, AwsSageMakerAppPropertiesResponseArgs

    AppArn string
    The Amazon Resource Name (ARN) of the app.
    AppName string
    The name of the app.
    AppType string
    The type of app.
    DomainId string
    The domain ID.
    ResourceSpec Pulumi.AzureNative.AwsConnector.Inputs.ResourceSpecResponse
    The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
    Tags List<Pulumi.AzureNative.AwsConnector.Inputs.TagResponse>
    A list of tags to apply to the app.
    UserProfileName string
    The user profile name.
    AppArn string
    The Amazon Resource Name (ARN) of the app.
    AppName string
    The name of the app.
    AppType string
    The type of app.
    DomainId string
    The domain ID.
    ResourceSpec ResourceSpecResponse
    The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
    Tags []TagResponse
    A list of tags to apply to the app.
    UserProfileName string
    The user profile name.
    appArn String
    The Amazon Resource Name (ARN) of the app.
    appName String
    The name of the app.
    appType String
    The type of app.
    domainId String
    The domain ID.
    resourceSpec ResourceSpecResponse
    The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
    tags List<TagResponse>
    A list of tags to apply to the app.
    userProfileName String
    The user profile name.
    appArn string
    The Amazon Resource Name (ARN) of the app.
    appName string
    The name of the app.
    appType string
    The type of app.
    domainId string
    The domain ID.
    resourceSpec ResourceSpecResponse
    The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
    tags TagResponse[]
    A list of tags to apply to the app.
    userProfileName string
    The user profile name.
    app_arn str
    The Amazon Resource Name (ARN) of the app.
    app_name str
    The name of the app.
    app_type str
    The type of app.
    domain_id str
    The domain ID.
    resource_spec ResourceSpecResponse
    The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
    tags Sequence[TagResponse]
    A list of tags to apply to the app.
    user_profile_name str
    The user profile name.
    appArn String
    The Amazon Resource Name (ARN) of the app.
    appName String
    The name of the app.
    appType String
    The type of app.
    domainId String
    The domain ID.
    resourceSpec Property Map
    The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
    tags List<Property Map>
    A list of tags to apply to the app.
    userProfileName String
    The user profile name.

    ResourceSpec, ResourceSpecArgs

    InstanceType string | Pulumi.AzureNative.AwsConnector.ResourceSpecInstanceType
    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 string | ResourceSpecInstanceType
    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 String | ResourceSpecInstanceType
    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 string | ResourceSpecInstanceType
    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 str | ResourceSpecInstanceType
    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 String | "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.2xlarge" | "ml.g5.48xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.xlarge" | "ml.geospatial.interactive" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5d.12xlarge" | "ml.m5d.16xlarge" | "ml.m5d.24xlarge" | "ml.m5d.2xlarge" | "ml.m5d.4xlarge" | "ml.m5d.8xlarge" | "ml.m5d.large" | "ml.m5d.xlarge" | "ml.p3.16xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3dn.24xlarge" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.r5.12xlarge" | "ml.r5.16xlarge" | "ml.r5.24xlarge" | "ml.r5.2xlarge" | "ml.r5.4xlarge" | "ml.r5.8xlarge" | "ml.r5.large" | "ml.r5.xlarge" | "ml.t3.2xlarge" | "ml.t3.large" | "ml.t3.medium" | "ml.t3.micro" | "ml.t3.small" | "ml.t3.xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "system"
    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.

    ResourceSpecInstanceType, ResourceSpecInstanceTypeArgs

    MlC512xlarge
    ml.c5.12xlargeResourceSpecInstanceType enum ml.c5.12xlarge
    MlC518xlarge
    ml.c5.18xlargeResourceSpecInstanceType enum ml.c5.18xlarge
    MlC524xlarge
    ml.c5.24xlargeResourceSpecInstanceType enum ml.c5.24xlarge
    MlC52xlarge
    ml.c5.2xlargeResourceSpecInstanceType enum ml.c5.2xlarge
    MlC54xlarge
    ml.c5.4xlargeResourceSpecInstanceType enum ml.c5.4xlarge
    MlC59xlarge
    ml.c5.9xlargeResourceSpecInstanceType enum ml.c5.9xlarge
    MlC5Large
    ml.c5.largeResourceSpecInstanceType enum ml.c5.large
    MlC5Xlarge
    ml.c5.xlargeResourceSpecInstanceType enum ml.c5.xlarge
    MlG4dn12xlarge
    ml.g4dn.12xlargeResourceSpecInstanceType enum ml.g4dn.12xlarge
    MlG4dn16xlarge
    ml.g4dn.16xlargeResourceSpecInstanceType enum ml.g4dn.16xlarge
    MlG4dn2xlarge
    ml.g4dn.2xlargeResourceSpecInstanceType enum ml.g4dn.2xlarge
    MlG4dn4xlarge
    ml.g4dn.4xlargeResourceSpecInstanceType enum ml.g4dn.4xlarge
    MlG4dn8xlarge
    ml.g4dn.8xlargeResourceSpecInstanceType enum ml.g4dn.8xlarge
    MlG4dnXlarge
    ml.g4dn.xlargeResourceSpecInstanceType enum ml.g4dn.xlarge
    MlG512xlarge
    ml.g5.12xlargeResourceSpecInstanceType enum ml.g5.12xlarge
    MlG516xlarge
    ml.g5.16xlargeResourceSpecInstanceType enum ml.g5.16xlarge
    MlG524xlarge
    ml.g5.24xlargeResourceSpecInstanceType enum ml.g5.24xlarge
    MlG52xlarge
    ml.g5.2xlargeResourceSpecInstanceType enum ml.g5.2xlarge
    MlG548xlarge
    ml.g5.48xlargeResourceSpecInstanceType enum ml.g5.48xlarge
    MlG54xlarge
    ml.g5.4xlargeResourceSpecInstanceType enum ml.g5.4xlarge
    MlG58xlarge
    ml.g5.8xlargeResourceSpecInstanceType enum ml.g5.8xlarge
    MlG5Xlarge
    ml.g5.xlargeResourceSpecInstanceType enum ml.g5.xlarge
    MlGeospatialInteractive
    ml.geospatial.interactiveResourceSpecInstanceType enum ml.geospatial.interactive
    MlM512xlarge
    ml.m5.12xlargeResourceSpecInstanceType enum ml.m5.12xlarge
    MlM516xlarge
    ml.m5.16xlargeResourceSpecInstanceType enum ml.m5.16xlarge
    MlM524xlarge
    ml.m5.24xlargeResourceSpecInstanceType enum ml.m5.24xlarge
    MlM52xlarge
    ml.m5.2xlargeResourceSpecInstanceType enum ml.m5.2xlarge
    MlM54xlarge
    ml.m5.4xlargeResourceSpecInstanceType enum ml.m5.4xlarge
    MlM58xlarge
    ml.m5.8xlargeResourceSpecInstanceType enum ml.m5.8xlarge
    MlM5Large
    ml.m5.largeResourceSpecInstanceType enum ml.m5.large
    MlM5Xlarge
    ml.m5.xlargeResourceSpecInstanceType enum ml.m5.xlarge
    MlM5d12xlarge
    ml.m5d.12xlargeResourceSpecInstanceType enum ml.m5d.12xlarge
    MlM5d16xlarge
    ml.m5d.16xlargeResourceSpecInstanceType enum ml.m5d.16xlarge
    MlM5d24xlarge
    ml.m5d.24xlargeResourceSpecInstanceType enum ml.m5d.24xlarge
    MlM5d2xlarge
    ml.m5d.2xlargeResourceSpecInstanceType enum ml.m5d.2xlarge
    MlM5d4xlarge
    ml.m5d.4xlargeResourceSpecInstanceType enum ml.m5d.4xlarge
    MlM5d8xlarge
    ml.m5d.8xlargeResourceSpecInstanceType enum ml.m5d.8xlarge
    MlM5dLarge
    ml.m5d.largeResourceSpecInstanceType enum ml.m5d.large
    MlM5dXlarge
    ml.m5d.xlargeResourceSpecInstanceType enum ml.m5d.xlarge
    MlP316xlarge
    ml.p3.16xlargeResourceSpecInstanceType enum ml.p3.16xlarge
    MlP32xlarge
    ml.p3.2xlargeResourceSpecInstanceType enum ml.p3.2xlarge
    MlP38xlarge
    ml.p3.8xlargeResourceSpecInstanceType enum ml.p3.8xlarge
    MlP3dn24xlarge
    ml.p3dn.24xlargeResourceSpecInstanceType enum ml.p3dn.24xlarge
    MlP4d24xlarge
    ml.p4d.24xlargeResourceSpecInstanceType enum ml.p4d.24xlarge
    MlP4de24xlarge
    ml.p4de.24xlargeResourceSpecInstanceType enum ml.p4de.24xlarge
    MlR512xlarge
    ml.r5.12xlargeResourceSpecInstanceType enum ml.r5.12xlarge
    MlR516xlarge
    ml.r5.16xlargeResourceSpecInstanceType enum ml.r5.16xlarge
    MlR524xlarge
    ml.r5.24xlargeResourceSpecInstanceType enum ml.r5.24xlarge
    MlR52xlarge
    ml.r5.2xlargeResourceSpecInstanceType enum ml.r5.2xlarge
    MlR54xlarge
    ml.r5.4xlargeResourceSpecInstanceType enum ml.r5.4xlarge
    MlR58xlarge
    ml.r5.8xlargeResourceSpecInstanceType enum ml.r5.8xlarge
    MlR5Large
    ml.r5.largeResourceSpecInstanceType enum ml.r5.large
    MlR5Xlarge
    ml.r5.xlargeResourceSpecInstanceType enum ml.r5.xlarge
    MlT32xlarge
    ml.t3.2xlargeResourceSpecInstanceType enum ml.t3.2xlarge
    MlT3Large
    ml.t3.largeResourceSpecInstanceType enum ml.t3.large
    MlT3Medium
    ml.t3.mediumResourceSpecInstanceType enum ml.t3.medium
    MlT3Micro
    ml.t3.microResourceSpecInstanceType enum ml.t3.micro
    MlT3Small
    ml.t3.smallResourceSpecInstanceType enum ml.t3.small
    MlT3Xlarge
    ml.t3.xlargeResourceSpecInstanceType enum ml.t3.xlarge
    MlTrn12xlarge
    ml.trn1.2xlargeResourceSpecInstanceType enum ml.trn1.2xlarge
    MlTrn132xlarge
    ml.trn1.32xlargeResourceSpecInstanceType enum ml.trn1.32xlarge
    MlTrn1n32xlarge
    ml.trn1n.32xlargeResourceSpecInstanceType enum ml.trn1n.32xlarge
    System
    systemResourceSpecInstanceType enum system
    ResourceSpecInstanceTypeMlC512xlarge
    ml.c5.12xlargeResourceSpecInstanceType enum ml.c5.12xlarge
    ResourceSpecInstanceTypeMlC518xlarge
    ml.c5.18xlargeResourceSpecInstanceType enum ml.c5.18xlarge
    ResourceSpecInstanceTypeMlC524xlarge
    ml.c5.24xlargeResourceSpecInstanceType enum ml.c5.24xlarge
    ResourceSpecInstanceTypeMlC52xlarge
    ml.c5.2xlargeResourceSpecInstanceType enum ml.c5.2xlarge
    ResourceSpecInstanceTypeMlC54xlarge
    ml.c5.4xlargeResourceSpecInstanceType enum ml.c5.4xlarge
    ResourceSpecInstanceTypeMlC59xlarge
    ml.c5.9xlargeResourceSpecInstanceType enum ml.c5.9xlarge
    ResourceSpecInstanceTypeMlC5Large
    ml.c5.largeResourceSpecInstanceType enum ml.c5.large
    ResourceSpecInstanceTypeMlC5Xlarge
    ml.c5.xlargeResourceSpecInstanceType enum ml.c5.xlarge
    ResourceSpecInstanceTypeMlG4dn12xlarge
    ml.g4dn.12xlargeResourceSpecInstanceType enum ml.g4dn.12xlarge
    ResourceSpecInstanceTypeMlG4dn16xlarge
    ml.g4dn.16xlargeResourceSpecInstanceType enum ml.g4dn.16xlarge
    ResourceSpecInstanceTypeMlG4dn2xlarge
    ml.g4dn.2xlargeResourceSpecInstanceType enum ml.g4dn.2xlarge
    ResourceSpecInstanceTypeMlG4dn4xlarge
    ml.g4dn.4xlargeResourceSpecInstanceType enum ml.g4dn.4xlarge
    ResourceSpecInstanceTypeMlG4dn8xlarge
    ml.g4dn.8xlargeResourceSpecInstanceType enum ml.g4dn.8xlarge
    ResourceSpecInstanceTypeMlG4dnXlarge
    ml.g4dn.xlargeResourceSpecInstanceType enum ml.g4dn.xlarge
    ResourceSpecInstanceTypeMlG512xlarge
    ml.g5.12xlargeResourceSpecInstanceType enum ml.g5.12xlarge
    ResourceSpecInstanceTypeMlG516xlarge
    ml.g5.16xlargeResourceSpecInstanceType enum ml.g5.16xlarge
    ResourceSpecInstanceTypeMlG524xlarge
    ml.g5.24xlargeResourceSpecInstanceType enum ml.g5.24xlarge
    ResourceSpecInstanceTypeMlG52xlarge
    ml.g5.2xlargeResourceSpecInstanceType enum ml.g5.2xlarge
    ResourceSpecInstanceTypeMlG548xlarge
    ml.g5.48xlargeResourceSpecInstanceType enum ml.g5.48xlarge
    ResourceSpecInstanceTypeMlG54xlarge
    ml.g5.4xlargeResourceSpecInstanceType enum ml.g5.4xlarge
    ResourceSpecInstanceTypeMlG58xlarge
    ml.g5.8xlargeResourceSpecInstanceType enum ml.g5.8xlarge
    ResourceSpecInstanceTypeMlG5Xlarge
    ml.g5.xlargeResourceSpecInstanceType enum ml.g5.xlarge
    ResourceSpecInstanceTypeMlGeospatialInteractive
    ml.geospatial.interactiveResourceSpecInstanceType enum ml.geospatial.interactive
    ResourceSpecInstanceTypeMlM512xlarge
    ml.m5.12xlargeResourceSpecInstanceType enum ml.m5.12xlarge
    ResourceSpecInstanceTypeMlM516xlarge
    ml.m5.16xlargeResourceSpecInstanceType enum ml.m5.16xlarge
    ResourceSpecInstanceTypeMlM524xlarge
    ml.m5.24xlargeResourceSpecInstanceType enum ml.m5.24xlarge
    ResourceSpecInstanceTypeMlM52xlarge
    ml.m5.2xlargeResourceSpecInstanceType enum ml.m5.2xlarge
    ResourceSpecInstanceTypeMlM54xlarge
    ml.m5.4xlargeResourceSpecInstanceType enum ml.m5.4xlarge
    ResourceSpecInstanceTypeMlM58xlarge
    ml.m5.8xlargeResourceSpecInstanceType enum ml.m5.8xlarge
    ResourceSpecInstanceTypeMlM5Large
    ml.m5.largeResourceSpecInstanceType enum ml.m5.large
    ResourceSpecInstanceTypeMlM5Xlarge
    ml.m5.xlargeResourceSpecInstanceType enum ml.m5.xlarge
    ResourceSpecInstanceTypeMlM5d12xlarge
    ml.m5d.12xlargeResourceSpecInstanceType enum ml.m5d.12xlarge
    ResourceSpecInstanceTypeMlM5d16xlarge
    ml.m5d.16xlargeResourceSpecInstanceType enum ml.m5d.16xlarge
    ResourceSpecInstanceTypeMlM5d24xlarge
    ml.m5d.24xlargeResourceSpecInstanceType enum ml.m5d.24xlarge
    ResourceSpecInstanceTypeMlM5d2xlarge
    ml.m5d.2xlargeResourceSpecInstanceType enum ml.m5d.2xlarge
    ResourceSpecInstanceTypeMlM5d4xlarge
    ml.m5d.4xlargeResourceSpecInstanceType enum ml.m5d.4xlarge
    ResourceSpecInstanceTypeMlM5d8xlarge
    ml.m5d.8xlargeResourceSpecInstanceType enum ml.m5d.8xlarge
    ResourceSpecInstanceTypeMlM5dLarge
    ml.m5d.largeResourceSpecInstanceType enum ml.m5d.large
    ResourceSpecInstanceTypeMlM5dXlarge
    ml.m5d.xlargeResourceSpecInstanceType enum ml.m5d.xlarge
    ResourceSpecInstanceTypeMlP316xlarge
    ml.p3.16xlargeResourceSpecInstanceType enum ml.p3.16xlarge
    ResourceSpecInstanceTypeMlP32xlarge
    ml.p3.2xlargeResourceSpecInstanceType enum ml.p3.2xlarge
    ResourceSpecInstanceTypeMlP38xlarge
    ml.p3.8xlargeResourceSpecInstanceType enum ml.p3.8xlarge
    ResourceSpecInstanceTypeMlP3dn24xlarge
    ml.p3dn.24xlargeResourceSpecInstanceType enum ml.p3dn.24xlarge
    ResourceSpecInstanceTypeMlP4d24xlarge
    ml.p4d.24xlargeResourceSpecInstanceType enum ml.p4d.24xlarge
    ResourceSpecInstanceTypeMlP4de24xlarge
    ml.p4de.24xlargeResourceSpecInstanceType enum ml.p4de.24xlarge
    ResourceSpecInstanceTypeMlR512xlarge
    ml.r5.12xlargeResourceSpecInstanceType enum ml.r5.12xlarge
    ResourceSpecInstanceTypeMlR516xlarge
    ml.r5.16xlargeResourceSpecInstanceType enum ml.r5.16xlarge
    ResourceSpecInstanceTypeMlR524xlarge
    ml.r5.24xlargeResourceSpecInstanceType enum ml.r5.24xlarge
    ResourceSpecInstanceTypeMlR52xlarge
    ml.r5.2xlargeResourceSpecInstanceType enum ml.r5.2xlarge
    ResourceSpecInstanceTypeMlR54xlarge
    ml.r5.4xlargeResourceSpecInstanceType enum ml.r5.4xlarge
    ResourceSpecInstanceTypeMlR58xlarge
    ml.r5.8xlargeResourceSpecInstanceType enum ml.r5.8xlarge
    ResourceSpecInstanceTypeMlR5Large
    ml.r5.largeResourceSpecInstanceType enum ml.r5.large
    ResourceSpecInstanceTypeMlR5Xlarge
    ml.r5.xlargeResourceSpecInstanceType enum ml.r5.xlarge
    ResourceSpecInstanceTypeMlT32xlarge
    ml.t3.2xlargeResourceSpecInstanceType enum ml.t3.2xlarge
    ResourceSpecInstanceTypeMlT3Large
    ml.t3.largeResourceSpecInstanceType enum ml.t3.large
    ResourceSpecInstanceTypeMlT3Medium
    ml.t3.mediumResourceSpecInstanceType enum ml.t3.medium
    ResourceSpecInstanceTypeMlT3Micro
    ml.t3.microResourceSpecInstanceType enum ml.t3.micro
    ResourceSpecInstanceTypeMlT3Small
    ml.t3.smallResourceSpecInstanceType enum ml.t3.small
    ResourceSpecInstanceTypeMlT3Xlarge
    ml.t3.xlargeResourceSpecInstanceType enum ml.t3.xlarge
    ResourceSpecInstanceTypeMlTrn12xlarge
    ml.trn1.2xlargeResourceSpecInstanceType enum ml.trn1.2xlarge
    ResourceSpecInstanceTypeMlTrn132xlarge
    ml.trn1.32xlargeResourceSpecInstanceType enum ml.trn1.32xlarge
    ResourceSpecInstanceTypeMlTrn1n32xlarge
    ml.trn1n.32xlargeResourceSpecInstanceType enum ml.trn1n.32xlarge
    ResourceSpecInstanceTypeSystem
    systemResourceSpecInstanceType enum system
    MlC512xlarge
    ml.c5.12xlargeResourceSpecInstanceType enum ml.c5.12xlarge
    MlC518xlarge
    ml.c5.18xlargeResourceSpecInstanceType enum ml.c5.18xlarge
    MlC524xlarge
    ml.c5.24xlargeResourceSpecInstanceType enum ml.c5.24xlarge
    MlC52xlarge
    ml.c5.2xlargeResourceSpecInstanceType enum ml.c5.2xlarge
    MlC54xlarge
    ml.c5.4xlargeResourceSpecInstanceType enum ml.c5.4xlarge
    MlC59xlarge
    ml.c5.9xlargeResourceSpecInstanceType enum ml.c5.9xlarge
    MlC5Large
    ml.c5.largeResourceSpecInstanceType enum ml.c5.large
    MlC5Xlarge
    ml.c5.xlargeResourceSpecInstanceType enum ml.c5.xlarge
    MlG4dn12xlarge
    ml.g4dn.12xlargeResourceSpecInstanceType enum ml.g4dn.12xlarge
    MlG4dn16xlarge
    ml.g4dn.16xlargeResourceSpecInstanceType enum ml.g4dn.16xlarge
    MlG4dn2xlarge
    ml.g4dn.2xlargeResourceSpecInstanceType enum ml.g4dn.2xlarge
    MlG4dn4xlarge
    ml.g4dn.4xlargeResourceSpecInstanceType enum ml.g4dn.4xlarge
    MlG4dn8xlarge
    ml.g4dn.8xlargeResourceSpecInstanceType enum ml.g4dn.8xlarge
    MlG4dnXlarge
    ml.g4dn.xlargeResourceSpecInstanceType enum ml.g4dn.xlarge
    MlG512xlarge
    ml.g5.12xlargeResourceSpecInstanceType enum ml.g5.12xlarge
    MlG516xlarge
    ml.g5.16xlargeResourceSpecInstanceType enum ml.g5.16xlarge
    MlG524xlarge
    ml.g5.24xlargeResourceSpecInstanceType enum ml.g5.24xlarge
    MlG52xlarge
    ml.g5.2xlargeResourceSpecInstanceType enum ml.g5.2xlarge
    MlG548xlarge
    ml.g5.48xlargeResourceSpecInstanceType enum ml.g5.48xlarge
    MlG54xlarge
    ml.g5.4xlargeResourceSpecInstanceType enum ml.g5.4xlarge
    MlG58xlarge
    ml.g5.8xlargeResourceSpecInstanceType enum ml.g5.8xlarge
    MlG5Xlarge
    ml.g5.xlargeResourceSpecInstanceType enum ml.g5.xlarge
    MlGeospatialInteractive
    ml.geospatial.interactiveResourceSpecInstanceType enum ml.geospatial.interactive
    MlM512xlarge
    ml.m5.12xlargeResourceSpecInstanceType enum ml.m5.12xlarge
    MlM516xlarge
    ml.m5.16xlargeResourceSpecInstanceType enum ml.m5.16xlarge
    MlM524xlarge
    ml.m5.24xlargeResourceSpecInstanceType enum ml.m5.24xlarge
    MlM52xlarge
    ml.m5.2xlargeResourceSpecInstanceType enum ml.m5.2xlarge
    MlM54xlarge
    ml.m5.4xlargeResourceSpecInstanceType enum ml.m5.4xlarge
    MlM58xlarge
    ml.m5.8xlargeResourceSpecInstanceType enum ml.m5.8xlarge
    MlM5Large
    ml.m5.largeResourceSpecInstanceType enum ml.m5.large
    MlM5Xlarge
    ml.m5.xlargeResourceSpecInstanceType enum ml.m5.xlarge
    MlM5d12xlarge
    ml.m5d.12xlargeResourceSpecInstanceType enum ml.m5d.12xlarge
    MlM5d16xlarge
    ml.m5d.16xlargeResourceSpecInstanceType enum ml.m5d.16xlarge
    MlM5d24xlarge
    ml.m5d.24xlargeResourceSpecInstanceType enum ml.m5d.24xlarge
    MlM5d2xlarge
    ml.m5d.2xlargeResourceSpecInstanceType enum ml.m5d.2xlarge
    MlM5d4xlarge
    ml.m5d.4xlargeResourceSpecInstanceType enum ml.m5d.4xlarge
    MlM5d8xlarge
    ml.m5d.8xlargeResourceSpecInstanceType enum ml.m5d.8xlarge
    MlM5dLarge
    ml.m5d.largeResourceSpecInstanceType enum ml.m5d.large
    MlM5dXlarge
    ml.m5d.xlargeResourceSpecInstanceType enum ml.m5d.xlarge
    MlP316xlarge
    ml.p3.16xlargeResourceSpecInstanceType enum ml.p3.16xlarge
    MlP32xlarge
    ml.p3.2xlargeResourceSpecInstanceType enum ml.p3.2xlarge
    MlP38xlarge
    ml.p3.8xlargeResourceSpecInstanceType enum ml.p3.8xlarge
    MlP3dn24xlarge
    ml.p3dn.24xlargeResourceSpecInstanceType enum ml.p3dn.24xlarge
    MlP4d24xlarge
    ml.p4d.24xlargeResourceSpecInstanceType enum ml.p4d.24xlarge
    MlP4de24xlarge
    ml.p4de.24xlargeResourceSpecInstanceType enum ml.p4de.24xlarge
    MlR512xlarge
    ml.r5.12xlargeResourceSpecInstanceType enum ml.r5.12xlarge
    MlR516xlarge
    ml.r5.16xlargeResourceSpecInstanceType enum ml.r5.16xlarge
    MlR524xlarge
    ml.r5.24xlargeResourceSpecInstanceType enum ml.r5.24xlarge
    MlR52xlarge
    ml.r5.2xlargeResourceSpecInstanceType enum ml.r5.2xlarge
    MlR54xlarge
    ml.r5.4xlargeResourceSpecInstanceType enum ml.r5.4xlarge
    MlR58xlarge
    ml.r5.8xlargeResourceSpecInstanceType enum ml.r5.8xlarge
    MlR5Large
    ml.r5.largeResourceSpecInstanceType enum ml.r5.large
    MlR5Xlarge
    ml.r5.xlargeResourceSpecInstanceType enum ml.r5.xlarge
    MlT32xlarge
    ml.t3.2xlargeResourceSpecInstanceType enum ml.t3.2xlarge
    MlT3Large
    ml.t3.largeResourceSpecInstanceType enum ml.t3.large
    MlT3Medium
    ml.t3.mediumResourceSpecInstanceType enum ml.t3.medium
    MlT3Micro
    ml.t3.microResourceSpecInstanceType enum ml.t3.micro
    MlT3Small
    ml.t3.smallResourceSpecInstanceType enum ml.t3.small
    MlT3Xlarge
    ml.t3.xlargeResourceSpecInstanceType enum ml.t3.xlarge
    MlTrn12xlarge
    ml.trn1.2xlargeResourceSpecInstanceType enum ml.trn1.2xlarge
    MlTrn132xlarge
    ml.trn1.32xlargeResourceSpecInstanceType enum ml.trn1.32xlarge
    MlTrn1n32xlarge
    ml.trn1n.32xlargeResourceSpecInstanceType enum ml.trn1n.32xlarge
    System
    systemResourceSpecInstanceType enum system
    MlC512xlarge
    ml.c5.12xlargeResourceSpecInstanceType enum ml.c5.12xlarge
    MlC518xlarge
    ml.c5.18xlargeResourceSpecInstanceType enum ml.c5.18xlarge
    MlC524xlarge
    ml.c5.24xlargeResourceSpecInstanceType enum ml.c5.24xlarge
    MlC52xlarge
    ml.c5.2xlargeResourceSpecInstanceType enum ml.c5.2xlarge
    MlC54xlarge
    ml.c5.4xlargeResourceSpecInstanceType enum ml.c5.4xlarge
    MlC59xlarge
    ml.c5.9xlargeResourceSpecInstanceType enum ml.c5.9xlarge
    MlC5Large
    ml.c5.largeResourceSpecInstanceType enum ml.c5.large
    MlC5Xlarge
    ml.c5.xlargeResourceSpecInstanceType enum ml.c5.xlarge
    MlG4dn12xlarge
    ml.g4dn.12xlargeResourceSpecInstanceType enum ml.g4dn.12xlarge
    MlG4dn16xlarge
    ml.g4dn.16xlargeResourceSpecInstanceType enum ml.g4dn.16xlarge
    MlG4dn2xlarge
    ml.g4dn.2xlargeResourceSpecInstanceType enum ml.g4dn.2xlarge
    MlG4dn4xlarge
    ml.g4dn.4xlargeResourceSpecInstanceType enum ml.g4dn.4xlarge
    MlG4dn8xlarge
    ml.g4dn.8xlargeResourceSpecInstanceType enum ml.g4dn.8xlarge
    MlG4dnXlarge
    ml.g4dn.xlargeResourceSpecInstanceType enum ml.g4dn.xlarge
    MlG512xlarge
    ml.g5.12xlargeResourceSpecInstanceType enum ml.g5.12xlarge
    MlG516xlarge
    ml.g5.16xlargeResourceSpecInstanceType enum ml.g5.16xlarge
    MlG524xlarge
    ml.g5.24xlargeResourceSpecInstanceType enum ml.g5.24xlarge
    MlG52xlarge
    ml.g5.2xlargeResourceSpecInstanceType enum ml.g5.2xlarge
    MlG548xlarge
    ml.g5.48xlargeResourceSpecInstanceType enum ml.g5.48xlarge
    MlG54xlarge
    ml.g5.4xlargeResourceSpecInstanceType enum ml.g5.4xlarge
    MlG58xlarge
    ml.g5.8xlargeResourceSpecInstanceType enum ml.g5.8xlarge
    MlG5Xlarge
    ml.g5.xlargeResourceSpecInstanceType enum ml.g5.xlarge
    MlGeospatialInteractive
    ml.geospatial.interactiveResourceSpecInstanceType enum ml.geospatial.interactive
    MlM512xlarge
    ml.m5.12xlargeResourceSpecInstanceType enum ml.m5.12xlarge
    MlM516xlarge
    ml.m5.16xlargeResourceSpecInstanceType enum ml.m5.16xlarge
    MlM524xlarge
    ml.m5.24xlargeResourceSpecInstanceType enum ml.m5.24xlarge
    MlM52xlarge
    ml.m5.2xlargeResourceSpecInstanceType enum ml.m5.2xlarge
    MlM54xlarge
    ml.m5.4xlargeResourceSpecInstanceType enum ml.m5.4xlarge
    MlM58xlarge
    ml.m5.8xlargeResourceSpecInstanceType enum ml.m5.8xlarge
    MlM5Large
    ml.m5.largeResourceSpecInstanceType enum ml.m5.large
    MlM5Xlarge
    ml.m5.xlargeResourceSpecInstanceType enum ml.m5.xlarge
    MlM5d12xlarge
    ml.m5d.12xlargeResourceSpecInstanceType enum ml.m5d.12xlarge
    MlM5d16xlarge
    ml.m5d.16xlargeResourceSpecInstanceType enum ml.m5d.16xlarge
    MlM5d24xlarge
    ml.m5d.24xlargeResourceSpecInstanceType enum ml.m5d.24xlarge
    MlM5d2xlarge
    ml.m5d.2xlargeResourceSpecInstanceType enum ml.m5d.2xlarge
    MlM5d4xlarge
    ml.m5d.4xlargeResourceSpecInstanceType enum ml.m5d.4xlarge
    MlM5d8xlarge
    ml.m5d.8xlargeResourceSpecInstanceType enum ml.m5d.8xlarge
    MlM5dLarge
    ml.m5d.largeResourceSpecInstanceType enum ml.m5d.large
    MlM5dXlarge
    ml.m5d.xlargeResourceSpecInstanceType enum ml.m5d.xlarge
    MlP316xlarge
    ml.p3.16xlargeResourceSpecInstanceType enum ml.p3.16xlarge
    MlP32xlarge
    ml.p3.2xlargeResourceSpecInstanceType enum ml.p3.2xlarge
    MlP38xlarge
    ml.p3.8xlargeResourceSpecInstanceType enum ml.p3.8xlarge
    MlP3dn24xlarge
    ml.p3dn.24xlargeResourceSpecInstanceType enum ml.p3dn.24xlarge
    MlP4d24xlarge
    ml.p4d.24xlargeResourceSpecInstanceType enum ml.p4d.24xlarge
    MlP4de24xlarge
    ml.p4de.24xlargeResourceSpecInstanceType enum ml.p4de.24xlarge
    MlR512xlarge
    ml.r5.12xlargeResourceSpecInstanceType enum ml.r5.12xlarge
    MlR516xlarge
    ml.r5.16xlargeResourceSpecInstanceType enum ml.r5.16xlarge
    MlR524xlarge
    ml.r5.24xlargeResourceSpecInstanceType enum ml.r5.24xlarge
    MlR52xlarge
    ml.r5.2xlargeResourceSpecInstanceType enum ml.r5.2xlarge
    MlR54xlarge
    ml.r5.4xlargeResourceSpecInstanceType enum ml.r5.4xlarge
    MlR58xlarge
    ml.r5.8xlargeResourceSpecInstanceType enum ml.r5.8xlarge
    MlR5Large
    ml.r5.largeResourceSpecInstanceType enum ml.r5.large
    MlR5Xlarge
    ml.r5.xlargeResourceSpecInstanceType enum ml.r5.xlarge
    MlT32xlarge
    ml.t3.2xlargeResourceSpecInstanceType enum ml.t3.2xlarge
    MlT3Large
    ml.t3.largeResourceSpecInstanceType enum ml.t3.large
    MlT3Medium
    ml.t3.mediumResourceSpecInstanceType enum ml.t3.medium
    MlT3Micro
    ml.t3.microResourceSpecInstanceType enum ml.t3.micro
    MlT3Small
    ml.t3.smallResourceSpecInstanceType enum ml.t3.small
    MlT3Xlarge
    ml.t3.xlargeResourceSpecInstanceType enum ml.t3.xlarge
    MlTrn12xlarge
    ml.trn1.2xlargeResourceSpecInstanceType enum ml.trn1.2xlarge
    MlTrn132xlarge
    ml.trn1.32xlargeResourceSpecInstanceType enum ml.trn1.32xlarge
    MlTrn1n32xlarge
    ml.trn1n.32xlargeResourceSpecInstanceType enum ml.trn1n.32xlarge
    System
    systemResourceSpecInstanceType enum system
    ML_C512XLARGE
    ml.c5.12xlargeResourceSpecInstanceType enum ml.c5.12xlarge
    ML_C518XLARGE
    ml.c5.18xlargeResourceSpecInstanceType enum ml.c5.18xlarge
    ML_C524XLARGE
    ml.c5.24xlargeResourceSpecInstanceType enum ml.c5.24xlarge
    ML_C52XLARGE
    ml.c5.2xlargeResourceSpecInstanceType enum ml.c5.2xlarge
    ML_C54XLARGE
    ml.c5.4xlargeResourceSpecInstanceType enum ml.c5.4xlarge
    ML_C59XLARGE
    ml.c5.9xlargeResourceSpecInstanceType enum ml.c5.9xlarge
    ML_C5_LARGE
    ml.c5.largeResourceSpecInstanceType enum ml.c5.large
    ML_C5_XLARGE
    ml.c5.xlargeResourceSpecInstanceType enum ml.c5.xlarge
    ML_G4DN12XLARGE
    ml.g4dn.12xlargeResourceSpecInstanceType enum ml.g4dn.12xlarge
    ML_G4DN16XLARGE
    ml.g4dn.16xlargeResourceSpecInstanceType enum ml.g4dn.16xlarge
    ML_G4DN2XLARGE
    ml.g4dn.2xlargeResourceSpecInstanceType enum ml.g4dn.2xlarge
    ML_G4DN4XLARGE
    ml.g4dn.4xlargeResourceSpecInstanceType enum ml.g4dn.4xlarge
    ML_G4DN8XLARGE
    ml.g4dn.8xlargeResourceSpecInstanceType enum ml.g4dn.8xlarge
    ML_G4DN_XLARGE
    ml.g4dn.xlargeResourceSpecInstanceType enum ml.g4dn.xlarge
    ML_G512XLARGE
    ml.g5.12xlargeResourceSpecInstanceType enum ml.g5.12xlarge
    ML_G516XLARGE
    ml.g5.16xlargeResourceSpecInstanceType enum ml.g5.16xlarge
    ML_G524XLARGE
    ml.g5.24xlargeResourceSpecInstanceType enum ml.g5.24xlarge
    ML_G52XLARGE
    ml.g5.2xlargeResourceSpecInstanceType enum ml.g5.2xlarge
    ML_G548XLARGE
    ml.g5.48xlargeResourceSpecInstanceType enum ml.g5.48xlarge
    ML_G54XLARGE
    ml.g5.4xlargeResourceSpecInstanceType enum ml.g5.4xlarge
    ML_G58XLARGE
    ml.g5.8xlargeResourceSpecInstanceType enum ml.g5.8xlarge
    ML_G5_XLARGE
    ml.g5.xlargeResourceSpecInstanceType enum ml.g5.xlarge
    ML_GEOSPATIAL_INTERACTIVE
    ml.geospatial.interactiveResourceSpecInstanceType enum ml.geospatial.interactive
    ML_M512XLARGE
    ml.m5.12xlargeResourceSpecInstanceType enum ml.m5.12xlarge
    ML_M516XLARGE
    ml.m5.16xlargeResourceSpecInstanceType enum ml.m5.16xlarge
    ML_M524XLARGE
    ml.m5.24xlargeResourceSpecInstanceType enum ml.m5.24xlarge
    ML_M52XLARGE
    ml.m5.2xlargeResourceSpecInstanceType enum ml.m5.2xlarge
    ML_M54XLARGE
    ml.m5.4xlargeResourceSpecInstanceType enum ml.m5.4xlarge
    ML_M58XLARGE
    ml.m5.8xlargeResourceSpecInstanceType enum ml.m5.8xlarge
    ML_M5_LARGE
    ml.m5.largeResourceSpecInstanceType enum ml.m5.large
    ML_M5_XLARGE
    ml.m5.xlargeResourceSpecInstanceType enum ml.m5.xlarge
    ML_M5D12XLARGE
    ml.m5d.12xlargeResourceSpecInstanceType enum ml.m5d.12xlarge
    ML_M5D16XLARGE
    ml.m5d.16xlargeResourceSpecInstanceType enum ml.m5d.16xlarge
    ML_M5D24XLARGE
    ml.m5d.24xlargeResourceSpecInstanceType enum ml.m5d.24xlarge
    ML_M5D2XLARGE
    ml.m5d.2xlargeResourceSpecInstanceType enum ml.m5d.2xlarge
    ML_M5D4XLARGE
    ml.m5d.4xlargeResourceSpecInstanceType enum ml.m5d.4xlarge
    ML_M5D8XLARGE
    ml.m5d.8xlargeResourceSpecInstanceType enum ml.m5d.8xlarge
    ML_M5D_LARGE
    ml.m5d.largeResourceSpecInstanceType enum ml.m5d.large
    ML_M5D_XLARGE
    ml.m5d.xlargeResourceSpecInstanceType enum ml.m5d.xlarge
    ML_P316XLARGE
    ml.p3.16xlargeResourceSpecInstanceType enum ml.p3.16xlarge
    ML_P32XLARGE
    ml.p3.2xlargeResourceSpecInstanceType enum ml.p3.2xlarge
    ML_P38XLARGE
    ml.p3.8xlargeResourceSpecInstanceType enum ml.p3.8xlarge
    ML_P3DN24XLARGE
    ml.p3dn.24xlargeResourceSpecInstanceType enum ml.p3dn.24xlarge
    ML_P4D24XLARGE
    ml.p4d.24xlargeResourceSpecInstanceType enum ml.p4d.24xlarge
    ML_P4DE24XLARGE
    ml.p4de.24xlargeResourceSpecInstanceType enum ml.p4de.24xlarge
    ML_R512XLARGE
    ml.r5.12xlargeResourceSpecInstanceType enum ml.r5.12xlarge
    ML_R516XLARGE
    ml.r5.16xlargeResourceSpecInstanceType enum ml.r5.16xlarge
    ML_R524XLARGE
    ml.r5.24xlargeResourceSpecInstanceType enum ml.r5.24xlarge
    ML_R52XLARGE
    ml.r5.2xlargeResourceSpecInstanceType enum ml.r5.2xlarge
    ML_R54XLARGE
    ml.r5.4xlargeResourceSpecInstanceType enum ml.r5.4xlarge
    ML_R58XLARGE
    ml.r5.8xlargeResourceSpecInstanceType enum ml.r5.8xlarge
    ML_R5_LARGE
    ml.r5.largeResourceSpecInstanceType enum ml.r5.large
    ML_R5_XLARGE
    ml.r5.xlargeResourceSpecInstanceType enum ml.r5.xlarge
    ML_T32XLARGE
    ml.t3.2xlargeResourceSpecInstanceType enum ml.t3.2xlarge
    ML_T3_LARGE
    ml.t3.largeResourceSpecInstanceType enum ml.t3.large
    ML_T3_MEDIUM
    ml.t3.mediumResourceSpecInstanceType enum ml.t3.medium
    ML_T3_MICRO
    ml.t3.microResourceSpecInstanceType enum ml.t3.micro
    ML_T3_SMALL
    ml.t3.smallResourceSpecInstanceType enum ml.t3.small
    ML_T3_XLARGE
    ml.t3.xlargeResourceSpecInstanceType enum ml.t3.xlarge
    ML_TRN12XLARGE
    ml.trn1.2xlargeResourceSpecInstanceType enum ml.trn1.2xlarge
    ML_TRN132XLARGE
    ml.trn1.32xlargeResourceSpecInstanceType enum ml.trn1.32xlarge
    ML_TRN1N32XLARGE
    ml.trn1n.32xlargeResourceSpecInstanceType enum ml.trn1n.32xlarge
    SYSTEM
    systemResourceSpecInstanceType enum system
    "ml.c5.12xlarge"
    ml.c5.12xlargeResourceSpecInstanceType enum ml.c5.12xlarge
    "ml.c5.18xlarge"
    ml.c5.18xlargeResourceSpecInstanceType enum ml.c5.18xlarge
    "ml.c5.24xlarge"
    ml.c5.24xlargeResourceSpecInstanceType enum ml.c5.24xlarge
    "ml.c5.2xlarge"
    ml.c5.2xlargeResourceSpecInstanceType enum ml.c5.2xlarge
    "ml.c5.4xlarge"
    ml.c5.4xlargeResourceSpecInstanceType enum ml.c5.4xlarge
    "ml.c5.9xlarge"
    ml.c5.9xlargeResourceSpecInstanceType enum ml.c5.9xlarge
    "ml.c5.large"
    ml.c5.largeResourceSpecInstanceType enum ml.c5.large
    "ml.c5.xlarge"
    ml.c5.xlargeResourceSpecInstanceType enum ml.c5.xlarge
    "ml.g4dn.12xlarge"
    ml.g4dn.12xlargeResourceSpecInstanceType enum ml.g4dn.12xlarge
    "ml.g4dn.16xlarge"
    ml.g4dn.16xlargeResourceSpecInstanceType enum ml.g4dn.16xlarge
    "ml.g4dn.2xlarge"
    ml.g4dn.2xlargeResourceSpecInstanceType enum ml.g4dn.2xlarge
    "ml.g4dn.4xlarge"
    ml.g4dn.4xlargeResourceSpecInstanceType enum ml.g4dn.4xlarge
    "ml.g4dn.8xlarge"
    ml.g4dn.8xlargeResourceSpecInstanceType enum ml.g4dn.8xlarge
    "ml.g4dn.xlarge"
    ml.g4dn.xlargeResourceSpecInstanceType enum ml.g4dn.xlarge
    "ml.g5.12xlarge"
    ml.g5.12xlargeResourceSpecInstanceType enum ml.g5.12xlarge
    "ml.g5.16xlarge"
    ml.g5.16xlargeResourceSpecInstanceType enum ml.g5.16xlarge
    "ml.g5.24xlarge"
    ml.g5.24xlargeResourceSpecInstanceType enum ml.g5.24xlarge
    "ml.g5.2xlarge"
    ml.g5.2xlargeResourceSpecInstanceType enum ml.g5.2xlarge
    "ml.g5.48xlarge"
    ml.g5.48xlargeResourceSpecInstanceType enum ml.g5.48xlarge
    "ml.g5.4xlarge"
    ml.g5.4xlargeResourceSpecInstanceType enum ml.g5.4xlarge
    "ml.g5.8xlarge"
    ml.g5.8xlargeResourceSpecInstanceType enum ml.g5.8xlarge
    "ml.g5.xlarge"
    ml.g5.xlargeResourceSpecInstanceType enum ml.g5.xlarge
    "ml.geospatial.interactive"
    ml.geospatial.interactiveResourceSpecInstanceType enum ml.geospatial.interactive
    "ml.m5.12xlarge"
    ml.m5.12xlargeResourceSpecInstanceType enum ml.m5.12xlarge
    "ml.m5.16xlarge"
    ml.m5.16xlargeResourceSpecInstanceType enum ml.m5.16xlarge
    "ml.m5.24xlarge"
    ml.m5.24xlargeResourceSpecInstanceType enum ml.m5.24xlarge
    "ml.m5.2xlarge"
    ml.m5.2xlargeResourceSpecInstanceType enum ml.m5.2xlarge
    "ml.m5.4xlarge"
    ml.m5.4xlargeResourceSpecInstanceType enum ml.m5.4xlarge
    "ml.m5.8xlarge"
    ml.m5.8xlargeResourceSpecInstanceType enum ml.m5.8xlarge
    "ml.m5.large"
    ml.m5.largeResourceSpecInstanceType enum ml.m5.large
    "ml.m5.xlarge"
    ml.m5.xlargeResourceSpecInstanceType enum ml.m5.xlarge
    "ml.m5d.12xlarge"
    ml.m5d.12xlargeResourceSpecInstanceType enum ml.m5d.12xlarge
    "ml.m5d.16xlarge"
    ml.m5d.16xlargeResourceSpecInstanceType enum ml.m5d.16xlarge
    "ml.m5d.24xlarge"
    ml.m5d.24xlargeResourceSpecInstanceType enum ml.m5d.24xlarge
    "ml.m5d.2xlarge"
    ml.m5d.2xlargeResourceSpecInstanceType enum ml.m5d.2xlarge
    "ml.m5d.4xlarge"
    ml.m5d.4xlargeResourceSpecInstanceType enum ml.m5d.4xlarge
    "ml.m5d.8xlarge"
    ml.m5d.8xlargeResourceSpecInstanceType enum ml.m5d.8xlarge
    "ml.m5d.large"
    ml.m5d.largeResourceSpecInstanceType enum ml.m5d.large
    "ml.m5d.xlarge"
    ml.m5d.xlargeResourceSpecInstanceType enum ml.m5d.xlarge
    "ml.p3.16xlarge"
    ml.p3.16xlargeResourceSpecInstanceType enum ml.p3.16xlarge
    "ml.p3.2xlarge"
    ml.p3.2xlargeResourceSpecInstanceType enum ml.p3.2xlarge
    "ml.p3.8xlarge"
    ml.p3.8xlargeResourceSpecInstanceType enum ml.p3.8xlarge
    "ml.p3dn.24xlarge"
    ml.p3dn.24xlargeResourceSpecInstanceType enum ml.p3dn.24xlarge
    "ml.p4d.24xlarge"
    ml.p4d.24xlargeResourceSpecInstanceType enum ml.p4d.24xlarge
    "ml.p4de.24xlarge"
    ml.p4de.24xlargeResourceSpecInstanceType enum ml.p4de.24xlarge
    "ml.r5.12xlarge"
    ml.r5.12xlargeResourceSpecInstanceType enum ml.r5.12xlarge
    "ml.r5.16xlarge"
    ml.r5.16xlargeResourceSpecInstanceType enum ml.r5.16xlarge
    "ml.r5.24xlarge"
    ml.r5.24xlargeResourceSpecInstanceType enum ml.r5.24xlarge
    "ml.r5.2xlarge"
    ml.r5.2xlargeResourceSpecInstanceType enum ml.r5.2xlarge
    "ml.r5.4xlarge"
    ml.r5.4xlargeResourceSpecInstanceType enum ml.r5.4xlarge
    "ml.r5.8xlarge"
    ml.r5.8xlargeResourceSpecInstanceType enum ml.r5.8xlarge
    "ml.r5.large"
    ml.r5.largeResourceSpecInstanceType enum ml.r5.large
    "ml.r5.xlarge"
    ml.r5.xlargeResourceSpecInstanceType enum ml.r5.xlarge
    "ml.t3.2xlarge"
    ml.t3.2xlargeResourceSpecInstanceType enum ml.t3.2xlarge
    "ml.t3.large"
    ml.t3.largeResourceSpecInstanceType enum ml.t3.large
    "ml.t3.medium"
    ml.t3.mediumResourceSpecInstanceType enum ml.t3.medium
    "ml.t3.micro"
    ml.t3.microResourceSpecInstanceType enum ml.t3.micro
    "ml.t3.small"
    ml.t3.smallResourceSpecInstanceType enum ml.t3.small
    "ml.t3.xlarge"
    ml.t3.xlargeResourceSpecInstanceType enum ml.t3.xlarge
    "ml.trn1.2xlarge"
    ml.trn1.2xlargeResourceSpecInstanceType enum ml.trn1.2xlarge
    "ml.trn1.32xlarge"
    ml.trn1.32xlargeResourceSpecInstanceType enum ml.trn1.32xlarge
    "ml.trn1n.32xlarge"
    ml.trn1n.32xlargeResourceSpecInstanceType enum ml.trn1n.32xlarge
    "system"
    systemResourceSpecInstanceType enum system

    ResourceSpecResponse, ResourceSpecResponseArgs

    InstanceType string
    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 string
    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 String
    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 string
    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 str
    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 String
    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.

    SageMakerAppProperties, SageMakerAppPropertiesArgs

    Arn string
    Amazon Resource Name (ARN)
    AwsAccountId string
    AWS Account ID
    AwsProperties Pulumi.AzureNative.AwsConnector.Inputs.AwsSageMakerAppProperties
    AWS Properties
    AwsRegion string
    AWS Region
    AwsSourceSchema string
    AWS Source Schema
    AwsTags Dictionary<string, string>
    AWS Tags
    PublicCloudConnectorsResourceId string
    Public Cloud Connectors Resource ID
    PublicCloudResourceName string
    Public Cloud Resource Name
    Arn string
    Amazon Resource Name (ARN)
    AwsAccountId string
    AWS Account ID
    AwsProperties AwsSageMakerAppProperties
    AWS Properties
    AwsRegion string
    AWS Region
    AwsSourceSchema string
    AWS Source Schema
    AwsTags map[string]string
    AWS Tags
    PublicCloudConnectorsResourceId string
    Public Cloud Connectors Resource ID
    PublicCloudResourceName string
    Public Cloud Resource Name
    arn String
    Amazon Resource Name (ARN)
    awsAccountId String
    AWS Account ID
    awsProperties AwsSageMakerAppProperties
    AWS Properties
    awsRegion String
    AWS Region
    awsSourceSchema String
    AWS Source Schema
    awsTags Map<String,String>
    AWS Tags
    publicCloudConnectorsResourceId String
    Public Cloud Connectors Resource ID
    publicCloudResourceName String
    Public Cloud Resource Name
    arn string
    Amazon Resource Name (ARN)
    awsAccountId string
    AWS Account ID
    awsProperties AwsSageMakerAppProperties
    AWS Properties
    awsRegion string
    AWS Region
    awsSourceSchema string
    AWS Source Schema
    awsTags {[key: string]: string}
    AWS Tags
    publicCloudConnectorsResourceId string
    Public Cloud Connectors Resource ID
    publicCloudResourceName string
    Public Cloud Resource Name
    arn str
    Amazon Resource Name (ARN)
    aws_account_id str
    AWS Account ID
    aws_properties AwsSageMakerAppProperties
    AWS Properties
    aws_region str
    AWS Region
    aws_source_schema str
    AWS Source Schema
    aws_tags Mapping[str, str]
    AWS Tags
    public_cloud_connectors_resource_id str
    Public Cloud Connectors Resource ID
    public_cloud_resource_name str
    Public Cloud Resource Name
    arn String
    Amazon Resource Name (ARN)
    awsAccountId String
    AWS Account ID
    awsProperties Property Map
    AWS Properties
    awsRegion String
    AWS Region
    awsSourceSchema String
    AWS Source Schema
    awsTags Map<String>
    AWS Tags
    publicCloudConnectorsResourceId String
    Public Cloud Connectors Resource ID
    publicCloudResourceName String
    Public Cloud Resource Name

    SageMakerAppPropertiesResponse, SageMakerAppPropertiesResponseArgs

    ProvisioningState string
    The status of the last operation.
    Arn string
    Amazon Resource Name (ARN)
    AwsAccountId string
    AWS Account ID
    AwsProperties Pulumi.AzureNative.AwsConnector.Inputs.AwsSageMakerAppPropertiesResponse
    AWS Properties
    AwsRegion string
    AWS Region
    AwsSourceSchema string
    AWS Source Schema
    AwsTags Dictionary<string, string>
    AWS Tags
    PublicCloudConnectorsResourceId string
    Public Cloud Connectors Resource ID
    PublicCloudResourceName string
    Public Cloud Resource Name
    ProvisioningState string
    The status of the last operation.
    Arn string
    Amazon Resource Name (ARN)
    AwsAccountId string
    AWS Account ID
    AwsProperties AwsSageMakerAppPropertiesResponse
    AWS Properties
    AwsRegion string
    AWS Region
    AwsSourceSchema string
    AWS Source Schema
    AwsTags map[string]string
    AWS Tags
    PublicCloudConnectorsResourceId string
    Public Cloud Connectors Resource ID
    PublicCloudResourceName string
    Public Cloud Resource Name
    provisioningState String
    The status of the last operation.
    arn String
    Amazon Resource Name (ARN)
    awsAccountId String
    AWS Account ID
    awsProperties AwsSageMakerAppPropertiesResponse
    AWS Properties
    awsRegion String
    AWS Region
    awsSourceSchema String
    AWS Source Schema
    awsTags Map<String,String>
    AWS Tags
    publicCloudConnectorsResourceId String
    Public Cloud Connectors Resource ID
    publicCloudResourceName String
    Public Cloud Resource Name
    provisioningState string
    The status of the last operation.
    arn string
    Amazon Resource Name (ARN)
    awsAccountId string
    AWS Account ID
    awsProperties AwsSageMakerAppPropertiesResponse
    AWS Properties
    awsRegion string
    AWS Region
    awsSourceSchema string
    AWS Source Schema
    awsTags {[key: string]: string}
    AWS Tags
    publicCloudConnectorsResourceId string
    Public Cloud Connectors Resource ID
    publicCloudResourceName string
    Public Cloud Resource Name
    provisioning_state str
    The status of the last operation.
    arn str
    Amazon Resource Name (ARN)
    aws_account_id str
    AWS Account ID
    aws_properties AwsSageMakerAppPropertiesResponse
    AWS Properties
    aws_region str
    AWS Region
    aws_source_schema str
    AWS Source Schema
    aws_tags Mapping[str, str]
    AWS Tags
    public_cloud_connectors_resource_id str
    Public Cloud Connectors Resource ID
    public_cloud_resource_name str
    Public Cloud Resource Name
    provisioningState String
    The status of the last operation.
    arn String
    Amazon Resource Name (ARN)
    awsAccountId String
    AWS Account ID
    awsProperties Property Map
    AWS Properties
    awsRegion String
    AWS Region
    awsSourceSchema String
    AWS Source Schema
    awsTags Map<String>
    AWS Tags
    publicCloudConnectorsResourceId String
    Public Cloud Connectors Resource ID
    publicCloudResourceName String
    Public Cloud Resource Name

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Tag, TagArgs

    Key string
    The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
    Value string
    The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
    Key string
    The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
    Value string
    The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
    key String
    The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
    value String
    The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
    key string
    The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
    value string
    The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
    key str
    The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
    value str
    The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
    key String
    The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
    value String
    The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.

    TagResponse, TagResponseArgs

    Key string
    The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
    Value string
    The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
    Key string
    The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
    Value string
    The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
    key String
    The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
    value String
    The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
    key string
    The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
    value string
    The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
    key str
    The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
    value str
    The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
    key String
    The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
    value String
    The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:awsconnector:SageMakerApp bqmsonklppqgjvicxnpire /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AwsConnector/sageMakerApps/{name} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.73.0 published on Wednesday, Nov 20, 2024 by Pulumi