1. Packages
  2. Azure Native v2
  3. API Docs
  4. awsconnector
  5. SageMakerNotebookInstanceSummary
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.82.0 published on Friday, Jan 10, 2025 by Pulumi

azure-native-v2.awsconnector.SageMakerNotebookInstanceSummary

Explore with Pulumi AI

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

Example Usage

SageMakerNotebookInstanceSummaries_CreateOrReplace

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var sageMakerNotebookInstanceSummary = new AzureNative.AwsConnector.SageMakerNotebookInstanceSummary("sageMakerNotebookInstanceSummary", new()
    {
        Location = "khdjmafoabcvhksslfjtzlyh",
        Name = "Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])",
        Properties = new AzureNative.AwsConnector.Inputs.SageMakerNotebookInstanceSummaryPropertiesArgs
        {
            Arn = "ncvgnrtwmjxungpgrodvsy",
            AwsAccountId = "ymlnxodvrwztwew",
            AwsProperties = new AzureNative.AwsConnector.Inputs.AwsSageMakerNotebookInstanceSummaryPropertiesArgs
            {
                AdditionalCodeRepositories = new[]
                {
                    "pkjwtq",
                },
                CreationTime = "2024-10-08T03:50:00.672Z",
                DefaultCodeRepository = "edbiryeqsbvjcqmwygujvl",
                InstanceType = new AzureNative.AwsConnector.Inputs.InstanceTypeEnumValueArgs
                {
                    Value = AzureNative.AwsConnector.InstanceType.MlC42xlarge,
                },
                LastModifiedTime = "2024-10-08T03:50:00.673Z",
                NotebookInstanceArn = "wxrcvukcvvtd",
                NotebookInstanceLifecycleConfigName = "t",
                NotebookInstanceName = "nwemhcydnbtwmti",
                NotebookInstanceStatus = new AzureNative.AwsConnector.Inputs.NotebookInstanceStatusEnumValueArgs
                {
                    Value = AzureNative.AwsConnector.NotebookInstanceStatus.Deleting,
                },
                Url = "ricclxhpsojfujeolzbg",
            },
            AwsRegion = "oqykvfkrsmwkvszj",
            AwsSourceSchema = "gqddonfcsn",
            AwsTags = 
            {
                { "key4152", "dujjfkuxcm" },
            },
            PublicCloudConnectorsResourceId = "khlyjmgts",
            PublicCloudResourceName = "ocd",
        },
        ResourceGroupName = "rgsageMakerNotebookInstanceSummary",
        Tags = 
        {
            { "key9470", "aluoxfdglqvvkktxeg" },
        },
    });

});
Copy
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.NewSageMakerNotebookInstanceSummary(ctx, "sageMakerNotebookInstanceSummary", &awsconnector.SageMakerNotebookInstanceSummaryArgs{
			Location: pulumi.String("khdjmafoabcvhksslfjtzlyh"),
			Name:     pulumi.String("Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])"),
			Properties: &awsconnector.SageMakerNotebookInstanceSummaryPropertiesArgs{
				Arn:          pulumi.String("ncvgnrtwmjxungpgrodvsy"),
				AwsAccountId: pulumi.String("ymlnxodvrwztwew"),
				AwsProperties: &awsconnector.AwsSageMakerNotebookInstanceSummaryPropertiesArgs{
					AdditionalCodeRepositories: pulumi.StringArray{
						pulumi.String("pkjwtq"),
					},
					CreationTime:          pulumi.String("2024-10-08T03:50:00.672Z"),
					DefaultCodeRepository: pulumi.String("edbiryeqsbvjcqmwygujvl"),
					InstanceType: &awsconnector.InstanceTypeEnumValueArgs{
						Value: pulumi.String(awsconnector.InstanceTypeMlC42xlarge),
					},
					LastModifiedTime:                    pulumi.String("2024-10-08T03:50:00.673Z"),
					NotebookInstanceArn:                 pulumi.String("wxrcvukcvvtd"),
					NotebookInstanceLifecycleConfigName: pulumi.String("t"),
					NotebookInstanceName:                pulumi.String("nwemhcydnbtwmti"),
					NotebookInstanceStatus: &awsconnector.NotebookInstanceStatusEnumValueArgs{
						Value: pulumi.String(awsconnector.NotebookInstanceStatusDeleting),
					},
					Url: pulumi.String("ricclxhpsojfujeolzbg"),
				},
				AwsRegion:       pulumi.String("oqykvfkrsmwkvszj"),
				AwsSourceSchema: pulumi.String("gqddonfcsn"),
				AwsTags: pulumi.StringMap{
					"key4152": pulumi.String("dujjfkuxcm"),
				},
				PublicCloudConnectorsResourceId: pulumi.String("khlyjmgts"),
				PublicCloudResourceName:         pulumi.String("ocd"),
			},
			ResourceGroupName: pulumi.String("rgsageMakerNotebookInstanceSummary"),
			Tags: pulumi.StringMap{
				"key9470": pulumi.String("aluoxfdglqvvkktxeg"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.awsconnector.SageMakerNotebookInstanceSummary;
import com.pulumi.azurenative.awsconnector.SageMakerNotebookInstanceSummaryArgs;
import com.pulumi.azurenative.awsconnector.inputs.SageMakerNotebookInstanceSummaryPropertiesArgs;
import com.pulumi.azurenative.awsconnector.inputs.AwsSageMakerNotebookInstanceSummaryPropertiesArgs;
import com.pulumi.azurenative.awsconnector.inputs.InstanceTypeEnumValueArgs;
import com.pulumi.azurenative.awsconnector.inputs.NotebookInstanceStatusEnumValueArgs;
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 sageMakerNotebookInstanceSummary = new SageMakerNotebookInstanceSummary("sageMakerNotebookInstanceSummary", SageMakerNotebookInstanceSummaryArgs.builder()
            .location("khdjmafoabcvhksslfjtzlyh")
            .name("Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])")
            .properties(SageMakerNotebookInstanceSummaryPropertiesArgs.builder()
                .arn("ncvgnrtwmjxungpgrodvsy")
                .awsAccountId("ymlnxodvrwztwew")
                .awsProperties(AwsSageMakerNotebookInstanceSummaryPropertiesArgs.builder()
                    .additionalCodeRepositories("pkjwtq")
                    .creationTime("2024-10-08T03:50:00.672Z")
                    .defaultCodeRepository("edbiryeqsbvjcqmwygujvl")
                    .instanceType(InstanceTypeEnumValueArgs.builder()
                        .value("ml.c4.2xlarge")
                        .build())
                    .lastModifiedTime("2024-10-08T03:50:00.673Z")
                    .notebookInstanceArn("wxrcvukcvvtd")
                    .notebookInstanceLifecycleConfigName("t")
                    .notebookInstanceName("nwemhcydnbtwmti")
                    .notebookInstanceStatus(NotebookInstanceStatusEnumValueArgs.builder()
                        .value("Deleting")
                        .build())
                    .url("ricclxhpsojfujeolzbg")
                    .build())
                .awsRegion("oqykvfkrsmwkvszj")
                .awsSourceSchema("gqddonfcsn")
                .awsTags(Map.of("key4152", "dujjfkuxcm"))
                .publicCloudConnectorsResourceId("khlyjmgts")
                .publicCloudResourceName("ocd")
                .build())
            .resourceGroupName("rgsageMakerNotebookInstanceSummary")
            .tags(Map.of("key9470", "aluoxfdglqvvkktxeg"))
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const sageMakerNotebookInstanceSummary = new azure_native.awsconnector.SageMakerNotebookInstanceSummary("sageMakerNotebookInstanceSummary", {
    location: "khdjmafoabcvhksslfjtzlyh",
    name: "Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])",
    properties: {
        arn: "ncvgnrtwmjxungpgrodvsy",
        awsAccountId: "ymlnxodvrwztwew",
        awsProperties: {
            additionalCodeRepositories: ["pkjwtq"],
            creationTime: "2024-10-08T03:50:00.672Z",
            defaultCodeRepository: "edbiryeqsbvjcqmwygujvl",
            instanceType: {
                value: azure_native.awsconnector.InstanceType.MlC42xlarge,
            },
            lastModifiedTime: "2024-10-08T03:50:00.673Z",
            notebookInstanceArn: "wxrcvukcvvtd",
            notebookInstanceLifecycleConfigName: "t",
            notebookInstanceName: "nwemhcydnbtwmti",
            notebookInstanceStatus: {
                value: azure_native.awsconnector.NotebookInstanceStatus.Deleting,
            },
            url: "ricclxhpsojfujeolzbg",
        },
        awsRegion: "oqykvfkrsmwkvszj",
        awsSourceSchema: "gqddonfcsn",
        awsTags: {
            key4152: "dujjfkuxcm",
        },
        publicCloudConnectorsResourceId: "khlyjmgts",
        publicCloudResourceName: "ocd",
    },
    resourceGroupName: "rgsageMakerNotebookInstanceSummary",
    tags: {
        key9470: "aluoxfdglqvvkktxeg",
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

sage_maker_notebook_instance_summary = azure_native.awsconnector.SageMakerNotebookInstanceSummary("sageMakerNotebookInstanceSummary",
    location="khdjmafoabcvhksslfjtzlyh",
    name="Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])",
    properties={
        "arn": "ncvgnrtwmjxungpgrodvsy",
        "aws_account_id": "ymlnxodvrwztwew",
        "aws_properties": {
            "additional_code_repositories": ["pkjwtq"],
            "creation_time": "2024-10-08T03:50:00.672Z",
            "default_code_repository": "edbiryeqsbvjcqmwygujvl",
            "instance_type": {
                "value": azure_native.awsconnector.InstanceType.ML_C42XLARGE,
            },
            "last_modified_time": "2024-10-08T03:50:00.673Z",
            "notebook_instance_arn": "wxrcvukcvvtd",
            "notebook_instance_lifecycle_config_name": "t",
            "notebook_instance_name": "nwemhcydnbtwmti",
            "notebook_instance_status": {
                "value": azure_native.awsconnector.NotebookInstanceStatus.DELETING,
            },
            "url": "ricclxhpsojfujeolzbg",
        },
        "aws_region": "oqykvfkrsmwkvszj",
        "aws_source_schema": "gqddonfcsn",
        "aws_tags": {
            "key4152": "dujjfkuxcm",
        },
        "public_cloud_connectors_resource_id": "khlyjmgts",
        "public_cloud_resource_name": "ocd",
    },
    resource_group_name="rgsageMakerNotebookInstanceSummary",
    tags={
        "key9470": "aluoxfdglqvvkktxeg",
    })
Copy
resources:
  sageMakerNotebookInstanceSummary:
    type: azure-native:awsconnector:SageMakerNotebookInstanceSummary
    properties:
      location: khdjmafoabcvhksslfjtzlyh
      name: Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])
      properties:
        arn: ncvgnrtwmjxungpgrodvsy
        awsAccountId: ymlnxodvrwztwew
        awsProperties:
          additionalCodeRepositories:
            - pkjwtq
          creationTime: 2024-10-08T03:50:00.672Z
          defaultCodeRepository: edbiryeqsbvjcqmwygujvl
          instanceType:
            value: ml.c4.2xlarge
          lastModifiedTime: 2024-10-08T03:50:00.673Z
          notebookInstanceArn: wxrcvukcvvtd
          notebookInstanceLifecycleConfigName: t
          notebookInstanceName: nwemhcydnbtwmti
          notebookInstanceStatus:
            value: Deleting
          url: ricclxhpsojfujeolzbg
        awsRegion: oqykvfkrsmwkvszj
        awsSourceSchema: gqddonfcsn
        awsTags:
          key4152: dujjfkuxcm
        publicCloudConnectorsResourceId: khlyjmgts
        publicCloudResourceName: ocd
      resourceGroupName: rgsageMakerNotebookInstanceSummary
      tags:
        key9470: aluoxfdglqvvkktxeg
Copy

Create SageMakerNotebookInstanceSummary Resource

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

Constructor syntax

new SageMakerNotebookInstanceSummary(name: string, args: SageMakerNotebookInstanceSummaryArgs, opts?: CustomResourceOptions);
@overload
def SageMakerNotebookInstanceSummary(resource_name: str,
                                     args: SageMakerNotebookInstanceSummaryArgs,
                                     opts: Optional[ResourceOptions] = None)

@overload
def SageMakerNotebookInstanceSummary(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     resource_group_name: Optional[str] = None,
                                     location: Optional[str] = None,
                                     name: Optional[str] = None,
                                     properties: Optional[SageMakerNotebookInstanceSummaryPropertiesArgs] = None,
                                     tags: Optional[Mapping[str, str]] = None)
func NewSageMakerNotebookInstanceSummary(ctx *Context, name string, args SageMakerNotebookInstanceSummaryArgs, opts ...ResourceOption) (*SageMakerNotebookInstanceSummary, error)
public SageMakerNotebookInstanceSummary(string name, SageMakerNotebookInstanceSummaryArgs args, CustomResourceOptions? opts = null)
public SageMakerNotebookInstanceSummary(String name, SageMakerNotebookInstanceSummaryArgs args)
public SageMakerNotebookInstanceSummary(String name, SageMakerNotebookInstanceSummaryArgs args, CustomResourceOptions options)
type: azure-native:awsconnector:SageMakerNotebookInstanceSummary
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. SageMakerNotebookInstanceSummaryArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. SageMakerNotebookInstanceSummaryArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. SageMakerNotebookInstanceSummaryArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. SageMakerNotebookInstanceSummaryArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SageMakerNotebookInstanceSummaryArgs
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 sageMakerNotebookInstanceSummaryResource = new AzureNative.Awsconnector.SageMakerNotebookInstanceSummary("sageMakerNotebookInstanceSummaryResource", new()
{
    ResourceGroupName = "string",
    Location = "string",
    Name = "string",
    Properties = 
    {
        { "arn", "string" },
        { "awsAccountId", "string" },
        { "awsProperties", 
        {
            { "additionalCodeRepositories", new[]
            {
                "string",
            } },
            { "creationTime", "string" },
            { "defaultCodeRepository", "string" },
            { "instanceType", 
            {
                { "value", "string" },
            } },
            { "lastModifiedTime", "string" },
            { "notebookInstanceArn", "string" },
            { "notebookInstanceLifecycleConfigName", "string" },
            { "notebookInstanceName", "string" },
            { "notebookInstanceStatus", 
            {
                { "value", "string" },
            } },
            { "url", "string" },
        } },
        { "awsRegion", "string" },
        { "awsSourceSchema", "string" },
        { "awsTags", 
        {
            { "string", "string" },
        } },
        { "publicCloudConnectorsResourceId", "string" },
        { "publicCloudResourceName", "string" },
    },
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := awsconnector.NewSageMakerNotebookInstanceSummary(ctx, "sageMakerNotebookInstanceSummaryResource", &awsconnector.SageMakerNotebookInstanceSummaryArgs{
	ResourceGroupName: "string",
	Location:          "string",
	Name:              "string",
	Properties: map[string]interface{}{
		"arn":          "string",
		"awsAccountId": "string",
		"awsProperties": map[string]interface{}{
			"additionalCodeRepositories": []string{
				"string",
			},
			"creationTime":          "string",
			"defaultCodeRepository": "string",
			"instanceType": map[string]interface{}{
				"value": "string",
			},
			"lastModifiedTime":                    "string",
			"notebookInstanceArn":                 "string",
			"notebookInstanceLifecycleConfigName": "string",
			"notebookInstanceName":                "string",
			"notebookInstanceStatus": map[string]interface{}{
				"value": "string",
			},
			"url": "string",
		},
		"awsRegion":       "string",
		"awsSourceSchema": "string",
		"awsTags": map[string]interface{}{
			"string": "string",
		},
		"publicCloudConnectorsResourceId": "string",
		"publicCloudResourceName":         "string",
	},
	Tags: map[string]interface{}{
		"string": "string",
	},
})
Copy
var sageMakerNotebookInstanceSummaryResource = new SageMakerNotebookInstanceSummary("sageMakerNotebookInstanceSummaryResource", SageMakerNotebookInstanceSummaryArgs.builder()
    .resourceGroupName("string")
    .location("string")
    .name("string")
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
sage_maker_notebook_instance_summary_resource = azure_native.awsconnector.SageMakerNotebookInstanceSummary("sageMakerNotebookInstanceSummaryResource",
    resource_group_name=string,
    location=string,
    name=string,
    properties={
        arn: string,
        awsAccountId: string,
        awsProperties: {
            additionalCodeRepositories: [string],
            creationTime: string,
            defaultCodeRepository: string,
            instanceType: {
                value: string,
            },
            lastModifiedTime: string,
            notebookInstanceArn: string,
            notebookInstanceLifecycleConfigName: string,
            notebookInstanceName: string,
            notebookInstanceStatus: {
                value: string,
            },
            url: string,
        },
        awsRegion: string,
        awsSourceSchema: string,
        awsTags: {
            string: string,
        },
        publicCloudConnectorsResourceId: string,
        publicCloudResourceName: string,
    },
    tags={
        string: string,
    })
Copy
const sageMakerNotebookInstanceSummaryResource = new azure_native.awsconnector.SageMakerNotebookInstanceSummary("sageMakerNotebookInstanceSummaryResource", {
    resourceGroupName: "string",
    location: "string",
    name: "string",
    properties: {
        arn: "string",
        awsAccountId: "string",
        awsProperties: {
            additionalCodeRepositories: ["string"],
            creationTime: "string",
            defaultCodeRepository: "string",
            instanceType: {
                value: "string",
            },
            lastModifiedTime: "string",
            notebookInstanceArn: "string",
            notebookInstanceLifecycleConfigName: "string",
            notebookInstanceName: "string",
            notebookInstanceStatus: {
                value: "string",
            },
            url: "string",
        },
        awsRegion: "string",
        awsSourceSchema: "string",
        awsTags: {
            string: "string",
        },
        publicCloudConnectorsResourceId: "string",
        publicCloudResourceName: "string",
    },
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:awsconnector:SageMakerNotebookInstanceSummary
properties:
    location: string
    name: string
    properties:
        arn: string
        awsAccountId: string
        awsProperties:
            additionalCodeRepositories:
                - string
            creationTime: string
            defaultCodeRepository: string
            instanceType:
                value: string
            lastModifiedTime: string
            notebookInstanceArn: string
            notebookInstanceLifecycleConfigName: string
            notebookInstanceName: string
            notebookInstanceStatus:
                value: string
            url: string
        awsRegion: string
        awsSourceSchema: string
        awsTags:
            string: string
        publicCloudConnectorsResourceId: string
        publicCloudResourceName: string
    resourceGroupName: string
    tags:
        string: string
Copy

SageMakerNotebookInstanceSummary 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 SageMakerNotebookInstanceSummary resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Name Changes to this property will trigger replacement. string
Name of SageMakerNotebookInstanceSummary
Properties Pulumi.AzureNative.AwsConnector.Inputs.SageMakerNotebookInstanceSummaryProperties
The resource-specific properties for this resource.
Tags Dictionary<string, string>
Resource tags.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Name Changes to this property will trigger replacement. string
Name of SageMakerNotebookInstanceSummary
Properties SageMakerNotebookInstanceSummaryPropertiesArgs
The resource-specific properties for this resource.
Tags map[string]string
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
name Changes to this property will trigger replacement. String
Name of SageMakerNotebookInstanceSummary
properties SageMakerNotebookInstanceSummaryProperties
The resource-specific properties for this resource.
tags Map<String,String>
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
name Changes to this property will trigger replacement. string
Name of SageMakerNotebookInstanceSummary
properties SageMakerNotebookInstanceSummaryProperties
The resource-specific properties for this resource.
tags {[key: string]: string}
Resource tags.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
name Changes to this property will trigger replacement. str
Name of SageMakerNotebookInstanceSummary
properties SageMakerNotebookInstanceSummaryPropertiesArgs
The resource-specific properties for this resource.
tags Mapping[str, str]
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
name Changes to this property will trigger replacement. String
Name of SageMakerNotebookInstanceSummary
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 SageMakerNotebookInstanceSummary 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

AwsSageMakerNotebookInstanceSummaryProperties
, AwsSageMakerNotebookInstanceSummaryPropertiesArgs

AwsSageMakerNotebookInstanceSummaryPropertiesResponse
, AwsSageMakerNotebookInstanceSummaryPropertiesResponseArgs

InstanceType
, InstanceTypeArgs

MlC42xlarge
ml.c4.2xlargeInstanceType enum ml.c4.2xlarge
MlC44xlarge
ml.c4.4xlargeInstanceType enum ml.c4.4xlarge
MlC48xlarge
ml.c4.8xlargeInstanceType enum ml.c4.8xlarge
MlC4Xlarge
ml.c4.xlargeInstanceType enum ml.c4.xlarge
MlC518xlarge
ml.c5.18xlargeInstanceType enum ml.c5.18xlarge
MlC52xlarge
ml.c5.2xlargeInstanceType enum ml.c5.2xlarge
MlC54xlarge
ml.c5.4xlargeInstanceType enum ml.c5.4xlarge
MlC59xlarge
ml.c5.9xlargeInstanceType enum ml.c5.9xlarge
MlC5Xlarge
ml.c5.xlargeInstanceType enum ml.c5.xlarge
MlC5d18xlarge
ml.c5d.18xlargeInstanceType enum ml.c5d.18xlarge
MlC5d2xlarge
ml.c5d.2xlargeInstanceType enum ml.c5d.2xlarge
MlC5d4xlarge
ml.c5d.4xlargeInstanceType enum ml.c5d.4xlarge
MlC5d9xlarge
ml.c5d.9xlargeInstanceType enum ml.c5d.9xlarge
MlC5dXlarge
ml.c5d.xlargeInstanceType enum ml.c5d.xlarge
MlC6i12xlarge
ml.c6i.12xlargeInstanceType enum ml.c6i.12xlarge
MlC6i16xlarge
ml.c6i.16xlargeInstanceType enum ml.c6i.16xlarge
MlC6i24xlarge
ml.c6i.24xlargeInstanceType enum ml.c6i.24xlarge
MlC6i2xlarge
ml.c6i.2xlargeInstanceType enum ml.c6i.2xlarge
MlC6i32xlarge
ml.c6i.32xlargeInstanceType enum ml.c6i.32xlarge
MlC6i4xlarge
ml.c6i.4xlargeInstanceType enum ml.c6i.4xlarge
MlC6i8xlarge
ml.c6i.8xlargeInstanceType enum ml.c6i.8xlarge
MlC6iLarge
ml.c6i.largeInstanceType enum ml.c6i.large
MlC6iXlarge
ml.c6i.xlargeInstanceType enum ml.c6i.xlarge
MlC6id12xlarge
ml.c6id.12xlargeInstanceType enum ml.c6id.12xlarge
MlC6id16xlarge
ml.c6id.16xlargeInstanceType enum ml.c6id.16xlarge
MlC6id24xlarge
ml.c6id.24xlargeInstanceType enum ml.c6id.24xlarge
MlC6id2xlarge
ml.c6id.2xlargeInstanceType enum ml.c6id.2xlarge
MlC6id32xlarge
ml.c6id.32xlargeInstanceType enum ml.c6id.32xlarge
MlC6id4xlarge
ml.c6id.4xlargeInstanceType enum ml.c6id.4xlarge
MlC6id8xlarge
ml.c6id.8xlargeInstanceType enum ml.c6id.8xlarge
MlC6idLarge
ml.c6id.largeInstanceType enum ml.c6id.large
MlC6idXlarge
ml.c6id.xlargeInstanceType enum ml.c6id.xlarge
MlC7i12xlarge
ml.c7i.12xlargeInstanceType enum ml.c7i.12xlarge
MlC7i16xlarge
ml.c7i.16xlargeInstanceType enum ml.c7i.16xlarge
MlC7i24xlarge
ml.c7i.24xlargeInstanceType enum ml.c7i.24xlarge
MlC7i2xlarge
ml.c7i.2xlargeInstanceType enum ml.c7i.2xlarge
MlC7i48xlarge
ml.c7i.48xlargeInstanceType enum ml.c7i.48xlarge
MlC7i4xlarge
ml.c7i.4xlargeInstanceType enum ml.c7i.4xlarge
MlC7i8xlarge
ml.c7i.8xlargeInstanceType enum ml.c7i.8xlarge
MlC7iLarge
ml.c7i.largeInstanceType enum ml.c7i.large
MlC7iXlarge
ml.c7i.xlargeInstanceType enum ml.c7i.xlarge
MlG4dn12xlarge
ml.g4dn.12xlargeInstanceType enum ml.g4dn.12xlarge
MlG4dn16xlarge
ml.g4dn.16xlargeInstanceType enum ml.g4dn.16xlarge
MlG4dn2xlarge
ml.g4dn.2xlargeInstanceType enum ml.g4dn.2xlarge
MlG4dn4xlarge
ml.g4dn.4xlargeInstanceType enum ml.g4dn.4xlarge
MlG4dn8xlarge
ml.g4dn.8xlargeInstanceType enum ml.g4dn.8xlarge
MlG4dnXlarge
ml.g4dn.xlargeInstanceType enum ml.g4dn.xlarge
MlG512xlarge
ml.g5.12xlargeInstanceType enum ml.g5.12xlarge
MlG516xlarge
ml.g5.16xlargeInstanceType enum ml.g5.16xlarge
MlG524xlarge
ml.g5.24xlargeInstanceType enum ml.g5.24xlarge
MlG52xlarge
ml.g5.2xlargeInstanceType enum ml.g5.2xlarge
MlG548xlarge
ml.g5.48xlargeInstanceType enum ml.g5.48xlarge
MlG54xlarge
ml.g5.4xlargeInstanceType enum ml.g5.4xlarge
MlG58xlarge
ml.g5.8xlargeInstanceType enum ml.g5.8xlarge
MlG5Xlarge
ml.g5.xlargeInstanceType enum ml.g5.xlarge
MlInf124xlarge
ml.inf1.24xlargeInstanceType enum ml.inf1.24xlarge
MlInf12xlarge
ml.inf1.2xlargeInstanceType enum ml.inf1.2xlarge
MlInf16xlarge
ml.inf1.6xlargeInstanceType enum ml.inf1.6xlarge
MlInf1Xlarge
ml.inf1.xlargeInstanceType enum ml.inf1.xlarge
MlM410xlarge
ml.m4.10xlargeInstanceType enum ml.m4.10xlarge
MlM416xlarge
ml.m4.16xlargeInstanceType enum ml.m4.16xlarge
MlM42xlarge
ml.m4.2xlargeInstanceType enum ml.m4.2xlarge
MlM44xlarge
ml.m4.4xlargeInstanceType enum ml.m4.4xlarge
MlM4Xlarge
ml.m4.xlargeInstanceType enum ml.m4.xlarge
MlM512xlarge
ml.m5.12xlargeInstanceType enum ml.m5.12xlarge
MlM524xlarge
ml.m5.24xlargeInstanceType enum ml.m5.24xlarge
MlM52xlarge
ml.m5.2xlargeInstanceType enum ml.m5.2xlarge
MlM54xlarge
ml.m5.4xlargeInstanceType enum ml.m5.4xlarge
MlM5Xlarge
ml.m5.xlargeInstanceType enum ml.m5.xlarge
MlM5d12xlarge
ml.m5d.12xlargeInstanceType enum ml.m5d.12xlarge
MlM5d16xlarge
ml.m5d.16xlargeInstanceType enum ml.m5d.16xlarge
MlM5d24xlarge
ml.m5d.24xlargeInstanceType enum ml.m5d.24xlarge
MlM5d2xlarge
ml.m5d.2xlargeInstanceType enum ml.m5d.2xlarge
MlM5d4xlarge
ml.m5d.4xlargeInstanceType enum ml.m5d.4xlarge
MlM5d8xlarge
ml.m5d.8xlargeInstanceType enum ml.m5d.8xlarge
MlM5dLarge
ml.m5d.largeInstanceType enum ml.m5d.large
MlM5dXlarge
ml.m5d.xlargeInstanceType enum ml.m5d.xlarge
MlM6i12xlarge
ml.m6i.12xlargeInstanceType enum ml.m6i.12xlarge
MlM6i16xlarge
ml.m6i.16xlargeInstanceType enum ml.m6i.16xlarge
MlM6i24xlarge
ml.m6i.24xlargeInstanceType enum ml.m6i.24xlarge
MlM6i2xlarge
ml.m6i.2xlargeInstanceType enum ml.m6i.2xlarge
MlM6i32xlarge
ml.m6i.32xlargeInstanceType enum ml.m6i.32xlarge
MlM6i4xlarge
ml.m6i.4xlargeInstanceType enum ml.m6i.4xlarge
MlM6i8xlarge
ml.m6i.8xlargeInstanceType enum ml.m6i.8xlarge
MlM6iLarge
ml.m6i.largeInstanceType enum ml.m6i.large
MlM6iXlarge
ml.m6i.xlargeInstanceType enum ml.m6i.xlarge
MlM6id12xlarge
ml.m6id.12xlargeInstanceType enum ml.m6id.12xlarge
MlM6id16xlarge
ml.m6id.16xlargeInstanceType enum ml.m6id.16xlarge
MlM6id24xlarge
ml.m6id.24xlargeInstanceType enum ml.m6id.24xlarge
MlM6id2xlarge
ml.m6id.2xlargeInstanceType enum ml.m6id.2xlarge
MlM6id32xlarge
ml.m6id.32xlargeInstanceType enum ml.m6id.32xlarge
MlM6id4xlarge
ml.m6id.4xlargeInstanceType enum ml.m6id.4xlarge
MlM6id8xlarge
ml.m6id.8xlargeInstanceType enum ml.m6id.8xlarge
MlM6idLarge
ml.m6id.largeInstanceType enum ml.m6id.large
MlM6idXlarge
ml.m6id.xlargeInstanceType enum ml.m6id.xlarge
MlM7i12xlarge
ml.m7i.12xlargeInstanceType enum ml.m7i.12xlarge
MlM7i16xlarge
ml.m7i.16xlargeInstanceType enum ml.m7i.16xlarge
MlM7i24xlarge
ml.m7i.24xlargeInstanceType enum ml.m7i.24xlarge
MlM7i2xlarge
ml.m7i.2xlargeInstanceType enum ml.m7i.2xlarge
MlM7i48xlarge
ml.m7i.48xlargeInstanceType enum ml.m7i.48xlarge
MlM7i4xlarge
ml.m7i.4xlargeInstanceType enum ml.m7i.4xlarge
MlM7i8xlarge
ml.m7i.8xlargeInstanceType enum ml.m7i.8xlarge
MlM7iLarge
ml.m7i.largeInstanceType enum ml.m7i.large
MlM7iXlarge
ml.m7i.xlargeInstanceType enum ml.m7i.xlarge
MlP216xlarge
ml.p2.16xlargeInstanceType enum ml.p2.16xlarge
MlP28xlarge
ml.p2.8xlargeInstanceType enum ml.p2.8xlarge
MlP2Xlarge
ml.p2.xlargeInstanceType enum ml.p2.xlarge
MlP316xlarge
ml.p3.16xlargeInstanceType enum ml.p3.16xlarge
MlP32xlarge
ml.p3.2xlargeInstanceType enum ml.p3.2xlarge
MlP38xlarge
ml.p3.8xlargeInstanceType enum ml.p3.8xlarge
MlP3dn24xlarge
ml.p3dn.24xlargeInstanceType enum ml.p3dn.24xlarge
MlP4d24xlarge
ml.p4d.24xlargeInstanceType enum ml.p4d.24xlarge
MlP4de24xlarge
ml.p4de.24xlargeInstanceType enum ml.p4de.24xlarge
MlP548xlarge
ml.p5.48xlargeInstanceType enum ml.p5.48xlarge
MlR512xlarge
ml.r5.12xlargeInstanceType enum ml.r5.12xlarge
MlR516xlarge
ml.r5.16xlargeInstanceType enum ml.r5.16xlarge
MlR524xlarge
ml.r5.24xlargeInstanceType enum ml.r5.24xlarge
MlR52xlarge
ml.r5.2xlargeInstanceType enum ml.r5.2xlarge
MlR54xlarge
ml.r5.4xlargeInstanceType enum ml.r5.4xlarge
MlR58xlarge
ml.r5.8xlargeInstanceType enum ml.r5.8xlarge
MlR5Large
ml.r5.largeInstanceType enum ml.r5.large
MlR5Xlarge
ml.r5.xlargeInstanceType enum ml.r5.xlarge
MlR6i12xlarge
ml.r6i.12xlargeInstanceType enum ml.r6i.12xlarge
MlR6i16xlarge
ml.r6i.16xlargeInstanceType enum ml.r6i.16xlarge
MlR6i24xlarge
ml.r6i.24xlargeInstanceType enum ml.r6i.24xlarge
MlR6i2xlarge
ml.r6i.2xlargeInstanceType enum ml.r6i.2xlarge
MlR6i32xlarge
ml.r6i.32xlargeInstanceType enum ml.r6i.32xlarge
MlR6i4xlarge
ml.r6i.4xlargeInstanceType enum ml.r6i.4xlarge
MlR6i8xlarge
ml.r6i.8xlargeInstanceType enum ml.r6i.8xlarge
MlR6iLarge
ml.r6i.largeInstanceType enum ml.r6i.large
MlR6iXlarge
ml.r6i.xlargeInstanceType enum ml.r6i.xlarge
MlR6id12xlarge
ml.r6id.12xlargeInstanceType enum ml.r6id.12xlarge
MlR6id16xlarge
ml.r6id.16xlargeInstanceType enum ml.r6id.16xlarge
MlR6id24xlarge
ml.r6id.24xlargeInstanceType enum ml.r6id.24xlarge
MlR6id2xlarge
ml.r6id.2xlargeInstanceType enum ml.r6id.2xlarge
MlR6id32xlarge
ml.r6id.32xlargeInstanceType enum ml.r6id.32xlarge
MlR6id4xlarge
ml.r6id.4xlargeInstanceType enum ml.r6id.4xlarge
MlR6id8xlarge
ml.r6id.8xlargeInstanceType enum ml.r6id.8xlarge
MlR6idLarge
ml.r6id.largeInstanceType enum ml.r6id.large
MlR6idXlarge
ml.r6id.xlargeInstanceType enum ml.r6id.xlarge
MlR7i12xlarge
ml.r7i.12xlargeInstanceType enum ml.r7i.12xlarge
MlR7i16xlarge
ml.r7i.16xlargeInstanceType enum ml.r7i.16xlarge
MlR7i24xlarge
ml.r7i.24xlargeInstanceType enum ml.r7i.24xlarge
MlR7i2xlarge
ml.r7i.2xlargeInstanceType enum ml.r7i.2xlarge
MlR7i48xlarge
ml.r7i.48xlargeInstanceType enum ml.r7i.48xlarge
MlR7i4xlarge
ml.r7i.4xlargeInstanceType enum ml.r7i.4xlarge
MlR7i8xlarge
ml.r7i.8xlargeInstanceType enum ml.r7i.8xlarge
MlR7iLarge
ml.r7i.largeInstanceType enum ml.r7i.large
MlR7iXlarge
ml.r7i.xlargeInstanceType enum ml.r7i.xlarge
MlT22xlarge
ml.t2.2xlargeInstanceType enum ml.t2.2xlarge
MlT2Large
ml.t2.largeInstanceType enum ml.t2.large
MlT2Medium
ml.t2.mediumInstanceType enum ml.t2.medium
MlT2Xlarge
ml.t2.xlargeInstanceType enum ml.t2.xlarge
MlT32xlarge
ml.t3.2xlargeInstanceType enum ml.t3.2xlarge
MlT3Large
ml.t3.largeInstanceType enum ml.t3.large
MlT3Medium
ml.t3.mediumInstanceType enum ml.t3.medium
MlT3Xlarge
ml.t3.xlargeInstanceType enum ml.t3.xlarge
InstanceTypeMlC42xlarge
ml.c4.2xlargeInstanceType enum ml.c4.2xlarge
InstanceTypeMlC44xlarge
ml.c4.4xlargeInstanceType enum ml.c4.4xlarge
InstanceTypeMlC48xlarge
ml.c4.8xlargeInstanceType enum ml.c4.8xlarge
InstanceTypeMlC4Xlarge
ml.c4.xlargeInstanceType enum ml.c4.xlarge
InstanceTypeMlC518xlarge
ml.c5.18xlargeInstanceType enum ml.c5.18xlarge
InstanceTypeMlC52xlarge
ml.c5.2xlargeInstanceType enum ml.c5.2xlarge
InstanceTypeMlC54xlarge
ml.c5.4xlargeInstanceType enum ml.c5.4xlarge
InstanceTypeMlC59xlarge
ml.c5.9xlargeInstanceType enum ml.c5.9xlarge
InstanceTypeMlC5Xlarge
ml.c5.xlargeInstanceType enum ml.c5.xlarge
InstanceTypeMlC5d18xlarge
ml.c5d.18xlargeInstanceType enum ml.c5d.18xlarge
InstanceTypeMlC5d2xlarge
ml.c5d.2xlargeInstanceType enum ml.c5d.2xlarge
InstanceTypeMlC5d4xlarge
ml.c5d.4xlargeInstanceType enum ml.c5d.4xlarge
InstanceTypeMlC5d9xlarge
ml.c5d.9xlargeInstanceType enum ml.c5d.9xlarge
InstanceTypeMlC5dXlarge
ml.c5d.xlargeInstanceType enum ml.c5d.xlarge
InstanceTypeMlC6i12xlarge
ml.c6i.12xlargeInstanceType enum ml.c6i.12xlarge
InstanceTypeMlC6i16xlarge
ml.c6i.16xlargeInstanceType enum ml.c6i.16xlarge
InstanceTypeMlC6i24xlarge
ml.c6i.24xlargeInstanceType enum ml.c6i.24xlarge
InstanceTypeMlC6i2xlarge
ml.c6i.2xlargeInstanceType enum ml.c6i.2xlarge
InstanceTypeMlC6i32xlarge
ml.c6i.32xlargeInstanceType enum ml.c6i.32xlarge
InstanceTypeMlC6i4xlarge
ml.c6i.4xlargeInstanceType enum ml.c6i.4xlarge
InstanceTypeMlC6i8xlarge
ml.c6i.8xlargeInstanceType enum ml.c6i.8xlarge
InstanceTypeMlC6iLarge
ml.c6i.largeInstanceType enum ml.c6i.large
InstanceTypeMlC6iXlarge
ml.c6i.xlargeInstanceType enum ml.c6i.xlarge
InstanceTypeMlC6id12xlarge
ml.c6id.12xlargeInstanceType enum ml.c6id.12xlarge
InstanceTypeMlC6id16xlarge
ml.c6id.16xlargeInstanceType enum ml.c6id.16xlarge
InstanceTypeMlC6id24xlarge
ml.c6id.24xlargeInstanceType enum ml.c6id.24xlarge
InstanceTypeMlC6id2xlarge
ml.c6id.2xlargeInstanceType enum ml.c6id.2xlarge
InstanceTypeMlC6id32xlarge
ml.c6id.32xlargeInstanceType enum ml.c6id.32xlarge
InstanceTypeMlC6id4xlarge
ml.c6id.4xlargeInstanceType enum ml.c6id.4xlarge
InstanceTypeMlC6id8xlarge
ml.c6id.8xlargeInstanceType enum ml.c6id.8xlarge
InstanceTypeMlC6idLarge
ml.c6id.largeInstanceType enum ml.c6id.large
InstanceTypeMlC6idXlarge
ml.c6id.xlargeInstanceType enum ml.c6id.xlarge
InstanceTypeMlC7i12xlarge
ml.c7i.12xlargeInstanceType enum ml.c7i.12xlarge
InstanceTypeMlC7i16xlarge
ml.c7i.16xlargeInstanceType enum ml.c7i.16xlarge
InstanceTypeMlC7i24xlarge
ml.c7i.24xlargeInstanceType enum ml.c7i.24xlarge
InstanceTypeMlC7i2xlarge
ml.c7i.2xlargeInstanceType enum ml.c7i.2xlarge
InstanceTypeMlC7i48xlarge
ml.c7i.48xlargeInstanceType enum ml.c7i.48xlarge
InstanceTypeMlC7i4xlarge
ml.c7i.4xlargeInstanceType enum ml.c7i.4xlarge
InstanceTypeMlC7i8xlarge
ml.c7i.8xlargeInstanceType enum ml.c7i.8xlarge
InstanceTypeMlC7iLarge
ml.c7i.largeInstanceType enum ml.c7i.large
InstanceTypeMlC7iXlarge
ml.c7i.xlargeInstanceType enum ml.c7i.xlarge
InstanceTypeMlG4dn12xlarge
ml.g4dn.12xlargeInstanceType enum ml.g4dn.12xlarge
InstanceTypeMlG4dn16xlarge
ml.g4dn.16xlargeInstanceType enum ml.g4dn.16xlarge
InstanceTypeMlG4dn2xlarge
ml.g4dn.2xlargeInstanceType enum ml.g4dn.2xlarge
InstanceTypeMlG4dn4xlarge
ml.g4dn.4xlargeInstanceType enum ml.g4dn.4xlarge
InstanceTypeMlG4dn8xlarge
ml.g4dn.8xlargeInstanceType enum ml.g4dn.8xlarge
InstanceTypeMlG4dnXlarge
ml.g4dn.xlargeInstanceType enum ml.g4dn.xlarge
InstanceTypeMlG512xlarge
ml.g5.12xlargeInstanceType enum ml.g5.12xlarge
InstanceTypeMlG516xlarge
ml.g5.16xlargeInstanceType enum ml.g5.16xlarge
InstanceTypeMlG524xlarge
ml.g5.24xlargeInstanceType enum ml.g5.24xlarge
InstanceTypeMlG52xlarge
ml.g5.2xlargeInstanceType enum ml.g5.2xlarge
InstanceTypeMlG548xlarge
ml.g5.48xlargeInstanceType enum ml.g5.48xlarge
InstanceTypeMlG54xlarge
ml.g5.4xlargeInstanceType enum ml.g5.4xlarge
InstanceTypeMlG58xlarge
ml.g5.8xlargeInstanceType enum ml.g5.8xlarge
InstanceTypeMlG5Xlarge
ml.g5.xlargeInstanceType enum ml.g5.xlarge
InstanceTypeMlInf124xlarge
ml.inf1.24xlargeInstanceType enum ml.inf1.24xlarge
InstanceTypeMlInf12xlarge
ml.inf1.2xlargeInstanceType enum ml.inf1.2xlarge
InstanceTypeMlInf16xlarge
ml.inf1.6xlargeInstanceType enum ml.inf1.6xlarge
InstanceTypeMlInf1Xlarge
ml.inf1.xlargeInstanceType enum ml.inf1.xlarge
InstanceTypeMlM410xlarge
ml.m4.10xlargeInstanceType enum ml.m4.10xlarge
InstanceTypeMlM416xlarge
ml.m4.16xlargeInstanceType enum ml.m4.16xlarge
InstanceTypeMlM42xlarge
ml.m4.2xlargeInstanceType enum ml.m4.2xlarge
InstanceTypeMlM44xlarge
ml.m4.4xlargeInstanceType enum ml.m4.4xlarge
InstanceTypeMlM4Xlarge
ml.m4.xlargeInstanceType enum ml.m4.xlarge
InstanceTypeMlM512xlarge
ml.m5.12xlargeInstanceType enum ml.m5.12xlarge
InstanceTypeMlM524xlarge
ml.m5.24xlargeInstanceType enum ml.m5.24xlarge
InstanceTypeMlM52xlarge
ml.m5.2xlargeInstanceType enum ml.m5.2xlarge
InstanceTypeMlM54xlarge
ml.m5.4xlargeInstanceType enum ml.m5.4xlarge
InstanceTypeMlM5Xlarge
ml.m5.xlargeInstanceType enum ml.m5.xlarge
InstanceTypeMlM5d12xlarge
ml.m5d.12xlargeInstanceType enum ml.m5d.12xlarge
InstanceTypeMlM5d16xlarge
ml.m5d.16xlargeInstanceType enum ml.m5d.16xlarge
InstanceTypeMlM5d24xlarge
ml.m5d.24xlargeInstanceType enum ml.m5d.24xlarge
InstanceTypeMlM5d2xlarge
ml.m5d.2xlargeInstanceType enum ml.m5d.2xlarge
InstanceTypeMlM5d4xlarge
ml.m5d.4xlargeInstanceType enum ml.m5d.4xlarge
InstanceTypeMlM5d8xlarge
ml.m5d.8xlargeInstanceType enum ml.m5d.8xlarge
InstanceTypeMlM5dLarge
ml.m5d.largeInstanceType enum ml.m5d.large
InstanceTypeMlM5dXlarge
ml.m5d.xlargeInstanceType enum ml.m5d.xlarge
InstanceTypeMlM6i12xlarge
ml.m6i.12xlargeInstanceType enum ml.m6i.12xlarge
InstanceTypeMlM6i16xlarge
ml.m6i.16xlargeInstanceType enum ml.m6i.16xlarge
InstanceTypeMlM6i24xlarge
ml.m6i.24xlargeInstanceType enum ml.m6i.24xlarge
InstanceTypeMlM6i2xlarge
ml.m6i.2xlargeInstanceType enum ml.m6i.2xlarge
InstanceTypeMlM6i32xlarge
ml.m6i.32xlargeInstanceType enum ml.m6i.32xlarge
InstanceTypeMlM6i4xlarge
ml.m6i.4xlargeInstanceType enum ml.m6i.4xlarge
InstanceTypeMlM6i8xlarge
ml.m6i.8xlargeInstanceType enum ml.m6i.8xlarge
InstanceTypeMlM6iLarge
ml.m6i.largeInstanceType enum ml.m6i.large
InstanceTypeMlM6iXlarge
ml.m6i.xlargeInstanceType enum ml.m6i.xlarge
InstanceTypeMlM6id12xlarge
ml.m6id.12xlargeInstanceType enum ml.m6id.12xlarge
InstanceTypeMlM6id16xlarge
ml.m6id.16xlargeInstanceType enum ml.m6id.16xlarge
InstanceTypeMlM6id24xlarge
ml.m6id.24xlargeInstanceType enum ml.m6id.24xlarge
InstanceTypeMlM6id2xlarge
ml.m6id.2xlargeInstanceType enum ml.m6id.2xlarge
InstanceTypeMlM6id32xlarge
ml.m6id.32xlargeInstanceType enum ml.m6id.32xlarge
InstanceTypeMlM6id4xlarge
ml.m6id.4xlargeInstanceType enum ml.m6id.4xlarge
InstanceTypeMlM6id8xlarge
ml.m6id.8xlargeInstanceType enum ml.m6id.8xlarge
InstanceTypeMlM6idLarge
ml.m6id.largeInstanceType enum ml.m6id.large
InstanceTypeMlM6idXlarge
ml.m6id.xlargeInstanceType enum ml.m6id.xlarge
InstanceTypeMlM7i12xlarge
ml.m7i.12xlargeInstanceType enum ml.m7i.12xlarge
InstanceTypeMlM7i16xlarge
ml.m7i.16xlargeInstanceType enum ml.m7i.16xlarge
InstanceTypeMlM7i24xlarge
ml.m7i.24xlargeInstanceType enum ml.m7i.24xlarge
InstanceTypeMlM7i2xlarge
ml.m7i.2xlargeInstanceType enum ml.m7i.2xlarge
InstanceTypeMlM7i48xlarge
ml.m7i.48xlargeInstanceType enum ml.m7i.48xlarge
InstanceTypeMlM7i4xlarge
ml.m7i.4xlargeInstanceType enum ml.m7i.4xlarge
InstanceTypeMlM7i8xlarge
ml.m7i.8xlargeInstanceType enum ml.m7i.8xlarge
InstanceTypeMlM7iLarge
ml.m7i.largeInstanceType enum ml.m7i.large
InstanceTypeMlM7iXlarge
ml.m7i.xlargeInstanceType enum ml.m7i.xlarge
InstanceTypeMlP216xlarge
ml.p2.16xlargeInstanceType enum ml.p2.16xlarge
InstanceTypeMlP28xlarge
ml.p2.8xlargeInstanceType enum ml.p2.8xlarge
InstanceTypeMlP2Xlarge
ml.p2.xlargeInstanceType enum ml.p2.xlarge
InstanceTypeMlP316xlarge
ml.p3.16xlargeInstanceType enum ml.p3.16xlarge
InstanceTypeMlP32xlarge
ml.p3.2xlargeInstanceType enum ml.p3.2xlarge
InstanceTypeMlP38xlarge
ml.p3.8xlargeInstanceType enum ml.p3.8xlarge
InstanceTypeMlP3dn24xlarge
ml.p3dn.24xlargeInstanceType enum ml.p3dn.24xlarge
InstanceTypeMlP4d24xlarge
ml.p4d.24xlargeInstanceType enum ml.p4d.24xlarge
InstanceTypeMlP4de24xlarge
ml.p4de.24xlargeInstanceType enum ml.p4de.24xlarge
InstanceTypeMlP548xlarge
ml.p5.48xlargeInstanceType enum ml.p5.48xlarge
InstanceTypeMlR512xlarge
ml.r5.12xlargeInstanceType enum ml.r5.12xlarge
InstanceTypeMlR516xlarge
ml.r5.16xlargeInstanceType enum ml.r5.16xlarge
InstanceTypeMlR524xlarge
ml.r5.24xlargeInstanceType enum ml.r5.24xlarge
InstanceTypeMlR52xlarge
ml.r5.2xlargeInstanceType enum ml.r5.2xlarge
InstanceTypeMlR54xlarge
ml.r5.4xlargeInstanceType enum ml.r5.4xlarge
InstanceTypeMlR58xlarge
ml.r5.8xlargeInstanceType enum ml.r5.8xlarge
InstanceTypeMlR5Large
ml.r5.largeInstanceType enum ml.r5.large
InstanceTypeMlR5Xlarge
ml.r5.xlargeInstanceType enum ml.r5.xlarge
InstanceTypeMlR6i12xlarge
ml.r6i.12xlargeInstanceType enum ml.r6i.12xlarge
InstanceTypeMlR6i16xlarge
ml.r6i.16xlargeInstanceType enum ml.r6i.16xlarge
InstanceTypeMlR6i24xlarge
ml.r6i.24xlargeInstanceType enum ml.r6i.24xlarge
InstanceTypeMlR6i2xlarge
ml.r6i.2xlargeInstanceType enum ml.r6i.2xlarge
InstanceTypeMlR6i32xlarge
ml.r6i.32xlargeInstanceType enum ml.r6i.32xlarge
InstanceTypeMlR6i4xlarge
ml.r6i.4xlargeInstanceType enum ml.r6i.4xlarge
InstanceTypeMlR6i8xlarge
ml.r6i.8xlargeInstanceType enum ml.r6i.8xlarge
InstanceTypeMlR6iLarge
ml.r6i.largeInstanceType enum ml.r6i.large
InstanceTypeMlR6iXlarge
ml.r6i.xlargeInstanceType enum ml.r6i.xlarge
InstanceTypeMlR6id12xlarge
ml.r6id.12xlargeInstanceType enum ml.r6id.12xlarge
InstanceTypeMlR6id16xlarge
ml.r6id.16xlargeInstanceType enum ml.r6id.16xlarge
InstanceTypeMlR6id24xlarge
ml.r6id.24xlargeInstanceType enum ml.r6id.24xlarge
InstanceTypeMlR6id2xlarge
ml.r6id.2xlargeInstanceType enum ml.r6id.2xlarge
InstanceTypeMlR6id32xlarge
ml.r6id.32xlargeInstanceType enum ml.r6id.32xlarge
InstanceTypeMlR6id4xlarge
ml.r6id.4xlargeInstanceType enum ml.r6id.4xlarge
InstanceTypeMlR6id8xlarge
ml.r6id.8xlargeInstanceType enum ml.r6id.8xlarge
InstanceTypeMlR6idLarge
ml.r6id.largeInstanceType enum ml.r6id.large
InstanceTypeMlR6idXlarge
ml.r6id.xlargeInstanceType enum ml.r6id.xlarge
InstanceTypeMlR7i12xlarge
ml.r7i.12xlargeInstanceType enum ml.r7i.12xlarge
InstanceTypeMlR7i16xlarge
ml.r7i.16xlargeInstanceType enum ml.r7i.16xlarge
InstanceTypeMlR7i24xlarge
ml.r7i.24xlargeInstanceType enum ml.r7i.24xlarge
InstanceTypeMlR7i2xlarge
ml.r7i.2xlargeInstanceType enum ml.r7i.2xlarge
InstanceTypeMlR7i48xlarge
ml.r7i.48xlargeInstanceType enum ml.r7i.48xlarge
InstanceTypeMlR7i4xlarge
ml.r7i.4xlargeInstanceType enum ml.r7i.4xlarge
InstanceTypeMlR7i8xlarge
ml.r7i.8xlargeInstanceType enum ml.r7i.8xlarge
InstanceTypeMlR7iLarge
ml.r7i.largeInstanceType enum ml.r7i.large
InstanceTypeMlR7iXlarge
ml.r7i.xlargeInstanceType enum ml.r7i.xlarge
InstanceTypeMlT22xlarge
ml.t2.2xlargeInstanceType enum ml.t2.2xlarge
InstanceTypeMlT2Large
ml.t2.largeInstanceType enum ml.t2.large
InstanceTypeMlT2Medium
ml.t2.mediumInstanceType enum ml.t2.medium
InstanceTypeMlT2Xlarge
ml.t2.xlargeInstanceType enum ml.t2.xlarge
InstanceTypeMlT32xlarge
ml.t3.2xlargeInstanceType enum ml.t3.2xlarge
InstanceTypeMlT3Large
ml.t3.largeInstanceType enum ml.t3.large
InstanceTypeMlT3Medium
ml.t3.mediumInstanceType enum ml.t3.medium
InstanceTypeMlT3Xlarge
ml.t3.xlargeInstanceType enum ml.t3.xlarge
MlC42xlarge
ml.c4.2xlargeInstanceType enum ml.c4.2xlarge
MlC44xlarge
ml.c4.4xlargeInstanceType enum ml.c4.4xlarge
MlC48xlarge
ml.c4.8xlargeInstanceType enum ml.c4.8xlarge
MlC4Xlarge
ml.c4.xlargeInstanceType enum ml.c4.xlarge
MlC518xlarge
ml.c5.18xlargeInstanceType enum ml.c5.18xlarge
MlC52xlarge
ml.c5.2xlargeInstanceType enum ml.c5.2xlarge
MlC54xlarge
ml.c5.4xlargeInstanceType enum ml.c5.4xlarge
MlC59xlarge
ml.c5.9xlargeInstanceType enum ml.c5.9xlarge
MlC5Xlarge
ml.c5.xlargeInstanceType enum ml.c5.xlarge
MlC5d18xlarge
ml.c5d.18xlargeInstanceType enum ml.c5d.18xlarge
MlC5d2xlarge
ml.c5d.2xlargeInstanceType enum ml.c5d.2xlarge
MlC5d4xlarge
ml.c5d.4xlargeInstanceType enum ml.c5d.4xlarge
MlC5d9xlarge
ml.c5d.9xlargeInstanceType enum ml.c5d.9xlarge
MlC5dXlarge
ml.c5d.xlargeInstanceType enum ml.c5d.xlarge
MlC6i12xlarge
ml.c6i.12xlargeInstanceType enum ml.c6i.12xlarge
MlC6i16xlarge
ml.c6i.16xlargeInstanceType enum ml.c6i.16xlarge
MlC6i24xlarge
ml.c6i.24xlargeInstanceType enum ml.c6i.24xlarge
MlC6i2xlarge
ml.c6i.2xlargeInstanceType enum ml.c6i.2xlarge
MlC6i32xlarge
ml.c6i.32xlargeInstanceType enum ml.c6i.32xlarge
MlC6i4xlarge
ml.c6i.4xlargeInstanceType enum ml.c6i.4xlarge
MlC6i8xlarge
ml.c6i.8xlargeInstanceType enum ml.c6i.8xlarge
MlC6iLarge
ml.c6i.largeInstanceType enum ml.c6i.large
MlC6iXlarge
ml.c6i.xlargeInstanceType enum ml.c6i.xlarge
MlC6id12xlarge
ml.c6id.12xlargeInstanceType enum ml.c6id.12xlarge
MlC6id16xlarge
ml.c6id.16xlargeInstanceType enum ml.c6id.16xlarge
MlC6id24xlarge
ml.c6id.24xlargeInstanceType enum ml.c6id.24xlarge
MlC6id2xlarge
ml.c6id.2xlargeInstanceType enum ml.c6id.2xlarge
MlC6id32xlarge
ml.c6id.32xlargeInstanceType enum ml.c6id.32xlarge
MlC6id4xlarge
ml.c6id.4xlargeInstanceType enum ml.c6id.4xlarge
MlC6id8xlarge
ml.c6id.8xlargeInstanceType enum ml.c6id.8xlarge
MlC6idLarge
ml.c6id.largeInstanceType enum ml.c6id.large
MlC6idXlarge
ml.c6id.xlargeInstanceType enum ml.c6id.xlarge
MlC7i12xlarge
ml.c7i.12xlargeInstanceType enum ml.c7i.12xlarge
MlC7i16xlarge
ml.c7i.16xlargeInstanceType enum ml.c7i.16xlarge
MlC7i24xlarge
ml.c7i.24xlargeInstanceType enum ml.c7i.24xlarge
MlC7i2xlarge
ml.c7i.2xlargeInstanceType enum ml.c7i.2xlarge
MlC7i48xlarge
ml.c7i.48xlargeInstanceType enum ml.c7i.48xlarge
MlC7i4xlarge
ml.c7i.4xlargeInstanceType enum ml.c7i.4xlarge
MlC7i8xlarge
ml.c7i.8xlargeInstanceType enum ml.c7i.8xlarge
MlC7iLarge
ml.c7i.largeInstanceType enum ml.c7i.large
MlC7iXlarge
ml.c7i.xlargeInstanceType enum ml.c7i.xlarge
MlG4dn12xlarge
ml.g4dn.12xlargeInstanceType enum ml.g4dn.12xlarge
MlG4dn16xlarge
ml.g4dn.16xlargeInstanceType enum ml.g4dn.16xlarge
MlG4dn2xlarge
ml.g4dn.2xlargeInstanceType enum ml.g4dn.2xlarge
MlG4dn4xlarge
ml.g4dn.4xlargeInstanceType enum ml.g4dn.4xlarge
MlG4dn8xlarge
ml.g4dn.8xlargeInstanceType enum ml.g4dn.8xlarge
MlG4dnXlarge
ml.g4dn.xlargeInstanceType enum ml.g4dn.xlarge
MlG512xlarge
ml.g5.12xlargeInstanceType enum ml.g5.12xlarge
MlG516xlarge
ml.g5.16xlargeInstanceType enum ml.g5.16xlarge
MlG524xlarge
ml.g5.24xlargeInstanceType enum ml.g5.24xlarge
MlG52xlarge
ml.g5.2xlargeInstanceType enum ml.g5.2xlarge
MlG548xlarge
ml.g5.48xlargeInstanceType enum ml.g5.48xlarge
MlG54xlarge
ml.g5.4xlargeInstanceType enum ml.g5.4xlarge
MlG58xlarge
ml.g5.8xlargeInstanceType enum ml.g5.8xlarge
MlG5Xlarge
ml.g5.xlargeInstanceType enum ml.g5.xlarge
MlInf124xlarge
ml.inf1.24xlargeInstanceType enum ml.inf1.24xlarge
MlInf12xlarge
ml.inf1.2xlargeInstanceType enum ml.inf1.2xlarge
MlInf16xlarge
ml.inf1.6xlargeInstanceType enum ml.inf1.6xlarge
MlInf1Xlarge
ml.inf1.xlargeInstanceType enum ml.inf1.xlarge
MlM410xlarge
ml.m4.10xlargeInstanceType enum ml.m4.10xlarge
MlM416xlarge
ml.m4.16xlargeInstanceType enum ml.m4.16xlarge
MlM42xlarge
ml.m4.2xlargeInstanceType enum ml.m4.2xlarge
MlM44xlarge
ml.m4.4xlargeInstanceType enum ml.m4.4xlarge
MlM4Xlarge
ml.m4.xlargeInstanceType enum ml.m4.xlarge
MlM512xlarge
ml.m5.12xlargeInstanceType enum ml.m5.12xlarge
MlM524xlarge
ml.m5.24xlargeInstanceType enum ml.m5.24xlarge
MlM52xlarge
ml.m5.2xlargeInstanceType enum ml.m5.2xlarge
MlM54xlarge
ml.m5.4xlargeInstanceType enum ml.m5.4xlarge
MlM5Xlarge
ml.m5.xlargeInstanceType enum ml.m5.xlarge
MlM5d12xlarge
ml.m5d.12xlargeInstanceType enum ml.m5d.12xlarge
MlM5d16xlarge
ml.m5d.16xlargeInstanceType enum ml.m5d.16xlarge
MlM5d24xlarge
ml.m5d.24xlargeInstanceType enum ml.m5d.24xlarge
MlM5d2xlarge
ml.m5d.2xlargeInstanceType enum ml.m5d.2xlarge
MlM5d4xlarge
ml.m5d.4xlargeInstanceType enum ml.m5d.4xlarge
MlM5d8xlarge
ml.m5d.8xlargeInstanceType enum ml.m5d.8xlarge
MlM5dLarge
ml.m5d.largeInstanceType enum ml.m5d.large
MlM5dXlarge
ml.m5d.xlargeInstanceType enum ml.m5d.xlarge
MlM6i12xlarge
ml.m6i.12xlargeInstanceType enum ml.m6i.12xlarge
MlM6i16xlarge
ml.m6i.16xlargeInstanceType enum ml.m6i.16xlarge
MlM6i24xlarge
ml.m6i.24xlargeInstanceType enum ml.m6i.24xlarge
MlM6i2xlarge
ml.m6i.2xlargeInstanceType enum ml.m6i.2xlarge
MlM6i32xlarge
ml.m6i.32xlargeInstanceType enum ml.m6i.32xlarge
MlM6i4xlarge
ml.m6i.4xlargeInstanceType enum ml.m6i.4xlarge
MlM6i8xlarge
ml.m6i.8xlargeInstanceType enum ml.m6i.8xlarge
MlM6iLarge
ml.m6i.largeInstanceType enum ml.m6i.large
MlM6iXlarge
ml.m6i.xlargeInstanceType enum ml.m6i.xlarge
MlM6id12xlarge
ml.m6id.12xlargeInstanceType enum ml.m6id.12xlarge
MlM6id16xlarge
ml.m6id.16xlargeInstanceType enum ml.m6id.16xlarge
MlM6id24xlarge
ml.m6id.24xlargeInstanceType enum ml.m6id.24xlarge
MlM6id2xlarge
ml.m6id.2xlargeInstanceType enum ml.m6id.2xlarge
MlM6id32xlarge
ml.m6id.32xlargeInstanceType enum ml.m6id.32xlarge
MlM6id4xlarge
ml.m6id.4xlargeInstanceType enum ml.m6id.4xlarge
MlM6id8xlarge
ml.m6id.8xlargeInstanceType enum ml.m6id.8xlarge
MlM6idLarge
ml.m6id.largeInstanceType enum ml.m6id.large
MlM6idXlarge
ml.m6id.xlargeInstanceType enum ml.m6id.xlarge
MlM7i12xlarge
ml.m7i.12xlargeInstanceType enum ml.m7i.12xlarge
MlM7i16xlarge
ml.m7i.16xlargeInstanceType enum ml.m7i.16xlarge
MlM7i24xlarge
ml.m7i.24xlargeInstanceType enum ml.m7i.24xlarge
MlM7i2xlarge
ml.m7i.2xlargeInstanceType enum ml.m7i.2xlarge
MlM7i48xlarge
ml.m7i.48xlargeInstanceType enum ml.m7i.48xlarge
MlM7i4xlarge
ml.m7i.4xlargeInstanceType enum ml.m7i.4xlarge
MlM7i8xlarge
ml.m7i.8xlargeInstanceType enum ml.m7i.8xlarge
MlM7iLarge
ml.m7i.largeInstanceType enum ml.m7i.large
MlM7iXlarge
ml.m7i.xlargeInstanceType enum ml.m7i.xlarge
MlP216xlarge
ml.p2.16xlargeInstanceType enum ml.p2.16xlarge
MlP28xlarge
ml.p2.8xlargeInstanceType enum ml.p2.8xlarge
MlP2Xlarge
ml.p2.xlargeInstanceType enum ml.p2.xlarge
MlP316xlarge
ml.p3.16xlargeInstanceType enum ml.p3.16xlarge
MlP32xlarge
ml.p3.2xlargeInstanceType enum ml.p3.2xlarge
MlP38xlarge
ml.p3.8xlargeInstanceType enum ml.p3.8xlarge
MlP3dn24xlarge
ml.p3dn.24xlargeInstanceType enum ml.p3dn.24xlarge
MlP4d24xlarge
ml.p4d.24xlargeInstanceType enum ml.p4d.24xlarge
MlP4de24xlarge
ml.p4de.24xlargeInstanceType enum ml.p4de.24xlarge
MlP548xlarge
ml.p5.48xlargeInstanceType enum ml.p5.48xlarge
MlR512xlarge
ml.r5.12xlargeInstanceType enum ml.r5.12xlarge
MlR516xlarge
ml.r5.16xlargeInstanceType enum ml.r5.16xlarge
MlR524xlarge
ml.r5.24xlargeInstanceType enum ml.r5.24xlarge
MlR52xlarge
ml.r5.2xlargeInstanceType enum ml.r5.2xlarge
MlR54xlarge
ml.r5.4xlargeInstanceType enum ml.r5.4xlarge
MlR58xlarge
ml.r5.8xlargeInstanceType enum ml.r5.8xlarge
MlR5Large
ml.r5.largeInstanceType enum ml.r5.large
MlR5Xlarge
ml.r5.xlargeInstanceType enum ml.r5.xlarge
MlR6i12xlarge
ml.r6i.12xlargeInstanceType enum ml.r6i.12xlarge
MlR6i16xlarge
ml.r6i.16xlargeInstanceType enum ml.r6i.16xlarge
MlR6i24xlarge
ml.r6i.24xlargeInstanceType enum ml.r6i.24xlarge
MlR6i2xlarge
ml.r6i.2xlargeInstanceType enum ml.r6i.2xlarge
MlR6i32xlarge
ml.r6i.32xlargeInstanceType enum ml.r6i.32xlarge
MlR6i4xlarge
ml.r6i.4xlargeInstanceType enum ml.r6i.4xlarge
MlR6i8xlarge
ml.r6i.8xlargeInstanceType enum ml.r6i.8xlarge
MlR6iLarge
ml.r6i.largeInstanceType enum ml.r6i.large
MlR6iXlarge
ml.r6i.xlargeInstanceType enum ml.r6i.xlarge
MlR6id12xlarge
ml.r6id.12xlargeInstanceType enum ml.r6id.12xlarge
MlR6id16xlarge
ml.r6id.16xlargeInstanceType enum ml.r6id.16xlarge
MlR6id24xlarge
ml.r6id.24xlargeInstanceType enum ml.r6id.24xlarge
MlR6id2xlarge
ml.r6id.2xlargeInstanceType enum ml.r6id.2xlarge
MlR6id32xlarge
ml.r6id.32xlargeInstanceType enum ml.r6id.32xlarge
MlR6id4xlarge
ml.r6id.4xlargeInstanceType enum ml.r6id.4xlarge
MlR6id8xlarge
ml.r6id.8xlargeInstanceType enum ml.r6id.8xlarge
MlR6idLarge
ml.r6id.largeInstanceType enum ml.r6id.large
MlR6idXlarge
ml.r6id.xlargeInstanceType enum ml.r6id.xlarge
MlR7i12xlarge
ml.r7i.12xlargeInstanceType enum ml.r7i.12xlarge
MlR7i16xlarge
ml.r7i.16xlargeInstanceType enum ml.r7i.16xlarge
MlR7i24xlarge
ml.r7i.24xlargeInstanceType enum ml.r7i.24xlarge
MlR7i2xlarge
ml.r7i.2xlargeInstanceType enum ml.r7i.2xlarge
MlR7i48xlarge
ml.r7i.48xlargeInstanceType enum ml.r7i.48xlarge
MlR7i4xlarge
ml.r7i.4xlargeInstanceType enum ml.r7i.4xlarge
MlR7i8xlarge
ml.r7i.8xlargeInstanceType enum ml.r7i.8xlarge
MlR7iLarge
ml.r7i.largeInstanceType enum ml.r7i.large
MlR7iXlarge
ml.r7i.xlargeInstanceType enum ml.r7i.xlarge
MlT22xlarge
ml.t2.2xlargeInstanceType enum ml.t2.2xlarge
MlT2Large
ml.t2.largeInstanceType enum ml.t2.large
MlT2Medium
ml.t2.mediumInstanceType enum ml.t2.medium
MlT2Xlarge
ml.t2.xlargeInstanceType enum ml.t2.xlarge
MlT32xlarge
ml.t3.2xlargeInstanceType enum ml.t3.2xlarge
MlT3Large
ml.t3.largeInstanceType enum ml.t3.large
MlT3Medium
ml.t3.mediumInstanceType enum ml.t3.medium
MlT3Xlarge
ml.t3.xlargeInstanceType enum ml.t3.xlarge
MlC42xlarge
ml.c4.2xlargeInstanceType enum ml.c4.2xlarge
MlC44xlarge
ml.c4.4xlargeInstanceType enum ml.c4.4xlarge
MlC48xlarge
ml.c4.8xlargeInstanceType enum ml.c4.8xlarge
MlC4Xlarge
ml.c4.xlargeInstanceType enum ml.c4.xlarge
MlC518xlarge
ml.c5.18xlargeInstanceType enum ml.c5.18xlarge
MlC52xlarge
ml.c5.2xlargeInstanceType enum ml.c5.2xlarge
MlC54xlarge
ml.c5.4xlargeInstanceType enum ml.c5.4xlarge
MlC59xlarge
ml.c5.9xlargeInstanceType enum ml.c5.9xlarge
MlC5Xlarge
ml.c5.xlargeInstanceType enum ml.c5.xlarge
MlC5d18xlarge
ml.c5d.18xlargeInstanceType enum ml.c5d.18xlarge
MlC5d2xlarge
ml.c5d.2xlargeInstanceType enum ml.c5d.2xlarge
MlC5d4xlarge
ml.c5d.4xlargeInstanceType enum ml.c5d.4xlarge
MlC5d9xlarge
ml.c5d.9xlargeInstanceType enum ml.c5d.9xlarge
MlC5dXlarge
ml.c5d.xlargeInstanceType enum ml.c5d.xlarge
MlC6i12xlarge
ml.c6i.12xlargeInstanceType enum ml.c6i.12xlarge
MlC6i16xlarge
ml.c6i.16xlargeInstanceType enum ml.c6i.16xlarge
MlC6i24xlarge
ml.c6i.24xlargeInstanceType enum ml.c6i.24xlarge
MlC6i2xlarge
ml.c6i.2xlargeInstanceType enum ml.c6i.2xlarge
MlC6i32xlarge
ml.c6i.32xlargeInstanceType enum ml.c6i.32xlarge
MlC6i4xlarge
ml.c6i.4xlargeInstanceType enum ml.c6i.4xlarge
MlC6i8xlarge
ml.c6i.8xlargeInstanceType enum ml.c6i.8xlarge
MlC6iLarge
ml.c6i.largeInstanceType enum ml.c6i.large
MlC6iXlarge
ml.c6i.xlargeInstanceType enum ml.c6i.xlarge
MlC6id12xlarge
ml.c6id.12xlargeInstanceType enum ml.c6id.12xlarge
MlC6id16xlarge
ml.c6id.16xlargeInstanceType enum ml.c6id.16xlarge
MlC6id24xlarge
ml.c6id.24xlargeInstanceType enum ml.c6id.24xlarge
MlC6id2xlarge
ml.c6id.2xlargeInstanceType enum ml.c6id.2xlarge
MlC6id32xlarge
ml.c6id.32xlargeInstanceType enum ml.c6id.32xlarge
MlC6id4xlarge
ml.c6id.4xlargeInstanceType enum ml.c6id.4xlarge
MlC6id8xlarge
ml.c6id.8xlargeInstanceType enum ml.c6id.8xlarge
MlC6idLarge
ml.c6id.largeInstanceType enum ml.c6id.large
MlC6idXlarge
ml.c6id.xlargeInstanceType enum ml.c6id.xlarge
MlC7i12xlarge
ml.c7i.12xlargeInstanceType enum ml.c7i.12xlarge
MlC7i16xlarge
ml.c7i.16xlargeInstanceType enum ml.c7i.16xlarge
MlC7i24xlarge
ml.c7i.24xlargeInstanceType enum ml.c7i.24xlarge
MlC7i2xlarge
ml.c7i.2xlargeInstanceType enum ml.c7i.2xlarge
MlC7i48xlarge
ml.c7i.48xlargeInstanceType enum ml.c7i.48xlarge
MlC7i4xlarge
ml.c7i.4xlargeInstanceType enum ml.c7i.4xlarge
MlC7i8xlarge
ml.c7i.8xlargeInstanceType enum ml.c7i.8xlarge
MlC7iLarge
ml.c7i.largeInstanceType enum ml.c7i.large
MlC7iXlarge
ml.c7i.xlargeInstanceType enum ml.c7i.xlarge
MlG4dn12xlarge
ml.g4dn.12xlargeInstanceType enum ml.g4dn.12xlarge
MlG4dn16xlarge
ml.g4dn.16xlargeInstanceType enum ml.g4dn.16xlarge
MlG4dn2xlarge
ml.g4dn.2xlargeInstanceType enum ml.g4dn.2xlarge
MlG4dn4xlarge
ml.g4dn.4xlargeInstanceType enum ml.g4dn.4xlarge
MlG4dn8xlarge
ml.g4dn.8xlargeInstanceType enum ml.g4dn.8xlarge
MlG4dnXlarge
ml.g4dn.xlargeInstanceType enum ml.g4dn.xlarge
MlG512xlarge
ml.g5.12xlargeInstanceType enum ml.g5.12xlarge
MlG516xlarge
ml.g5.16xlargeInstanceType enum ml.g5.16xlarge
MlG524xlarge
ml.g5.24xlargeInstanceType enum ml.g5.24xlarge
MlG52xlarge
ml.g5.2xlargeInstanceType enum ml.g5.2xlarge
MlG548xlarge
ml.g5.48xlargeInstanceType enum ml.g5.48xlarge
MlG54xlarge
ml.g5.4xlargeInstanceType enum ml.g5.4xlarge
MlG58xlarge
ml.g5.8xlargeInstanceType enum ml.g5.8xlarge
MlG5Xlarge
ml.g5.xlargeInstanceType enum ml.g5.xlarge
MlInf124xlarge
ml.inf1.24xlargeInstanceType enum ml.inf1.24xlarge
MlInf12xlarge
ml.inf1.2xlargeInstanceType enum ml.inf1.2xlarge
MlInf16xlarge
ml.inf1.6xlargeInstanceType enum ml.inf1.6xlarge
MlInf1Xlarge
ml.inf1.xlargeInstanceType enum ml.inf1.xlarge
MlM410xlarge
ml.m4.10xlargeInstanceType enum ml.m4.10xlarge
MlM416xlarge
ml.m4.16xlargeInstanceType enum ml.m4.16xlarge
MlM42xlarge
ml.m4.2xlargeInstanceType enum ml.m4.2xlarge
MlM44xlarge
ml.m4.4xlargeInstanceType enum ml.m4.4xlarge
MlM4Xlarge
ml.m4.xlargeInstanceType enum ml.m4.xlarge
MlM512xlarge
ml.m5.12xlargeInstanceType enum ml.m5.12xlarge
MlM524xlarge
ml.m5.24xlargeInstanceType enum ml.m5.24xlarge
MlM52xlarge
ml.m5.2xlargeInstanceType enum ml.m5.2xlarge
MlM54xlarge
ml.m5.4xlargeInstanceType enum ml.m5.4xlarge
MlM5Xlarge
ml.m5.xlargeInstanceType enum ml.m5.xlarge
MlM5d12xlarge
ml.m5d.12xlargeInstanceType enum ml.m5d.12xlarge
MlM5d16xlarge
ml.m5d.16xlargeInstanceType enum ml.m5d.16xlarge
MlM5d24xlarge
ml.m5d.24xlargeInstanceType enum ml.m5d.24xlarge
MlM5d2xlarge
ml.m5d.2xlargeInstanceType enum ml.m5d.2xlarge
MlM5d4xlarge
ml.m5d.4xlargeInstanceType enum ml.m5d.4xlarge
MlM5d8xlarge
ml.m5d.8xlargeInstanceType enum ml.m5d.8xlarge
MlM5dLarge
ml.m5d.largeInstanceType enum ml.m5d.large
MlM5dXlarge
ml.m5d.xlargeInstanceType enum ml.m5d.xlarge
MlM6i12xlarge
ml.m6i.12xlargeInstanceType enum ml.m6i.12xlarge
MlM6i16xlarge
ml.m6i.16xlargeInstanceType enum ml.m6i.16xlarge
MlM6i24xlarge
ml.m6i.24xlargeInstanceType enum ml.m6i.24xlarge
MlM6i2xlarge
ml.m6i.2xlargeInstanceType enum ml.m6i.2xlarge
MlM6i32xlarge
ml.m6i.32xlargeInstanceType enum ml.m6i.32xlarge
MlM6i4xlarge
ml.m6i.4xlargeInstanceType enum ml.m6i.4xlarge
MlM6i8xlarge
ml.m6i.8xlargeInstanceType enum ml.m6i.8xlarge
MlM6iLarge
ml.m6i.largeInstanceType enum ml.m6i.large
MlM6iXlarge
ml.m6i.xlargeInstanceType enum ml.m6i.xlarge
MlM6id12xlarge
ml.m6id.12xlargeInstanceType enum ml.m6id.12xlarge
MlM6id16xlarge
ml.m6id.16xlargeInstanceType enum ml.m6id.16xlarge
MlM6id24xlarge
ml.m6id.24xlargeInstanceType enum ml.m6id.24xlarge
MlM6id2xlarge
ml.m6id.2xlargeInstanceType enum ml.m6id.2xlarge
MlM6id32xlarge
ml.m6id.32xlargeInstanceType enum ml.m6id.32xlarge
MlM6id4xlarge
ml.m6id.4xlargeInstanceType enum ml.m6id.4xlarge
MlM6id8xlarge
ml.m6id.8xlargeInstanceType enum ml.m6id.8xlarge
MlM6idLarge
ml.m6id.largeInstanceType enum ml.m6id.large
MlM6idXlarge
ml.m6id.xlargeInstanceType enum ml.m6id.xlarge
MlM7i12xlarge
ml.m7i.12xlargeInstanceType enum ml.m7i.12xlarge
MlM7i16xlarge
ml.m7i.16xlargeInstanceType enum ml.m7i.16xlarge
MlM7i24xlarge
ml.m7i.24xlargeInstanceType enum ml.m7i.24xlarge
MlM7i2xlarge
ml.m7i.2xlargeInstanceType enum ml.m7i.2xlarge
MlM7i48xlarge
ml.m7i.48xlargeInstanceType enum ml.m7i.48xlarge
MlM7i4xlarge
ml.m7i.4xlargeInstanceType enum ml.m7i.4xlarge
MlM7i8xlarge
ml.m7i.8xlargeInstanceType enum ml.m7i.8xlarge
MlM7iLarge
ml.m7i.largeInstanceType enum ml.m7i.large
MlM7iXlarge
ml.m7i.xlargeInstanceType enum ml.m7i.xlarge
MlP216xlarge
ml.p2.16xlargeInstanceType enum ml.p2.16xlarge
MlP28xlarge
ml.p2.8xlargeInstanceType enum ml.p2.8xlarge
MlP2Xlarge
ml.p2.xlargeInstanceType enum ml.p2.xlarge
MlP316xlarge
ml.p3.16xlargeInstanceType enum ml.p3.16xlarge
MlP32xlarge
ml.p3.2xlargeInstanceType enum ml.p3.2xlarge
MlP38xlarge
ml.p3.8xlargeInstanceType enum ml.p3.8xlarge
MlP3dn24xlarge
ml.p3dn.24xlargeInstanceType enum ml.p3dn.24xlarge
MlP4d24xlarge
ml.p4d.24xlargeInstanceType enum ml.p4d.24xlarge
MlP4de24xlarge
ml.p4de.24xlargeInstanceType enum ml.p4de.24xlarge
MlP548xlarge
ml.p5.48xlargeInstanceType enum ml.p5.48xlarge
MlR512xlarge
ml.r5.12xlargeInstanceType enum ml.r5.12xlarge
MlR516xlarge
ml.r5.16xlargeInstanceType enum ml.r5.16xlarge
MlR524xlarge
ml.r5.24xlargeInstanceType enum ml.r5.24xlarge
MlR52xlarge
ml.r5.2xlargeInstanceType enum ml.r5.2xlarge
MlR54xlarge
ml.r5.4xlargeInstanceType enum ml.r5.4xlarge
MlR58xlarge
ml.r5.8xlargeInstanceType enum ml.r5.8xlarge
MlR5Large
ml.r5.largeInstanceType enum ml.r5.large
MlR5Xlarge
ml.r5.xlargeInstanceType enum ml.r5.xlarge
MlR6i12xlarge
ml.r6i.12xlargeInstanceType enum ml.r6i.12xlarge
MlR6i16xlarge
ml.r6i.16xlargeInstanceType enum ml.r6i.16xlarge
MlR6i24xlarge
ml.r6i.24xlargeInstanceType enum ml.r6i.24xlarge
MlR6i2xlarge
ml.r6i.2xlargeInstanceType enum ml.r6i.2xlarge
MlR6i32xlarge
ml.r6i.32xlargeInstanceType enum ml.r6i.32xlarge
MlR6i4xlarge
ml.r6i.4xlargeInstanceType enum ml.r6i.4xlarge
MlR6i8xlarge
ml.r6i.8xlargeInstanceType enum ml.r6i.8xlarge
MlR6iLarge
ml.r6i.largeInstanceType enum ml.r6i.large
MlR6iXlarge
ml.r6i.xlargeInstanceType enum ml.r6i.xlarge
MlR6id12xlarge
ml.r6id.12xlargeInstanceType enum ml.r6id.12xlarge
MlR6id16xlarge
ml.r6id.16xlargeInstanceType enum ml.r6id.16xlarge
MlR6id24xlarge
ml.r6id.24xlargeInstanceType enum ml.r6id.24xlarge
MlR6id2xlarge
ml.r6id.2xlargeInstanceType enum ml.r6id.2xlarge
MlR6id32xlarge
ml.r6id.32xlargeInstanceType enum ml.r6id.32xlarge
MlR6id4xlarge
ml.r6id.4xlargeInstanceType enum ml.r6id.4xlarge
MlR6id8xlarge
ml.r6id.8xlargeInstanceType enum ml.r6id.8xlarge
MlR6idLarge
ml.r6id.largeInstanceType enum ml.r6id.large
MlR6idXlarge
ml.r6id.xlargeInstanceType enum ml.r6id.xlarge
MlR7i12xlarge
ml.r7i.12xlargeInstanceType enum ml.r7i.12xlarge
MlR7i16xlarge
ml.r7i.16xlargeInstanceType enum ml.r7i.16xlarge
MlR7i24xlarge
ml.r7i.24xlargeInstanceType enum ml.r7i.24xlarge
MlR7i2xlarge
ml.r7i.2xlargeInstanceType enum ml.r7i.2xlarge
MlR7i48xlarge
ml.r7i.48xlargeInstanceType enum ml.r7i.48xlarge
MlR7i4xlarge
ml.r7i.4xlargeInstanceType enum ml.r7i.4xlarge
MlR7i8xlarge
ml.r7i.8xlargeInstanceType enum ml.r7i.8xlarge
MlR7iLarge
ml.r7i.largeInstanceType enum ml.r7i.large
MlR7iXlarge
ml.r7i.xlargeInstanceType enum ml.r7i.xlarge
MlT22xlarge
ml.t2.2xlargeInstanceType enum ml.t2.2xlarge
MlT2Large
ml.t2.largeInstanceType enum ml.t2.large
MlT2Medium
ml.t2.mediumInstanceType enum ml.t2.medium
MlT2Xlarge
ml.t2.xlargeInstanceType enum ml.t2.xlarge
MlT32xlarge
ml.t3.2xlargeInstanceType enum ml.t3.2xlarge
MlT3Large
ml.t3.largeInstanceType enum ml.t3.large
MlT3Medium
ml.t3.mediumInstanceType enum ml.t3.medium
MlT3Xlarge
ml.t3.xlargeInstanceType enum ml.t3.xlarge
ML_C42XLARGE
ml.c4.2xlargeInstanceType enum ml.c4.2xlarge
ML_C44XLARGE
ml.c4.4xlargeInstanceType enum ml.c4.4xlarge
ML_C48XLARGE
ml.c4.8xlargeInstanceType enum ml.c4.8xlarge
ML_C4_XLARGE
ml.c4.xlargeInstanceType enum ml.c4.xlarge
ML_C518XLARGE
ml.c5.18xlargeInstanceType enum ml.c5.18xlarge
ML_C52XLARGE
ml.c5.2xlargeInstanceType enum ml.c5.2xlarge
ML_C54XLARGE
ml.c5.4xlargeInstanceType enum ml.c5.4xlarge
ML_C59XLARGE
ml.c5.9xlargeInstanceType enum ml.c5.9xlarge
ML_C5_XLARGE
ml.c5.xlargeInstanceType enum ml.c5.xlarge
ML_C5D18XLARGE
ml.c5d.18xlargeInstanceType enum ml.c5d.18xlarge
ML_C5D2XLARGE
ml.c5d.2xlargeInstanceType enum ml.c5d.2xlarge
ML_C5D4XLARGE
ml.c5d.4xlargeInstanceType enum ml.c5d.4xlarge
ML_C5D9XLARGE
ml.c5d.9xlargeInstanceType enum ml.c5d.9xlarge
ML_C5D_XLARGE
ml.c5d.xlargeInstanceType enum ml.c5d.xlarge
ML_C6I12XLARGE
ml.c6i.12xlargeInstanceType enum ml.c6i.12xlarge
ML_C6I16XLARGE
ml.c6i.16xlargeInstanceType enum ml.c6i.16xlarge
ML_C6I24XLARGE
ml.c6i.24xlargeInstanceType enum ml.c6i.24xlarge
ML_C6I2XLARGE
ml.c6i.2xlargeInstanceType enum ml.c6i.2xlarge
ML_C6I32XLARGE
ml.c6i.32xlargeInstanceType enum ml.c6i.32xlarge
ML_C6I4XLARGE
ml.c6i.4xlargeInstanceType enum ml.c6i.4xlarge
ML_C6I8XLARGE
ml.c6i.8xlargeInstanceType enum ml.c6i.8xlarge
ML_C6I_LARGE
ml.c6i.largeInstanceType enum ml.c6i.large
ML_C6I_XLARGE
ml.c6i.xlargeInstanceType enum ml.c6i.xlarge
ML_C6ID12XLARGE
ml.c6id.12xlargeInstanceType enum ml.c6id.12xlarge
ML_C6ID16XLARGE
ml.c6id.16xlargeInstanceType enum ml.c6id.16xlarge
ML_C6ID24XLARGE
ml.c6id.24xlargeInstanceType enum ml.c6id.24xlarge
ML_C6ID2XLARGE
ml.c6id.2xlargeInstanceType enum ml.c6id.2xlarge
ML_C6ID32XLARGE
ml.c6id.32xlargeInstanceType enum ml.c6id.32xlarge
ML_C6ID4XLARGE
ml.c6id.4xlargeInstanceType enum ml.c6id.4xlarge
ML_C6ID8XLARGE
ml.c6id.8xlargeInstanceType enum ml.c6id.8xlarge
ML_C6ID_LARGE
ml.c6id.largeInstanceType enum ml.c6id.large
ML_C6ID_XLARGE
ml.c6id.xlargeInstanceType enum ml.c6id.xlarge
ML_C7I12XLARGE
ml.c7i.12xlargeInstanceType enum ml.c7i.12xlarge
ML_C7I16XLARGE
ml.c7i.16xlargeInstanceType enum ml.c7i.16xlarge
ML_C7I24XLARGE
ml.c7i.24xlargeInstanceType enum ml.c7i.24xlarge
ML_C7I2XLARGE
ml.c7i.2xlargeInstanceType enum ml.c7i.2xlarge
ML_C7I48XLARGE
ml.c7i.48xlargeInstanceType enum ml.c7i.48xlarge
ML_C7I4XLARGE
ml.c7i.4xlargeInstanceType enum ml.c7i.4xlarge
ML_C7I8XLARGE
ml.c7i.8xlargeInstanceType enum ml.c7i.8xlarge
ML_C7I_LARGE
ml.c7i.largeInstanceType enum ml.c7i.large
ML_C7I_XLARGE
ml.c7i.xlargeInstanceType enum ml.c7i.xlarge
ML_G4DN12XLARGE
ml.g4dn.12xlargeInstanceType enum ml.g4dn.12xlarge
ML_G4DN16XLARGE
ml.g4dn.16xlargeInstanceType enum ml.g4dn.16xlarge
ML_G4DN2XLARGE
ml.g4dn.2xlargeInstanceType enum ml.g4dn.2xlarge
ML_G4DN4XLARGE
ml.g4dn.4xlargeInstanceType enum ml.g4dn.4xlarge
ML_G4DN8XLARGE
ml.g4dn.8xlargeInstanceType enum ml.g4dn.8xlarge
ML_G4DN_XLARGE
ml.g4dn.xlargeInstanceType enum ml.g4dn.xlarge
ML_G512XLARGE
ml.g5.12xlargeInstanceType enum ml.g5.12xlarge
ML_G516XLARGE
ml.g5.16xlargeInstanceType enum ml.g5.16xlarge
ML_G524XLARGE
ml.g5.24xlargeInstanceType enum ml.g5.24xlarge
ML_G52XLARGE
ml.g5.2xlargeInstanceType enum ml.g5.2xlarge
ML_G548XLARGE
ml.g5.48xlargeInstanceType enum ml.g5.48xlarge
ML_G54XLARGE
ml.g5.4xlargeInstanceType enum ml.g5.4xlarge
ML_G58XLARGE
ml.g5.8xlargeInstanceType enum ml.g5.8xlarge
ML_G5_XLARGE
ml.g5.xlargeInstanceType enum ml.g5.xlarge
ML_INF124XLARGE
ml.inf1.24xlargeInstanceType enum ml.inf1.24xlarge
ML_INF12XLARGE
ml.inf1.2xlargeInstanceType enum ml.inf1.2xlarge
ML_INF16XLARGE
ml.inf1.6xlargeInstanceType enum ml.inf1.6xlarge
ML_INF1_XLARGE
ml.inf1.xlargeInstanceType enum ml.inf1.xlarge
ML_M410XLARGE
ml.m4.10xlargeInstanceType enum ml.m4.10xlarge
ML_M416XLARGE
ml.m4.16xlargeInstanceType enum ml.m4.16xlarge
ML_M42XLARGE
ml.m4.2xlargeInstanceType enum ml.m4.2xlarge
ML_M44XLARGE
ml.m4.4xlargeInstanceType enum ml.m4.4xlarge
ML_M4_XLARGE
ml.m4.xlargeInstanceType enum ml.m4.xlarge
ML_M512XLARGE
ml.m5.12xlargeInstanceType enum ml.m5.12xlarge
ML_M524XLARGE
ml.m5.24xlargeInstanceType enum ml.m5.24xlarge
ML_M52XLARGE
ml.m5.2xlargeInstanceType enum ml.m5.2xlarge
ML_M54XLARGE
ml.m5.4xlargeInstanceType enum ml.m5.4xlarge
ML_M5_XLARGE
ml.m5.xlargeInstanceType enum ml.m5.xlarge
ML_M5D12XLARGE
ml.m5d.12xlargeInstanceType enum ml.m5d.12xlarge
ML_M5D16XLARGE
ml.m5d.16xlargeInstanceType enum ml.m5d.16xlarge
ML_M5D24XLARGE
ml.m5d.24xlargeInstanceType enum ml.m5d.24xlarge
ML_M5D2XLARGE
ml.m5d.2xlargeInstanceType enum ml.m5d.2xlarge
ML_M5D4XLARGE
ml.m5d.4xlargeInstanceType enum ml.m5d.4xlarge
ML_M5D8XLARGE
ml.m5d.8xlargeInstanceType enum ml.m5d.8xlarge
ML_M5D_LARGE
ml.m5d.largeInstanceType enum ml.m5d.large
ML_M5D_XLARGE
ml.m5d.xlargeInstanceType enum ml.m5d.xlarge
ML_M6I12XLARGE
ml.m6i.12xlargeInstanceType enum ml.m6i.12xlarge
ML_M6I16XLARGE
ml.m6i.16xlargeInstanceType enum ml.m6i.16xlarge
ML_M6I24XLARGE
ml.m6i.24xlargeInstanceType enum ml.m6i.24xlarge
ML_M6I2XLARGE
ml.m6i.2xlargeInstanceType enum ml.m6i.2xlarge
ML_M6I32XLARGE
ml.m6i.32xlargeInstanceType enum ml.m6i.32xlarge
ML_M6I4XLARGE
ml.m6i.4xlargeInstanceType enum ml.m6i.4xlarge
ML_M6I8XLARGE
ml.m6i.8xlargeInstanceType enum ml.m6i.8xlarge
ML_M6I_LARGE
ml.m6i.largeInstanceType enum ml.m6i.large
ML_M6I_XLARGE
ml.m6i.xlargeInstanceType enum ml.m6i.xlarge
ML_M6ID12XLARGE
ml.m6id.12xlargeInstanceType enum ml.m6id.12xlarge
ML_M6ID16XLARGE
ml.m6id.16xlargeInstanceType enum ml.m6id.16xlarge
ML_M6ID24XLARGE
ml.m6id.24xlargeInstanceType enum ml.m6id.24xlarge
ML_M6ID2XLARGE
ml.m6id.2xlargeInstanceType enum ml.m6id.2xlarge
ML_M6ID32XLARGE
ml.m6id.32xlargeInstanceType enum ml.m6id.32xlarge
ML_M6ID4XLARGE
ml.m6id.4xlargeInstanceType enum ml.m6id.4xlarge
ML_M6ID8XLARGE
ml.m6id.8xlargeInstanceType enum ml.m6id.8xlarge
ML_M6ID_LARGE
ml.m6id.largeInstanceType enum ml.m6id.large
ML_M6ID_XLARGE
ml.m6id.xlargeInstanceType enum ml.m6id.xlarge
ML_M7I12XLARGE
ml.m7i.12xlargeInstanceType enum ml.m7i.12xlarge
ML_M7I16XLARGE
ml.m7i.16xlargeInstanceType enum ml.m7i.16xlarge
ML_M7I24XLARGE
ml.m7i.24xlargeInstanceType enum ml.m7i.24xlarge
ML_M7I2XLARGE
ml.m7i.2xlargeInstanceType enum ml.m7i.2xlarge
ML_M7I48XLARGE
ml.m7i.48xlargeInstanceType enum ml.m7i.48xlarge
ML_M7I4XLARGE
ml.m7i.4xlargeInstanceType enum ml.m7i.4xlarge
ML_M7I8XLARGE
ml.m7i.8xlargeInstanceType enum ml.m7i.8xlarge
ML_M7I_LARGE
ml.m7i.largeInstanceType enum ml.m7i.large
ML_M7I_XLARGE
ml.m7i.xlargeInstanceType enum ml.m7i.xlarge
ML_P216XLARGE
ml.p2.16xlargeInstanceType enum ml.p2.16xlarge
ML_P28XLARGE
ml.p2.8xlargeInstanceType enum ml.p2.8xlarge
ML_P2_XLARGE
ml.p2.xlargeInstanceType enum ml.p2.xlarge
ML_P316XLARGE
ml.p3.16xlargeInstanceType enum ml.p3.16xlarge
ML_P32XLARGE
ml.p3.2xlargeInstanceType enum ml.p3.2xlarge
ML_P38XLARGE
ml.p3.8xlargeInstanceType enum ml.p3.8xlarge
ML_P3DN24XLARGE
ml.p3dn.24xlargeInstanceType enum ml.p3dn.24xlarge
ML_P4D24XLARGE
ml.p4d.24xlargeInstanceType enum ml.p4d.24xlarge
ML_P4DE24XLARGE
ml.p4de.24xlargeInstanceType enum ml.p4de.24xlarge
ML_P548XLARGE
ml.p5.48xlargeInstanceType enum ml.p5.48xlarge
ML_R512XLARGE
ml.r5.12xlargeInstanceType enum ml.r5.12xlarge
ML_R516XLARGE
ml.r5.16xlargeInstanceType enum ml.r5.16xlarge
ML_R524XLARGE
ml.r5.24xlargeInstanceType enum ml.r5.24xlarge
ML_R52XLARGE
ml.r5.2xlargeInstanceType enum ml.r5.2xlarge
ML_R54XLARGE
ml.r5.4xlargeInstanceType enum ml.r5.4xlarge
ML_R58XLARGE
ml.r5.8xlargeInstanceType enum ml.r5.8xlarge
ML_R5_LARGE
ml.r5.largeInstanceType enum ml.r5.large
ML_R5_XLARGE
ml.r5.xlargeInstanceType enum ml.r5.xlarge
ML_R6I12XLARGE
ml.r6i.12xlargeInstanceType enum ml.r6i.12xlarge
ML_R6I16XLARGE
ml.r6i.16xlargeInstanceType enum ml.r6i.16xlarge
ML_R6I24XLARGE
ml.r6i.24xlargeInstanceType enum ml.r6i.24xlarge
ML_R6I2XLARGE
ml.r6i.2xlargeInstanceType enum ml.r6i.2xlarge
ML_R6I32XLARGE
ml.r6i.32xlargeInstanceType enum ml.r6i.32xlarge
ML_R6I4XLARGE
ml.r6i.4xlargeInstanceType enum ml.r6i.4xlarge
ML_R6I8XLARGE
ml.r6i.8xlargeInstanceType enum ml.r6i.8xlarge
ML_R6I_LARGE
ml.r6i.largeInstanceType enum ml.r6i.large
ML_R6I_XLARGE
ml.r6i.xlargeInstanceType enum ml.r6i.xlarge
ML_R6ID12XLARGE
ml.r6id.12xlargeInstanceType enum ml.r6id.12xlarge
ML_R6ID16XLARGE
ml.r6id.16xlargeInstanceType enum ml.r6id.16xlarge
ML_R6ID24XLARGE
ml.r6id.24xlargeInstanceType enum ml.r6id.24xlarge
ML_R6ID2XLARGE
ml.r6id.2xlargeInstanceType enum ml.r6id.2xlarge
ML_R6ID32XLARGE
ml.r6id.32xlargeInstanceType enum ml.r6id.32xlarge
ML_R6ID4XLARGE
ml.r6id.4xlargeInstanceType enum ml.r6id.4xlarge
ML_R6ID8XLARGE
ml.r6id.8xlargeInstanceType enum ml.r6id.8xlarge
ML_R6ID_LARGE
ml.r6id.largeInstanceType enum ml.r6id.large
ML_R6ID_XLARGE
ml.r6id.xlargeInstanceType enum ml.r6id.xlarge
ML_R7I12XLARGE
ml.r7i.12xlargeInstanceType enum ml.r7i.12xlarge
ML_R7I16XLARGE
ml.r7i.16xlargeInstanceType enum ml.r7i.16xlarge
ML_R7I24XLARGE
ml.r7i.24xlargeInstanceType enum ml.r7i.24xlarge
ML_R7I2XLARGE
ml.r7i.2xlargeInstanceType enum ml.r7i.2xlarge
ML_R7I48XLARGE
ml.r7i.48xlargeInstanceType enum ml.r7i.48xlarge
ML_R7I4XLARGE
ml.r7i.4xlargeInstanceType enum ml.r7i.4xlarge
ML_R7I8XLARGE
ml.r7i.8xlargeInstanceType enum ml.r7i.8xlarge
ML_R7I_LARGE
ml.r7i.largeInstanceType enum ml.r7i.large
ML_R7I_XLARGE
ml.r7i.xlargeInstanceType enum ml.r7i.xlarge
ML_T22XLARGE
ml.t2.2xlargeInstanceType enum ml.t2.2xlarge
ML_T2_LARGE
ml.t2.largeInstanceType enum ml.t2.large
ML_T2_MEDIUM
ml.t2.mediumInstanceType enum ml.t2.medium
ML_T2_XLARGE
ml.t2.xlargeInstanceType enum ml.t2.xlarge
ML_T32XLARGE
ml.t3.2xlargeInstanceType enum ml.t3.2xlarge
ML_T3_LARGE
ml.t3.largeInstanceType enum ml.t3.large
ML_T3_MEDIUM
ml.t3.mediumInstanceType enum ml.t3.medium
ML_T3_XLARGE
ml.t3.xlargeInstanceType enum ml.t3.xlarge
"ml.c4.2xlarge"
ml.c4.2xlargeInstanceType enum ml.c4.2xlarge
"ml.c4.4xlarge"
ml.c4.4xlargeInstanceType enum ml.c4.4xlarge
"ml.c4.8xlarge"
ml.c4.8xlargeInstanceType enum ml.c4.8xlarge
"ml.c4.xlarge"
ml.c4.xlargeInstanceType enum ml.c4.xlarge
"ml.c5.18xlarge"
ml.c5.18xlargeInstanceType enum ml.c5.18xlarge
"ml.c5.2xlarge"
ml.c5.2xlargeInstanceType enum ml.c5.2xlarge
"ml.c5.4xlarge"
ml.c5.4xlargeInstanceType enum ml.c5.4xlarge
"ml.c5.9xlarge"
ml.c5.9xlargeInstanceType enum ml.c5.9xlarge
"ml.c5.xlarge"
ml.c5.xlargeInstanceType enum ml.c5.xlarge
"ml.c5d.18xlarge"
ml.c5d.18xlargeInstanceType enum ml.c5d.18xlarge
"ml.c5d.2xlarge"
ml.c5d.2xlargeInstanceType enum ml.c5d.2xlarge
"ml.c5d.4xlarge"
ml.c5d.4xlargeInstanceType enum ml.c5d.4xlarge
"ml.c5d.9xlarge"
ml.c5d.9xlargeInstanceType enum ml.c5d.9xlarge
"ml.c5d.xlarge"
ml.c5d.xlargeInstanceType enum ml.c5d.xlarge
"ml.c6i.12xlarge"
ml.c6i.12xlargeInstanceType enum ml.c6i.12xlarge
"ml.c6i.16xlarge"
ml.c6i.16xlargeInstanceType enum ml.c6i.16xlarge
"ml.c6i.24xlarge"
ml.c6i.24xlargeInstanceType enum ml.c6i.24xlarge
"ml.c6i.2xlarge"
ml.c6i.2xlargeInstanceType enum ml.c6i.2xlarge
"ml.c6i.32xlarge"
ml.c6i.32xlargeInstanceType enum ml.c6i.32xlarge
"ml.c6i.4xlarge"
ml.c6i.4xlargeInstanceType enum ml.c6i.4xlarge
"ml.c6i.8xlarge"
ml.c6i.8xlargeInstanceType enum ml.c6i.8xlarge
"ml.c6i.large"
ml.c6i.largeInstanceType enum ml.c6i.large
"ml.c6i.xlarge"
ml.c6i.xlargeInstanceType enum ml.c6i.xlarge
"ml.c6id.12xlarge"
ml.c6id.12xlargeInstanceType enum ml.c6id.12xlarge
"ml.c6id.16xlarge"
ml.c6id.16xlargeInstanceType enum ml.c6id.16xlarge
"ml.c6id.24xlarge"
ml.c6id.24xlargeInstanceType enum ml.c6id.24xlarge
"ml.c6id.2xlarge"
ml.c6id.2xlargeInstanceType enum ml.c6id.2xlarge
"ml.c6id.32xlarge"
ml.c6id.32xlargeInstanceType enum ml.c6id.32xlarge
"ml.c6id.4xlarge"
ml.c6id.4xlargeInstanceType enum ml.c6id.4xlarge
"ml.c6id.8xlarge"
ml.c6id.8xlargeInstanceType enum ml.c6id.8xlarge
"ml.c6id.large"
ml.c6id.largeInstanceType enum ml.c6id.large
"ml.c6id.xlarge"
ml.c6id.xlargeInstanceType enum ml.c6id.xlarge
"ml.c7i.12xlarge"
ml.c7i.12xlargeInstanceType enum ml.c7i.12xlarge
"ml.c7i.16xlarge"
ml.c7i.16xlargeInstanceType enum ml.c7i.16xlarge
"ml.c7i.24xlarge"
ml.c7i.24xlargeInstanceType enum ml.c7i.24xlarge
"ml.c7i.2xlarge"
ml.c7i.2xlargeInstanceType enum ml.c7i.2xlarge
"ml.c7i.48xlarge"
ml.c7i.48xlargeInstanceType enum ml.c7i.48xlarge
"ml.c7i.4xlarge"
ml.c7i.4xlargeInstanceType enum ml.c7i.4xlarge
"ml.c7i.8xlarge"
ml.c7i.8xlargeInstanceType enum ml.c7i.8xlarge
"ml.c7i.large"
ml.c7i.largeInstanceType enum ml.c7i.large
"ml.c7i.xlarge"
ml.c7i.xlargeInstanceType enum ml.c7i.xlarge
"ml.g4dn.12xlarge"
ml.g4dn.12xlargeInstanceType enum ml.g4dn.12xlarge
"ml.g4dn.16xlarge"
ml.g4dn.16xlargeInstanceType enum ml.g4dn.16xlarge
"ml.g4dn.2xlarge"
ml.g4dn.2xlargeInstanceType enum ml.g4dn.2xlarge
"ml.g4dn.4xlarge"
ml.g4dn.4xlargeInstanceType enum ml.g4dn.4xlarge
"ml.g4dn.8xlarge"
ml.g4dn.8xlargeInstanceType enum ml.g4dn.8xlarge
"ml.g4dn.xlarge"
ml.g4dn.xlargeInstanceType enum ml.g4dn.xlarge
"ml.g5.12xlarge"
ml.g5.12xlargeInstanceType enum ml.g5.12xlarge
"ml.g5.16xlarge"
ml.g5.16xlargeInstanceType enum ml.g5.16xlarge
"ml.g5.24xlarge"
ml.g5.24xlargeInstanceType enum ml.g5.24xlarge
"ml.g5.2xlarge"
ml.g5.2xlargeInstanceType enum ml.g5.2xlarge
"ml.g5.48xlarge"
ml.g5.48xlargeInstanceType enum ml.g5.48xlarge
"ml.g5.4xlarge"
ml.g5.4xlargeInstanceType enum ml.g5.4xlarge
"ml.g5.8xlarge"
ml.g5.8xlargeInstanceType enum ml.g5.8xlarge
"ml.g5.xlarge"
ml.g5.xlargeInstanceType enum ml.g5.xlarge
"ml.inf1.24xlarge"
ml.inf1.24xlargeInstanceType enum ml.inf1.24xlarge
"ml.inf1.2xlarge"
ml.inf1.2xlargeInstanceType enum ml.inf1.2xlarge
"ml.inf1.6xlarge"
ml.inf1.6xlargeInstanceType enum ml.inf1.6xlarge
"ml.inf1.xlarge"
ml.inf1.xlargeInstanceType enum ml.inf1.xlarge
"ml.m4.10xlarge"
ml.m4.10xlargeInstanceType enum ml.m4.10xlarge
"ml.m4.16xlarge"
ml.m4.16xlargeInstanceType enum ml.m4.16xlarge
"ml.m4.2xlarge"
ml.m4.2xlargeInstanceType enum ml.m4.2xlarge
"ml.m4.4xlarge"
ml.m4.4xlargeInstanceType enum ml.m4.4xlarge
"ml.m4.xlarge"
ml.m4.xlargeInstanceType enum ml.m4.xlarge
"ml.m5.12xlarge"
ml.m5.12xlargeInstanceType enum ml.m5.12xlarge
"ml.m5.24xlarge"
ml.m5.24xlargeInstanceType enum ml.m5.24xlarge
"ml.m5.2xlarge"
ml.m5.2xlargeInstanceType enum ml.m5.2xlarge
"ml.m5.4xlarge"
ml.m5.4xlargeInstanceType enum ml.m5.4xlarge
"ml.m5.xlarge"
ml.m5.xlargeInstanceType enum ml.m5.xlarge
"ml.m5d.12xlarge"
ml.m5d.12xlargeInstanceType enum ml.m5d.12xlarge
"ml.m5d.16xlarge"
ml.m5d.16xlargeInstanceType enum ml.m5d.16xlarge
"ml.m5d.24xlarge"
ml.m5d.24xlargeInstanceType enum ml.m5d.24xlarge
"ml.m5d.2xlarge"
ml.m5d.2xlargeInstanceType enum ml.m5d.2xlarge
"ml.m5d.4xlarge"
ml.m5d.4xlargeInstanceType enum ml.m5d.4xlarge
"ml.m5d.8xlarge"
ml.m5d.8xlargeInstanceType enum ml.m5d.8xlarge
"ml.m5d.large"
ml.m5d.largeInstanceType enum ml.m5d.large
"ml.m5d.xlarge"
ml.m5d.xlargeInstanceType enum ml.m5d.xlarge
"ml.m6i.12xlarge"
ml.m6i.12xlargeInstanceType enum ml.m6i.12xlarge
"ml.m6i.16xlarge"
ml.m6i.16xlargeInstanceType enum ml.m6i.16xlarge
"ml.m6i.24xlarge"
ml.m6i.24xlargeInstanceType enum ml.m6i.24xlarge
"ml.m6i.2xlarge"
ml.m6i.2xlargeInstanceType enum ml.m6i.2xlarge
"ml.m6i.32xlarge"
ml.m6i.32xlargeInstanceType enum ml.m6i.32xlarge
"ml.m6i.4xlarge"
ml.m6i.4xlargeInstanceType enum ml.m6i.4xlarge
"ml.m6i.8xlarge"
ml.m6i.8xlargeInstanceType enum ml.m6i.8xlarge
"ml.m6i.large"
ml.m6i.largeInstanceType enum ml.m6i.large
"ml.m6i.xlarge"
ml.m6i.xlargeInstanceType enum ml.m6i.xlarge
"ml.m6id.12xlarge"
ml.m6id.12xlargeInstanceType enum ml.m6id.12xlarge
"ml.m6id.16xlarge"
ml.m6id.16xlargeInstanceType enum ml.m6id.16xlarge
"ml.m6id.24xlarge"
ml.m6id.24xlargeInstanceType enum ml.m6id.24xlarge
"ml.m6id.2xlarge"
ml.m6id.2xlargeInstanceType enum ml.m6id.2xlarge
"ml.m6id.32xlarge"
ml.m6id.32xlargeInstanceType enum ml.m6id.32xlarge
"ml.m6id.4xlarge"
ml.m6id.4xlargeInstanceType enum ml.m6id.4xlarge
"ml.m6id.8xlarge"
ml.m6id.8xlargeInstanceType enum ml.m6id.8xlarge
"ml.m6id.large"
ml.m6id.largeInstanceType enum ml.m6id.large
"ml.m6id.xlarge"
ml.m6id.xlargeInstanceType enum ml.m6id.xlarge
"ml.m7i.12xlarge"
ml.m7i.12xlargeInstanceType enum ml.m7i.12xlarge
"ml.m7i.16xlarge"
ml.m7i.16xlargeInstanceType enum ml.m7i.16xlarge
"ml.m7i.24xlarge"
ml.m7i.24xlargeInstanceType enum ml.m7i.24xlarge
"ml.m7i.2xlarge"
ml.m7i.2xlargeInstanceType enum ml.m7i.2xlarge
"ml.m7i.48xlarge"
ml.m7i.48xlargeInstanceType enum ml.m7i.48xlarge
"ml.m7i.4xlarge"
ml.m7i.4xlargeInstanceType enum ml.m7i.4xlarge
"ml.m7i.8xlarge"
ml.m7i.8xlargeInstanceType enum ml.m7i.8xlarge
"ml.m7i.large"
ml.m7i.largeInstanceType enum ml.m7i.large
"ml.m7i.xlarge"
ml.m7i.xlargeInstanceType enum ml.m7i.xlarge
"ml.p2.16xlarge"
ml.p2.16xlargeInstanceType enum ml.p2.16xlarge
"ml.p2.8xlarge"
ml.p2.8xlargeInstanceType enum ml.p2.8xlarge
"ml.p2.xlarge"
ml.p2.xlargeInstanceType enum ml.p2.xlarge
"ml.p3.16xlarge"
ml.p3.16xlargeInstanceType enum ml.p3.16xlarge
"ml.p3.2xlarge"
ml.p3.2xlargeInstanceType enum ml.p3.2xlarge
"ml.p3.8xlarge"
ml.p3.8xlargeInstanceType enum ml.p3.8xlarge
"ml.p3dn.24xlarge"
ml.p3dn.24xlargeInstanceType enum ml.p3dn.24xlarge
"ml.p4d.24xlarge"
ml.p4d.24xlargeInstanceType enum ml.p4d.24xlarge
"ml.p4de.24xlarge"
ml.p4de.24xlargeInstanceType enum ml.p4de.24xlarge
"ml.p5.48xlarge"
ml.p5.48xlargeInstanceType enum ml.p5.48xlarge
"ml.r5.12xlarge"
ml.r5.12xlargeInstanceType enum ml.r5.12xlarge
"ml.r5.16xlarge"
ml.r5.16xlargeInstanceType enum ml.r5.16xlarge
"ml.r5.24xlarge"
ml.r5.24xlargeInstanceType enum ml.r5.24xlarge
"ml.r5.2xlarge"
ml.r5.2xlargeInstanceType enum ml.r5.2xlarge
"ml.r5.4xlarge"
ml.r5.4xlargeInstanceType enum ml.r5.4xlarge
"ml.r5.8xlarge"
ml.r5.8xlargeInstanceType enum ml.r5.8xlarge
"ml.r5.large"
ml.r5.largeInstanceType enum ml.r5.large
"ml.r5.xlarge"
ml.r5.xlargeInstanceType enum ml.r5.xlarge
"ml.r6i.12xlarge"
ml.r6i.12xlargeInstanceType enum ml.r6i.12xlarge
"ml.r6i.16xlarge"
ml.r6i.16xlargeInstanceType enum ml.r6i.16xlarge
"ml.r6i.24xlarge"
ml.r6i.24xlargeInstanceType enum ml.r6i.24xlarge
"ml.r6i.2xlarge"
ml.r6i.2xlargeInstanceType enum ml.r6i.2xlarge
"ml.r6i.32xlarge"
ml.r6i.32xlargeInstanceType enum ml.r6i.32xlarge
"ml.r6i.4xlarge"
ml.r6i.4xlargeInstanceType enum ml.r6i.4xlarge
"ml.r6i.8xlarge"
ml.r6i.8xlargeInstanceType enum ml.r6i.8xlarge
"ml.r6i.large"
ml.r6i.largeInstanceType enum ml.r6i.large
"ml.r6i.xlarge"
ml.r6i.xlargeInstanceType enum ml.r6i.xlarge
"ml.r6id.12xlarge"
ml.r6id.12xlargeInstanceType enum ml.r6id.12xlarge
"ml.r6id.16xlarge"
ml.r6id.16xlargeInstanceType enum ml.r6id.16xlarge
"ml.r6id.24xlarge"
ml.r6id.24xlargeInstanceType enum ml.r6id.24xlarge
"ml.r6id.2xlarge"
ml.r6id.2xlargeInstanceType enum ml.r6id.2xlarge
"ml.r6id.32xlarge"
ml.r6id.32xlargeInstanceType enum ml.r6id.32xlarge
"ml.r6id.4xlarge"
ml.r6id.4xlargeInstanceType enum ml.r6id.4xlarge
"ml.r6id.8xlarge"
ml.r6id.8xlargeInstanceType enum ml.r6id.8xlarge
"ml.r6id.large"
ml.r6id.largeInstanceType enum ml.r6id.large
"ml.r6id.xlarge"
ml.r6id.xlargeInstanceType enum ml.r6id.xlarge
"ml.r7i.12xlarge"
ml.r7i.12xlargeInstanceType enum ml.r7i.12xlarge
"ml.r7i.16xlarge"
ml.r7i.16xlargeInstanceType enum ml.r7i.16xlarge
"ml.r7i.24xlarge"
ml.r7i.24xlargeInstanceType enum ml.r7i.24xlarge
"ml.r7i.2xlarge"
ml.r7i.2xlargeInstanceType enum ml.r7i.2xlarge
"ml.r7i.48xlarge"
ml.r7i.48xlargeInstanceType enum ml.r7i.48xlarge
"ml.r7i.4xlarge"
ml.r7i.4xlargeInstanceType enum ml.r7i.4xlarge
"ml.r7i.8xlarge"
ml.r7i.8xlargeInstanceType enum ml.r7i.8xlarge
"ml.r7i.large"
ml.r7i.largeInstanceType enum ml.r7i.large
"ml.r7i.xlarge"
ml.r7i.xlargeInstanceType enum ml.r7i.xlarge
"ml.t2.2xlarge"
ml.t2.2xlargeInstanceType enum ml.t2.2xlarge
"ml.t2.large"
ml.t2.largeInstanceType enum ml.t2.large
"ml.t2.medium"
ml.t2.mediumInstanceType enum ml.t2.medium
"ml.t2.xlarge"
ml.t2.xlargeInstanceType enum ml.t2.xlarge
"ml.t3.2xlarge"
ml.t3.2xlargeInstanceType enum ml.t3.2xlarge
"ml.t3.large"
ml.t3.largeInstanceType enum ml.t3.large
"ml.t3.medium"
ml.t3.mediumInstanceType enum ml.t3.medium
"ml.t3.xlarge"
ml.t3.xlargeInstanceType enum ml.t3.xlarge

InstanceTypeEnumValue
, InstanceTypeEnumValueArgs

Value string | InstanceType
Property value
value String | InstanceType
Property value
value string | InstanceType
Property value
value str | InstanceType
Property value
value String | "ml.c4.2xlarge" | "ml.c4.4xlarge" | "ml.c4.8xlarge" | "ml.c4.xlarge" | "ml.c5.18xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.xlarge" | "ml.c5d.18xlarge" | "ml.c5d.2xlarge" | "ml.c5d.4xlarge" | "ml.c5d.9xlarge" | "ml.c5d.xlarge" | "ml.c6i.12xlarge" | "ml.c6i.16xlarge" | "ml.c6i.24xlarge" | "ml.c6i.2xlarge" | "ml.c6i.32xlarge" | "ml.c6i.4xlarge" | "ml.c6i.8xlarge" | "ml.c6i.large" | "ml.c6i.xlarge" | "ml.c6id.12xlarge" | "ml.c6id.16xlarge" | "ml.c6id.24xlarge" | "ml.c6id.2xlarge" | "ml.c6id.32xlarge" | "ml.c6id.4xlarge" | "ml.c6id.8xlarge" | "ml.c6id.large" | "ml.c6id.xlarge" | "ml.c7i.12xlarge" | "ml.c7i.16xlarge" | "ml.c7i.24xlarge" | "ml.c7i.2xlarge" | "ml.c7i.48xlarge" | "ml.c7i.4xlarge" | "ml.c7i.8xlarge" | "ml.c7i.large" | "ml.c7i.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.inf1.24xlarge" | "ml.inf1.2xlarge" | "ml.inf1.6xlarge" | "ml.inf1.xlarge" | "ml.m4.10xlarge" | "ml.m4.16xlarge" | "ml.m4.2xlarge" | "ml.m4.4xlarge" | "ml.m4.xlarge" | "ml.m5.12xlarge" | "ml.m5.24xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "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.m6i.12xlarge" | "ml.m6i.16xlarge" | "ml.m6i.24xlarge" | "ml.m6i.2xlarge" | "ml.m6i.32xlarge" | "ml.m6i.4xlarge" | "ml.m6i.8xlarge" | "ml.m6i.large" | "ml.m6i.xlarge" | "ml.m6id.12xlarge" | "ml.m6id.16xlarge" | "ml.m6id.24xlarge" | "ml.m6id.2xlarge" | "ml.m6id.32xlarge" | "ml.m6id.4xlarge" | "ml.m6id.8xlarge" | "ml.m6id.large" | "ml.m6id.xlarge" | "ml.m7i.12xlarge" | "ml.m7i.16xlarge" | "ml.m7i.24xlarge" | "ml.m7i.2xlarge" | "ml.m7i.48xlarge" | "ml.m7i.4xlarge" | "ml.m7i.8xlarge" | "ml.m7i.large" | "ml.m7i.xlarge" | "ml.p2.16xlarge" | "ml.p2.8xlarge" | "ml.p2.xlarge" | "ml.p3.16xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3dn.24xlarge" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.p5.48xlarge" | "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.r6i.12xlarge" | "ml.r6i.16xlarge" | "ml.r6i.24xlarge" | "ml.r6i.2xlarge" | "ml.r6i.32xlarge" | "ml.r6i.4xlarge" | "ml.r6i.8xlarge" | "ml.r6i.large" | "ml.r6i.xlarge" | "ml.r6id.12xlarge" | "ml.r6id.16xlarge" | "ml.r6id.24xlarge" | "ml.r6id.2xlarge" | "ml.r6id.32xlarge" | "ml.r6id.4xlarge" | "ml.r6id.8xlarge" | "ml.r6id.large" | "ml.r6id.xlarge" | "ml.r7i.12xlarge" | "ml.r7i.16xlarge" | "ml.r7i.24xlarge" | "ml.r7i.2xlarge" | "ml.r7i.48xlarge" | "ml.r7i.4xlarge" | "ml.r7i.8xlarge" | "ml.r7i.large" | "ml.r7i.xlarge" | "ml.t2.2xlarge" | "ml.t2.large" | "ml.t2.medium" | "ml.t2.xlarge" | "ml.t3.2xlarge" | "ml.t3.large" | "ml.t3.medium" | "ml.t3.xlarge"
Property value

InstanceTypeEnumValueResponse
, InstanceTypeEnumValueResponseArgs

Value string
Property value
Value string
Property value
value String
Property value
value string
Property value
value str
Property value
value String
Property value

NotebookInstanceStatus
, NotebookInstanceStatusArgs

Deleting
DeletingNotebookInstanceStatus enum Deleting
Failed
FailedNotebookInstanceStatus enum Failed
InService
InServiceNotebookInstanceStatus enum InService
Pending
PendingNotebookInstanceStatus enum Pending
Stopped
StoppedNotebookInstanceStatus enum Stopped
Stopping
StoppingNotebookInstanceStatus enum Stopping
Updating
UpdatingNotebookInstanceStatus enum Updating
NotebookInstanceStatusDeleting
DeletingNotebookInstanceStatus enum Deleting
NotebookInstanceStatusFailed
FailedNotebookInstanceStatus enum Failed
NotebookInstanceStatusInService
InServiceNotebookInstanceStatus enum InService
NotebookInstanceStatusPending
PendingNotebookInstanceStatus enum Pending
NotebookInstanceStatusStopped
StoppedNotebookInstanceStatus enum Stopped
NotebookInstanceStatusStopping
StoppingNotebookInstanceStatus enum Stopping
NotebookInstanceStatusUpdating
UpdatingNotebookInstanceStatus enum Updating
Deleting
DeletingNotebookInstanceStatus enum Deleting
Failed
FailedNotebookInstanceStatus enum Failed
InService
InServiceNotebookInstanceStatus enum InService
Pending
PendingNotebookInstanceStatus enum Pending
Stopped
StoppedNotebookInstanceStatus enum Stopped
Stopping
StoppingNotebookInstanceStatus enum Stopping
Updating
UpdatingNotebookInstanceStatus enum Updating
Deleting
DeletingNotebookInstanceStatus enum Deleting
Failed
FailedNotebookInstanceStatus enum Failed
InService
InServiceNotebookInstanceStatus enum InService
Pending
PendingNotebookInstanceStatus enum Pending
Stopped
StoppedNotebookInstanceStatus enum Stopped
Stopping
StoppingNotebookInstanceStatus enum Stopping
Updating
UpdatingNotebookInstanceStatus enum Updating
DELETING
DeletingNotebookInstanceStatus enum Deleting
FAILED
FailedNotebookInstanceStatus enum Failed
IN_SERVICE
InServiceNotebookInstanceStatus enum InService
PENDING
PendingNotebookInstanceStatus enum Pending
STOPPED
StoppedNotebookInstanceStatus enum Stopped
STOPPING
StoppingNotebookInstanceStatus enum Stopping
UPDATING
UpdatingNotebookInstanceStatus enum Updating
"Deleting"
DeletingNotebookInstanceStatus enum Deleting
"Failed"
FailedNotebookInstanceStatus enum Failed
"InService"
InServiceNotebookInstanceStatus enum InService
"Pending"
PendingNotebookInstanceStatus enum Pending
"Stopped"
StoppedNotebookInstanceStatus enum Stopped
"Stopping"
StoppingNotebookInstanceStatus enum Stopping
"Updating"
UpdatingNotebookInstanceStatus enum Updating

NotebookInstanceStatusEnumValue
, NotebookInstanceStatusEnumValueArgs

Value string | NotebookInstanceStatus
Property value
value String | NotebookInstanceStatus
Property value
value string | NotebookInstanceStatus
Property value
value str | NotebookInstanceStatus
Property value

NotebookInstanceStatusEnumValueResponse
, NotebookInstanceStatusEnumValueResponseArgs

Value string
Property value
Value string
Property value
value String
Property value
value string
Property value
value str
Property value
value String
Property value

SageMakerNotebookInstanceSummaryProperties
, SageMakerNotebookInstanceSummaryPropertiesArgs

Arn string
Amazon Resource Name (ARN)
AwsAccountId string
AWS Account ID
AwsProperties Pulumi.AzureNative.AwsConnector.Inputs.AwsSageMakerNotebookInstanceSummaryProperties
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 AwsSageMakerNotebookInstanceSummaryProperties
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 AwsSageMakerNotebookInstanceSummaryProperties
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 AwsSageMakerNotebookInstanceSummaryProperties
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 AwsSageMakerNotebookInstanceSummaryProperties
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

SageMakerNotebookInstanceSummaryPropertiesResponse
, SageMakerNotebookInstanceSummaryPropertiesResponseArgs

ProvisioningState This property is required. string
The status of the last operation.
Arn string
Amazon Resource Name (ARN)
AwsAccountId string
AWS Account ID
AwsProperties Pulumi.AzureNative.AwsConnector.Inputs.AwsSageMakerNotebookInstanceSummaryPropertiesResponse
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 This property is required. string
The status of the last operation.
Arn string
Amazon Resource Name (ARN)
AwsAccountId string
AWS Account ID
AwsProperties AwsSageMakerNotebookInstanceSummaryPropertiesResponse
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 This property is required. String
The status of the last operation.
arn String
Amazon Resource Name (ARN)
awsAccountId String
AWS Account ID
awsProperties AwsSageMakerNotebookInstanceSummaryPropertiesResponse
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 This property is required. string
The status of the last operation.
arn string
Amazon Resource Name (ARN)
awsAccountId string
AWS Account ID
awsProperties AwsSageMakerNotebookInstanceSummaryPropertiesResponse
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 This property is required. str
The status of the last operation.
arn str
Amazon Resource Name (ARN)
aws_account_id str
AWS Account ID
aws_properties AwsSageMakerNotebookInstanceSummaryPropertiesResponse
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 This property is required. 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.

Import

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

$ pulumi import azure-native:awsconnector:SageMakerNotebookInstanceSummary aoqcxtngqqormdennckxrrafoeh /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AwsConnector/sageMakerNotebookInstanceSummaries/{name} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0