A Microsoft.AwsConnector resource
Uses Azure REST API version 2024-12-01. In version 2.x of the Azure Native provider, it used API version 2024-12-01.
Example Usage
SageMakerApps_CreateOrReplace
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var sageMakerApp = new AzureNative.AwsConnector.SageMakerApp("sageMakerApp", new()
{
Location = "wnlhgbkbelgwiwhnismoau",
Name = "Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])",
Properties = new AzureNative.AwsConnector.Inputs.SageMakerAppPropertiesArgs
{
Arn = "jlzaozimvtjn",
AwsAccountId = "lgqcehdauhqdqezactw",
AwsProperties = new AzureNative.AwsConnector.Inputs.AwsSageMakerAppPropertiesArgs
{
AppArn = "gher",
AppName = "evzkcyynebo",
AppType = AzureNative.AwsConnector.AppType.Canvas,
DomainId = "dkqxukvimzaw",
ResourceSpec = new AzureNative.AwsConnector.Inputs.ResourceSpecArgs
{
InstanceType = AzureNative.AwsConnector.ResourceSpecInstanceType.MlC512xlarge,
SageMakerImageArn = "pgukixbhpruaz",
SageMakerImageVersionArn = "juqpu",
},
Tags = new[]
{
new AzureNative.AwsConnector.Inputs.TagArgs
{
Key = "bwiejavqzxocieoyuhmayxvf",
Value = "oiirwwaoqv",
},
},
UserProfileName = "hqjtakkgaetxvrmswgdzfbnna",
},
AwsRegion = "tnogtlqasqlenkt",
AwsSourceSchema = "xshoewjusdxuy",
AwsTags =
{
{ "key2126", "vfltdeknkbeu" },
},
PublicCloudConnectorsResourceId = "vaphifjjavrvy",
PublicCloudResourceName = "ptlnykuziapscweekj",
},
ResourceGroupName = "rgsageMakerApp",
Tags =
{
{ "key3532", "z" },
},
});
});
package main
import (
awsconnector "github.com/pulumi/pulumi-azure-native-sdk/awsconnector/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := awsconnector.NewSageMakerApp(ctx, "sageMakerApp", &awsconnector.SageMakerAppArgs{
Location: pulumi.String("wnlhgbkbelgwiwhnismoau"),
Name: pulumi.String("Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])"),
Properties: &awsconnector.SageMakerAppPropertiesArgs{
Arn: pulumi.String("jlzaozimvtjn"),
AwsAccountId: pulumi.String("lgqcehdauhqdqezactw"),
AwsProperties: &awsconnector.AwsSageMakerAppPropertiesArgs{
AppArn: pulumi.String("gher"),
AppName: pulumi.String("evzkcyynebo"),
AppType: pulumi.String(awsconnector.AppTypeCanvas),
DomainId: pulumi.String("dkqxukvimzaw"),
ResourceSpec: &awsconnector.ResourceSpecArgs{
InstanceType: pulumi.String(awsconnector.ResourceSpecInstanceTypeMlC512xlarge),
SageMakerImageArn: pulumi.String("pgukixbhpruaz"),
SageMakerImageVersionArn: pulumi.String("juqpu"),
},
Tags: awsconnector.TagArray{
&awsconnector.TagArgs{
Key: pulumi.String("bwiejavqzxocieoyuhmayxvf"),
Value: pulumi.String("oiirwwaoqv"),
},
},
UserProfileName: pulumi.String("hqjtakkgaetxvrmswgdzfbnna"),
},
AwsRegion: pulumi.String("tnogtlqasqlenkt"),
AwsSourceSchema: pulumi.String("xshoewjusdxuy"),
AwsTags: pulumi.StringMap{
"key2126": pulumi.String("vfltdeknkbeu"),
},
PublicCloudConnectorsResourceId: pulumi.String("vaphifjjavrvy"),
PublicCloudResourceName: pulumi.String("ptlnykuziapscweekj"),
},
ResourceGroupName: pulumi.String("rgsageMakerApp"),
Tags: pulumi.StringMap{
"key3532": pulumi.String("z"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.awsconnector.SageMakerApp;
import com.pulumi.azurenative.awsconnector.SageMakerAppArgs;
import com.pulumi.azurenative.awsconnector.inputs.SageMakerAppPropertiesArgs;
import com.pulumi.azurenative.awsconnector.inputs.AwsSageMakerAppPropertiesArgs;
import com.pulumi.azurenative.awsconnector.inputs.ResourceSpecArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var sageMakerApp = new SageMakerApp("sageMakerApp", SageMakerAppArgs.builder()
.location("wnlhgbkbelgwiwhnismoau")
.name("Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])")
.properties(SageMakerAppPropertiesArgs.builder()
.arn("jlzaozimvtjn")
.awsAccountId("lgqcehdauhqdqezactw")
.awsProperties(AwsSageMakerAppPropertiesArgs.builder()
.appArn("gher")
.appName("evzkcyynebo")
.appType("Canvas")
.domainId("dkqxukvimzaw")
.resourceSpec(ResourceSpecArgs.builder()
.instanceType("ml.c5.12xlarge")
.sageMakerImageArn("pgukixbhpruaz")
.sageMakerImageVersionArn("juqpu")
.build())
.tags(TagArgs.builder()
.key("bwiejavqzxocieoyuhmayxvf")
.value("oiirwwaoqv")
.build())
.userProfileName("hqjtakkgaetxvrmswgdzfbnna")
.build())
.awsRegion("tnogtlqasqlenkt")
.awsSourceSchema("xshoewjusdxuy")
.awsTags(Map.of("key2126", "vfltdeknkbeu"))
.publicCloudConnectorsResourceId("vaphifjjavrvy")
.publicCloudResourceName("ptlnykuziapscweekj")
.build())
.resourceGroupName("rgsageMakerApp")
.tags(Map.of("key3532", "z"))
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const sageMakerApp = new azure_native.awsconnector.SageMakerApp("sageMakerApp", {
location: "wnlhgbkbelgwiwhnismoau",
name: "Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])",
properties: {
arn: "jlzaozimvtjn",
awsAccountId: "lgqcehdauhqdqezactw",
awsProperties: {
appArn: "gher",
appName: "evzkcyynebo",
appType: azure_native.awsconnector.AppType.Canvas,
domainId: "dkqxukvimzaw",
resourceSpec: {
instanceType: azure_native.awsconnector.ResourceSpecInstanceType.MlC512xlarge,
sageMakerImageArn: "pgukixbhpruaz",
sageMakerImageVersionArn: "juqpu",
},
tags: [{
key: "bwiejavqzxocieoyuhmayxvf",
value: "oiirwwaoqv",
}],
userProfileName: "hqjtakkgaetxvrmswgdzfbnna",
},
awsRegion: "tnogtlqasqlenkt",
awsSourceSchema: "xshoewjusdxuy",
awsTags: {
key2126: "vfltdeknkbeu",
},
publicCloudConnectorsResourceId: "vaphifjjavrvy",
publicCloudResourceName: "ptlnykuziapscweekj",
},
resourceGroupName: "rgsageMakerApp",
tags: {
key3532: "z",
},
});
import pulumi
import pulumi_azure_native as azure_native
sage_maker_app = azure_native.awsconnector.SageMakerApp("sageMakerApp",
location="wnlhgbkbelgwiwhnismoau",
name="Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])",
properties={
"arn": "jlzaozimvtjn",
"aws_account_id": "lgqcehdauhqdqezactw",
"aws_properties": {
"app_arn": "gher",
"app_name": "evzkcyynebo",
"app_type": azure_native.awsconnector.AppType.CANVAS,
"domain_id": "dkqxukvimzaw",
"resource_spec": {
"instance_type": azure_native.awsconnector.ResourceSpecInstanceType.ML_C512XLARGE,
"sage_maker_image_arn": "pgukixbhpruaz",
"sage_maker_image_version_arn": "juqpu",
},
"tags": [{
"key": "bwiejavqzxocieoyuhmayxvf",
"value": "oiirwwaoqv",
}],
"user_profile_name": "hqjtakkgaetxvrmswgdzfbnna",
},
"aws_region": "tnogtlqasqlenkt",
"aws_source_schema": "xshoewjusdxuy",
"aws_tags": {
"key2126": "vfltdeknkbeu",
},
"public_cloud_connectors_resource_id": "vaphifjjavrvy",
"public_cloud_resource_name": "ptlnykuziapscweekj",
},
resource_group_name="rgsageMakerApp",
tags={
"key3532": "z",
})
resources:
sageMakerApp:
type: azure-native:awsconnector:SageMakerApp
properties:
location: wnlhgbkbelgwiwhnismoau
name: Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])
properties:
arn: jlzaozimvtjn
awsAccountId: lgqcehdauhqdqezactw
awsProperties:
appArn: gher
appName: evzkcyynebo
appType: Canvas
domainId: dkqxukvimzaw
resourceSpec:
instanceType: ml.c5.12xlarge
sageMakerImageArn: pgukixbhpruaz
sageMakerImageVersionArn: juqpu
tags:
- key: bwiejavqzxocieoyuhmayxvf
value: oiirwwaoqv
userProfileName: hqjtakkgaetxvrmswgdzfbnna
awsRegion: tnogtlqasqlenkt
awsSourceSchema: xshoewjusdxuy
awsTags:
key2126: vfltdeknkbeu
publicCloudConnectorsResourceId: vaphifjjavrvy
publicCloudResourceName: ptlnykuziapscweekj
resourceGroupName: rgsageMakerApp
tags:
key3532: z
Create SageMakerApp Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SageMakerApp(name: string, args: SageMakerAppArgs, opts?: CustomResourceOptions);@overload
def SageMakerApp(resource_name: str,
args: SageMakerAppArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SageMakerApp(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
location: Optional[str] = None,
name: Optional[str] = None,
properties: Optional[SageMakerAppPropertiesArgs] = None,
tags: Optional[Mapping[str, str]] = None)func NewSageMakerApp(ctx *Context, name string, args SageMakerAppArgs, opts ...ResourceOption) (*SageMakerApp, error)public SageMakerApp(string name, SageMakerAppArgs args, CustomResourceOptions? opts = null)
public SageMakerApp(String name, SageMakerAppArgs args)
public SageMakerApp(String name, SageMakerAppArgs args, CustomResourceOptions options)
type: azure-native:awsconnector:SageMakerApp
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SageMakerAppArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SageMakerAppArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SageMakerAppArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SageMakerAppArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SageMakerAppArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var sageMakerAppResource = new AzureNative.AwsConnector.SageMakerApp("sageMakerAppResource", new()
{
ResourceGroupName = "string",
Location = "string",
Name = "string",
Properties = new AzureNative.AwsConnector.Inputs.SageMakerAppPropertiesArgs
{
Arn = "string",
AwsAccountId = "string",
AwsProperties = new AzureNative.AwsConnector.Inputs.AwsSageMakerAppPropertiesArgs
{
AppArn = "string",
AppName = "string",
AppType = "string",
DomainId = "string",
ResourceSpec = new AzureNative.AwsConnector.Inputs.ResourceSpecArgs
{
InstanceType = "string",
SageMakerImageArn = "string",
SageMakerImageVersionArn = "string",
},
Tags = new[]
{
new AzureNative.AwsConnector.Inputs.TagArgs
{
Key = "string",
Value = "string",
},
},
UserProfileName = "string",
},
AwsRegion = "string",
AwsSourceSchema = "string",
AwsTags =
{
{ "string", "string" },
},
PublicCloudConnectorsResourceId = "string",
PublicCloudResourceName = "string",
},
Tags =
{
{ "string", "string" },
},
});
example, err := awsconnector.NewSageMakerApp(ctx, "sageMakerAppResource", &awsconnector.SageMakerAppArgs{
ResourceGroupName: pulumi.String("string"),
Location: pulumi.String("string"),
Name: pulumi.String("string"),
Properties: &awsconnector.SageMakerAppPropertiesArgs{
Arn: pulumi.String("string"),
AwsAccountId: pulumi.String("string"),
AwsProperties: &awsconnector.AwsSageMakerAppPropertiesArgs{
AppArn: pulumi.String("string"),
AppName: pulumi.String("string"),
AppType: pulumi.String("string"),
DomainId: pulumi.String("string"),
ResourceSpec: &awsconnector.ResourceSpecArgs{
InstanceType: pulumi.String("string"),
SageMakerImageArn: pulumi.String("string"),
SageMakerImageVersionArn: pulumi.String("string"),
},
Tags: awsconnector.TagArray{
&awsconnector.TagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
UserProfileName: pulumi.String("string"),
},
AwsRegion: pulumi.String("string"),
AwsSourceSchema: pulumi.String("string"),
AwsTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
PublicCloudConnectorsResourceId: pulumi.String("string"),
PublicCloudResourceName: pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var sageMakerAppResource = new SageMakerApp("sageMakerAppResource", SageMakerAppArgs.builder()
.resourceGroupName("string")
.location("string")
.name("string")
.properties(SageMakerAppPropertiesArgs.builder()
.arn("string")
.awsAccountId("string")
.awsProperties(AwsSageMakerAppPropertiesArgs.builder()
.appArn("string")
.appName("string")
.appType("string")
.domainId("string")
.resourceSpec(ResourceSpecArgs.builder()
.instanceType("string")
.sageMakerImageArn("string")
.sageMakerImageVersionArn("string")
.build())
.tags(TagArgs.builder()
.key("string")
.value("string")
.build())
.userProfileName("string")
.build())
.awsRegion("string")
.awsSourceSchema("string")
.awsTags(Map.of("string", "string"))
.publicCloudConnectorsResourceId("string")
.publicCloudResourceName("string")
.build())
.tags(Map.of("string", "string"))
.build());
sage_maker_app_resource = azure_native.awsconnector.SageMakerApp("sageMakerAppResource",
resource_group_name="string",
location="string",
name="string",
properties={
"arn": "string",
"aws_account_id": "string",
"aws_properties": {
"app_arn": "string",
"app_name": "string",
"app_type": "string",
"domain_id": "string",
"resource_spec": {
"instance_type": "string",
"sage_maker_image_arn": "string",
"sage_maker_image_version_arn": "string",
},
"tags": [{
"key": "string",
"value": "string",
}],
"user_profile_name": "string",
},
"aws_region": "string",
"aws_source_schema": "string",
"aws_tags": {
"string": "string",
},
"public_cloud_connectors_resource_id": "string",
"public_cloud_resource_name": "string",
},
tags={
"string": "string",
})
const sageMakerAppResource = new azure_native.awsconnector.SageMakerApp("sageMakerAppResource", {
resourceGroupName: "string",
location: "string",
name: "string",
properties: {
arn: "string",
awsAccountId: "string",
awsProperties: {
appArn: "string",
appName: "string",
appType: "string",
domainId: "string",
resourceSpec: {
instanceType: "string",
sageMakerImageArn: "string",
sageMakerImageVersionArn: "string",
},
tags: [{
key: "string",
value: "string",
}],
userProfileName: "string",
},
awsRegion: "string",
awsSourceSchema: "string",
awsTags: {
string: "string",
},
publicCloudConnectorsResourceId: "string",
publicCloudResourceName: "string",
},
tags: {
string: "string",
},
});
type: azure-native:awsconnector:SageMakerApp
properties:
location: string
name: string
properties:
arn: string
awsAccountId: string
awsProperties:
appArn: string
appName: string
appType: string
domainId: string
resourceSpec:
instanceType: string
sageMakerImageArn: string
sageMakerImageVersionArn: string
tags:
- key: string
value: string
userProfileName: string
awsRegion: string
awsSourceSchema: string
awsTags:
string: string
publicCloudConnectorsResourceId: string
publicCloudResourceName: string
resourceGroupName: string
tags:
string: string
SageMakerApp Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The SageMakerApp resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Name string
- Name of SageMakerApp
- Properties
Pulumi.
Azure Native. Aws Connector. Inputs. Sage Maker App Properties - The resource-specific properties for this resource.
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Name string
- Name of SageMakerApp
- Properties
Sage
Maker App Properties Args - The resource-specific properties for this resource.
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- name String
- Name of SageMakerApp
- properties
Sage
Maker App Properties - The resource-specific properties for this resource.
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- location string
- The geo-location where the resource lives
- name string
- Name of SageMakerApp
- properties
Sage
Maker App Properties - The resource-specific properties for this resource.
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- location str
- The geo-location where the resource lives
- name str
- Name of SageMakerApp
- properties
Sage
Maker App Properties Args - The resource-specific properties for this resource.
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- name String
- Name of SageMakerApp
- properties Property Map
- The resource-specific properties for this resource.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the SageMakerApp resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- System
Data Pulumi.Azure Native. Aws Connector. Outputs. System Data Response - 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"
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- System
Data SystemData Response - 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"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- system
Data SystemData Response - 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"
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- system
Data SystemData Response - 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"
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- system_
data SystemData Response - 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"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AppType, AppTypeArgs
- Canvas
CanvasAppType enum Canvas- Jupyter
Server JupyterServerAppType enum JupyterServer- Kernel
Gateway KernelGatewayAppType enum KernelGateway- RSession
Gateway RSessionGatewayAppType enum RSessionGateway- RStudio
Server Pro RStudioServerProAppType enum RStudioServerPro
- App
Type Canvas CanvasAppType enum Canvas- App
Type Jupyter Server JupyterServerAppType enum JupyterServer- App
Type Kernel Gateway KernelGatewayAppType enum KernelGateway- App
Type RSession Gateway RSessionGatewayAppType enum RSessionGateway- App
Type RStudio Server Pro RStudioServerProAppType enum RStudioServerPro
- Canvas
CanvasAppType enum Canvas- Jupyter
Server JupyterServerAppType enum JupyterServer- Kernel
Gateway KernelGatewayAppType enum KernelGateway- RSession
Gateway RSessionGatewayAppType enum RSessionGateway- RStudio
Server Pro RStudioServerProAppType enum RStudioServerPro
- Canvas
CanvasAppType enum Canvas- Jupyter
Server JupyterServerAppType enum JupyterServer- Kernel
Gateway KernelGatewayAppType enum KernelGateway- RSession
Gateway RSessionGatewayAppType enum RSessionGateway- RStudio
Server Pro RStudioServerProAppType enum RStudioServerPro
- CANVAS
CanvasAppType enum Canvas- JUPYTER_SERVER
JupyterServerAppType enum JupyterServer- KERNEL_GATEWAY
KernelGatewayAppType enum KernelGateway- R_SESSION_GATEWAY
RSessionGatewayAppType enum RSessionGateway- R_STUDIO_SERVER_PRO
RStudioServerProAppType enum RStudioServerPro
- "Canvas"
CanvasAppType enum Canvas- "Jupyter
Server" JupyterServerAppType enum JupyterServer- "Kernel
Gateway" KernelGatewayAppType enum KernelGateway- "RSession
Gateway" RSessionGatewayAppType enum RSessionGateway- "RStudio
Server Pro" RStudioServerProAppType enum RStudioServerPro
AwsSageMakerAppProperties, AwsSageMakerAppPropertiesArgs
Definition of awsSageMakerApp- App
Arn string - The Amazon Resource Name (ARN) of the app.
- App
Name string - The name of the app.
- App
Type string | Pulumi.Azure Native. Aws Connector. App Type - The type of app.
- Domain
Id string - The domain ID.
- Resource
Spec Pulumi.Azure Native. Aws Connector. Inputs. Resource Spec - The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
-
List<Pulumi.
Azure Native. Aws Connector. Inputs. Tag> - A list of tags to apply to the app.
- User
Profile stringName - The user profile name.
- App
Arn string - The Amazon Resource Name (ARN) of the app.
- App
Name string - The name of the app.
- App
Type string | AppType - The type of app.
- Domain
Id string - The domain ID.
- Resource
Spec ResourceSpec - The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- []Tag
- A list of tags to apply to the app.
- User
Profile stringName - The user profile name.
- app
Arn String - The Amazon Resource Name (ARN) of the app.
- app
Name String - The name of the app.
- app
Type String | AppType - The type of app.
- domain
Id String - The domain ID.
- resource
Spec ResourceSpec - The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- List<Tag>
- A list of tags to apply to the app.
- user
Profile StringName - The user profile name.
- app
Arn string - The Amazon Resource Name (ARN) of the app.
- app
Name string - The name of the app.
- app
Type string | AppType - The type of app.
- domain
Id string - The domain ID.
- resource
Spec ResourceSpec - The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- Tag[]
- A list of tags to apply to the app.
- user
Profile stringName - The user profile name.
- app_
arn str - The Amazon Resource Name (ARN) of the app.
- app_
name str - The name of the app.
- app_
type str | AppType - The type of app.
- domain_
id str - The domain ID.
- resource_
spec ResourceSpec - The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- Sequence[Tag]
- A list of tags to apply to the app.
- user_
profile_ strname - The user profile name.
- app
Arn String - The Amazon Resource Name (ARN) of the app.
- app
Name String - The name of the app.
- app
Type String | "Canvas" | "JupyterServer" | "Kernel Gateway" | "RSession Gateway" | "RStudio Server Pro" - The type of app.
- domain
Id String - The domain ID.
- resource
Spec Property Map - The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- List<Property Map>
- A list of tags to apply to the app.
- user
Profile StringName - The user profile name.
AwsSageMakerAppPropertiesResponse, AwsSageMakerAppPropertiesResponseArgs
Definition of awsSageMakerApp- App
Arn string - The Amazon Resource Name (ARN) of the app.
- App
Name string - The name of the app.
- App
Type string - The type of app.
- Domain
Id string - The domain ID.
- Resource
Spec Pulumi.Azure Native. Aws Connector. Inputs. Resource Spec Response - The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
-
List<Pulumi.
Azure Native. Aws Connector. Inputs. Tag Response> - A list of tags to apply to the app.
- User
Profile stringName - The user profile name.
- App
Arn string - The Amazon Resource Name (ARN) of the app.
- App
Name string - The name of the app.
- App
Type string - The type of app.
- Domain
Id string - The domain ID.
- Resource
Spec ResourceSpec Response - The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
-
[]Tag
Response - A list of tags to apply to the app.
- User
Profile stringName - The user profile name.
- app
Arn String - The Amazon Resource Name (ARN) of the app.
- app
Name String - The name of the app.
- app
Type String - The type of app.
- domain
Id String - The domain ID.
- resource
Spec ResourceSpec Response - The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
-
List<Tag
Response> - A list of tags to apply to the app.
- user
Profile StringName - The user profile name.
- app
Arn string - The Amazon Resource Name (ARN) of the app.
- app
Name string - The name of the app.
- app
Type string - The type of app.
- domain
Id string - The domain ID.
- resource
Spec ResourceSpec Response - The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
-
Tag
Response[] - A list of tags to apply to the app.
- user
Profile stringName - The user profile name.
- app_
arn str - The Amazon Resource Name (ARN) of the app.
- app_
name str - The name of the app.
- app_
type str - The type of app.
- domain_
id str - The domain ID.
- resource_
spec ResourceSpec Response - The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
-
Sequence[Tag
Response] - A list of tags to apply to the app.
- user_
profile_ strname - The user profile name.
- app
Arn String - The Amazon Resource Name (ARN) of the app.
- app
Name String - The name of the app.
- app
Type String - The type of app.
- domain
Id String - The domain ID.
- resource
Spec Property Map - The instance type and the Amazon Resource Name (ARN) of the SageMaker image created on the instance.
- List<Property Map>
- A list of tags to apply to the app.
- user
Profile StringName - The user profile name.
ResourceSpec, ResourceSpecArgs
Definition of ResourceSpec- Instance
Type string | Pulumi.Azure Native. Aws Connector. Resource Spec Instance Type - The instance type that the image version runs on.
- Sage
Maker stringImage Arn - The ARN of the SageMaker image that the image version belongs to.
- Sage
Maker stringImage Version Arn - The ARN of the image version created on the instance.
- Instance
Type string | ResourceSpec Instance Type - The instance type that the image version runs on.
- Sage
Maker stringImage Arn - The ARN of the SageMaker image that the image version belongs to.
- Sage
Maker stringImage Version Arn - The ARN of the image version created on the instance.
- instance
Type String | ResourceSpec Instance Type - The instance type that the image version runs on.
- sage
Maker StringImage Arn - The ARN of the SageMaker image that the image version belongs to.
- sage
Maker StringImage Version Arn - The ARN of the image version created on the instance.
- instance
Type string | ResourceSpec Instance Type - The instance type that the image version runs on.
- sage
Maker stringImage Arn - The ARN of the SageMaker image that the image version belongs to.
- sage
Maker stringImage Version Arn - The ARN of the image version created on the instance.
- instance_
type str | ResourceSpec Instance Type - The instance type that the image version runs on.
- sage_
maker_ strimage_ arn - The ARN of the SageMaker image that the image version belongs to.
- sage_
maker_ strimage_ version_ arn - The ARN of the image version created on the instance.
- instance
Type String | "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.2xlarge" | "ml.g5.48xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.xlarge" | "ml.geospatial.interactive" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5d.12xlarge" | "ml.m5d.16xlarge" | "ml.m5d.24xlarge" | "ml.m5d.2xlarge" | "ml.m5d.4xlarge" | "ml.m5d.8xlarge" | "ml.m5d.large" | "ml.m5d.xlarge" | "ml.p3.16xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3dn.24xlarge" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.r5.12xlarge" | "ml.r5.16xlarge" | "ml.r5.24xlarge" | "ml.r5.2xlarge" | "ml.r5.4xlarge" | "ml.r5.8xlarge" | "ml.r5.large" | "ml.r5.xlarge" | "ml.t3.2xlarge" | "ml.t3.large" | "ml.t3.medium" | "ml.t3.micro" | "ml.t3.small" | "ml.t3.xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "system" - The instance type that the image version runs on.
- sage
Maker StringImage Arn - The ARN of the SageMaker image that the image version belongs to.
- sage
Maker StringImage Version Arn - The ARN of the image version created on the instance.
ResourceSpecInstanceType, ResourceSpecInstanceTypeArgs
- Ml
C512xlarge ml.c5.12xlargeResourceSpecInstanceType enum ml.c5.12xlarge- Ml
C518xlarge ml.c5.18xlargeResourceSpecInstanceType enum ml.c5.18xlarge- Ml
C524xlarge ml.c5.24xlargeResourceSpecInstanceType enum ml.c5.24xlarge- Ml
C52xlarge ml.c5.2xlargeResourceSpecInstanceType enum ml.c5.2xlarge- Ml
C54xlarge ml.c5.4xlargeResourceSpecInstanceType enum ml.c5.4xlarge- Ml
C59xlarge ml.c5.9xlargeResourceSpecInstanceType enum ml.c5.9xlarge- Ml
C5Large ml.c5.largeResourceSpecInstanceType enum ml.c5.large- Ml
C5Xlarge ml.c5.xlargeResourceSpecInstanceType enum ml.c5.xlarge- Ml
G4dn12xlarge ml.g4dn.12xlargeResourceSpecInstanceType enum ml.g4dn.12xlarge- Ml
G4dn16xlarge ml.g4dn.16xlargeResourceSpecInstanceType enum ml.g4dn.16xlarge- Ml
G4dn2xlarge ml.g4dn.2xlargeResourceSpecInstanceType enum ml.g4dn.2xlarge- Ml
G4dn4xlarge ml.g4dn.4xlargeResourceSpecInstanceType enum ml.g4dn.4xlarge- Ml
G4dn8xlarge ml.g4dn.8xlargeResourceSpecInstanceType enum ml.g4dn.8xlarge- Ml
G4dn Xlarge ml.g4dn.xlargeResourceSpecInstanceType enum ml.g4dn.xlarge- Ml
G512xlarge ml.g5.12xlargeResourceSpecInstanceType enum ml.g5.12xlarge- Ml
G516xlarge ml.g5.16xlargeResourceSpecInstanceType enum ml.g5.16xlarge- Ml
G524xlarge ml.g5.24xlargeResourceSpecInstanceType enum ml.g5.24xlarge- Ml
G52xlarge ml.g5.2xlargeResourceSpecInstanceType enum ml.g5.2xlarge- Ml
G548xlarge ml.g5.48xlargeResourceSpecInstanceType enum ml.g5.48xlarge- Ml
G54xlarge ml.g5.4xlargeResourceSpecInstanceType enum ml.g5.4xlarge- Ml
G58xlarge ml.g5.8xlargeResourceSpecInstanceType enum ml.g5.8xlarge- Ml
G5Xlarge ml.g5.xlargeResourceSpecInstanceType enum ml.g5.xlarge- Ml
Geospatial Interactive ml.geospatial.interactiveResourceSpecInstanceType enum ml.geospatial.interactive- Ml
M512xlarge ml.m5.12xlargeResourceSpecInstanceType enum ml.m5.12xlarge- Ml
M516xlarge ml.m5.16xlargeResourceSpecInstanceType enum ml.m5.16xlarge- Ml
M524xlarge ml.m5.24xlargeResourceSpecInstanceType enum ml.m5.24xlarge- Ml
M52xlarge ml.m5.2xlargeResourceSpecInstanceType enum ml.m5.2xlarge- Ml
M54xlarge ml.m5.4xlargeResourceSpecInstanceType enum ml.m5.4xlarge- Ml
M58xlarge ml.m5.8xlargeResourceSpecInstanceType enum ml.m5.8xlarge- Ml
M5Large ml.m5.largeResourceSpecInstanceType enum ml.m5.large- Ml
M5Xlarge ml.m5.xlargeResourceSpecInstanceType enum ml.m5.xlarge- Ml
M5d12xlarge ml.m5d.12xlargeResourceSpecInstanceType enum ml.m5d.12xlarge- Ml
M5d16xlarge ml.m5d.16xlargeResourceSpecInstanceType enum ml.m5d.16xlarge- Ml
M5d24xlarge ml.m5d.24xlargeResourceSpecInstanceType enum ml.m5d.24xlarge- Ml
M5d2xlarge ml.m5d.2xlargeResourceSpecInstanceType enum ml.m5d.2xlarge- Ml
M5d4xlarge ml.m5d.4xlargeResourceSpecInstanceType enum ml.m5d.4xlarge- Ml
M5d8xlarge ml.m5d.8xlargeResourceSpecInstanceType enum ml.m5d.8xlarge- Ml
M5d Large ml.m5d.largeResourceSpecInstanceType enum ml.m5d.large- Ml
M5d Xlarge ml.m5d.xlargeResourceSpecInstanceType enum ml.m5d.xlarge- Ml
P316xlarge ml.p3.16xlargeResourceSpecInstanceType enum ml.p3.16xlarge- Ml
P32xlarge ml.p3.2xlargeResourceSpecInstanceType enum ml.p3.2xlarge- Ml
P38xlarge ml.p3.8xlargeResourceSpecInstanceType enum ml.p3.8xlarge- Ml
P3dn24xlarge ml.p3dn.24xlargeResourceSpecInstanceType enum ml.p3dn.24xlarge- Ml
P4d24xlarge ml.p4d.24xlargeResourceSpecInstanceType enum ml.p4d.24xlarge- Ml
P4de24xlarge ml.p4de.24xlargeResourceSpecInstanceType enum ml.p4de.24xlarge- Ml
R512xlarge ml.r5.12xlargeResourceSpecInstanceType enum ml.r5.12xlarge- Ml
R516xlarge ml.r5.16xlargeResourceSpecInstanceType enum ml.r5.16xlarge- Ml
R524xlarge ml.r5.24xlargeResourceSpecInstanceType enum ml.r5.24xlarge- Ml
R52xlarge ml.r5.2xlargeResourceSpecInstanceType enum ml.r5.2xlarge- Ml
R54xlarge ml.r5.4xlargeResourceSpecInstanceType enum ml.r5.4xlarge- Ml
R58xlarge ml.r5.8xlargeResourceSpecInstanceType enum ml.r5.8xlarge- Ml
R5Large ml.r5.largeResourceSpecInstanceType enum ml.r5.large- Ml
R5Xlarge ml.r5.xlargeResourceSpecInstanceType enum ml.r5.xlarge- Ml
T32xlarge ml.t3.2xlargeResourceSpecInstanceType enum ml.t3.2xlarge- Ml
T3Large ml.t3.largeResourceSpecInstanceType enum ml.t3.large- Ml
T3Medium ml.t3.mediumResourceSpecInstanceType enum ml.t3.medium- Ml
T3Micro ml.t3.microResourceSpecInstanceType enum ml.t3.micro- Ml
T3Small ml.t3.smallResourceSpecInstanceType enum ml.t3.small- Ml
T3Xlarge ml.t3.xlargeResourceSpecInstanceType enum ml.t3.xlarge- Ml
Trn12xlarge ml.trn1.2xlargeResourceSpecInstanceType enum ml.trn1.2xlarge- Ml
Trn132xlarge ml.trn1.32xlargeResourceSpecInstanceType enum ml.trn1.32xlarge- Ml
Trn1n32xlarge ml.trn1n.32xlargeResourceSpecInstanceType enum ml.trn1n.32xlarge- System
systemResourceSpecInstanceType enum system
- Resource
Spec Instance Type Ml C512xlarge ml.c5.12xlargeResourceSpecInstanceType enum ml.c5.12xlarge- Resource
Spec Instance Type Ml C518xlarge ml.c5.18xlargeResourceSpecInstanceType enum ml.c5.18xlarge- Resource
Spec Instance Type Ml C524xlarge ml.c5.24xlargeResourceSpecInstanceType enum ml.c5.24xlarge- Resource
Spec Instance Type Ml C52xlarge ml.c5.2xlargeResourceSpecInstanceType enum ml.c5.2xlarge- Resource
Spec Instance Type Ml C54xlarge ml.c5.4xlargeResourceSpecInstanceType enum ml.c5.4xlarge- Resource
Spec Instance Type Ml C59xlarge ml.c5.9xlargeResourceSpecInstanceType enum ml.c5.9xlarge- Resource
Spec Instance Type Ml C5Large ml.c5.largeResourceSpecInstanceType enum ml.c5.large- Resource
Spec Instance Type Ml C5Xlarge ml.c5.xlargeResourceSpecInstanceType enum ml.c5.xlarge- Resource
Spec Instance Type Ml G4dn12xlarge ml.g4dn.12xlargeResourceSpecInstanceType enum ml.g4dn.12xlarge- Resource
Spec Instance Type Ml G4dn16xlarge ml.g4dn.16xlargeResourceSpecInstanceType enum ml.g4dn.16xlarge- Resource
Spec Instance Type Ml G4dn2xlarge ml.g4dn.2xlargeResourceSpecInstanceType enum ml.g4dn.2xlarge- Resource
Spec Instance Type Ml G4dn4xlarge ml.g4dn.4xlargeResourceSpecInstanceType enum ml.g4dn.4xlarge- Resource
Spec Instance Type Ml G4dn8xlarge ml.g4dn.8xlargeResourceSpecInstanceType enum ml.g4dn.8xlarge- Resource
Spec Instance Type Ml G4dn Xlarge ml.g4dn.xlargeResourceSpecInstanceType enum ml.g4dn.xlarge- Resource
Spec Instance Type Ml G512xlarge ml.g5.12xlargeResourceSpecInstanceType enum ml.g5.12xlarge- Resource
Spec Instance Type Ml G516xlarge ml.g5.16xlargeResourceSpecInstanceType enum ml.g5.16xlarge- Resource
Spec Instance Type Ml G524xlarge ml.g5.24xlargeResourceSpecInstanceType enum ml.g5.24xlarge- Resource
Spec Instance Type Ml G52xlarge ml.g5.2xlargeResourceSpecInstanceType enum ml.g5.2xlarge- Resource
Spec Instance Type Ml G548xlarge ml.g5.48xlargeResourceSpecInstanceType enum ml.g5.48xlarge- Resource
Spec Instance Type Ml G54xlarge ml.g5.4xlargeResourceSpecInstanceType enum ml.g5.4xlarge- Resource
Spec Instance Type Ml G58xlarge ml.g5.8xlargeResourceSpecInstanceType enum ml.g5.8xlarge- Resource
Spec Instance Type Ml G5Xlarge ml.g5.xlargeResourceSpecInstanceType enum ml.g5.xlarge- Resource
Spec Instance Type Ml Geospatial Interactive ml.geospatial.interactiveResourceSpecInstanceType enum ml.geospatial.interactive- Resource
Spec Instance Type Ml M512xlarge ml.m5.12xlargeResourceSpecInstanceType enum ml.m5.12xlarge- Resource
Spec Instance Type Ml M516xlarge ml.m5.16xlargeResourceSpecInstanceType enum ml.m5.16xlarge- Resource
Spec Instance Type Ml M524xlarge ml.m5.24xlargeResourceSpecInstanceType enum ml.m5.24xlarge- Resource
Spec Instance Type Ml M52xlarge ml.m5.2xlargeResourceSpecInstanceType enum ml.m5.2xlarge- Resource
Spec Instance Type Ml M54xlarge ml.m5.4xlargeResourceSpecInstanceType enum ml.m5.4xlarge- Resource
Spec Instance Type Ml M58xlarge ml.m5.8xlargeResourceSpecInstanceType enum ml.m5.8xlarge- Resource
Spec Instance Type Ml M5Large ml.m5.largeResourceSpecInstanceType enum ml.m5.large- Resource
Spec Instance Type Ml M5Xlarge ml.m5.xlargeResourceSpecInstanceType enum ml.m5.xlarge- Resource
Spec Instance Type Ml M5d12xlarge ml.m5d.12xlargeResourceSpecInstanceType enum ml.m5d.12xlarge- Resource
Spec Instance Type Ml M5d16xlarge ml.m5d.16xlargeResourceSpecInstanceType enum ml.m5d.16xlarge- Resource
Spec Instance Type Ml M5d24xlarge ml.m5d.24xlargeResourceSpecInstanceType enum ml.m5d.24xlarge- Resource
Spec Instance Type Ml M5d2xlarge ml.m5d.2xlargeResourceSpecInstanceType enum ml.m5d.2xlarge- Resource
Spec Instance Type Ml M5d4xlarge ml.m5d.4xlargeResourceSpecInstanceType enum ml.m5d.4xlarge- Resource
Spec Instance Type Ml M5d8xlarge ml.m5d.8xlargeResourceSpecInstanceType enum ml.m5d.8xlarge- Resource
Spec Instance Type Ml M5d Large ml.m5d.largeResourceSpecInstanceType enum ml.m5d.large- Resource
Spec Instance Type Ml M5d Xlarge ml.m5d.xlargeResourceSpecInstanceType enum ml.m5d.xlarge- Resource
Spec Instance Type Ml P316xlarge ml.p3.16xlargeResourceSpecInstanceType enum ml.p3.16xlarge- Resource
Spec Instance Type Ml P32xlarge ml.p3.2xlargeResourceSpecInstanceType enum ml.p3.2xlarge- Resource
Spec Instance Type Ml P38xlarge ml.p3.8xlargeResourceSpecInstanceType enum ml.p3.8xlarge- Resource
Spec Instance Type Ml P3dn24xlarge ml.p3dn.24xlargeResourceSpecInstanceType enum ml.p3dn.24xlarge- Resource
Spec Instance Type Ml P4d24xlarge ml.p4d.24xlargeResourceSpecInstanceType enum ml.p4d.24xlarge- Resource
Spec Instance Type Ml P4de24xlarge ml.p4de.24xlargeResourceSpecInstanceType enum ml.p4de.24xlarge- Resource
Spec Instance Type Ml R512xlarge ml.r5.12xlargeResourceSpecInstanceType enum ml.r5.12xlarge- Resource
Spec Instance Type Ml R516xlarge ml.r5.16xlargeResourceSpecInstanceType enum ml.r5.16xlarge- Resource
Spec Instance Type Ml R524xlarge ml.r5.24xlargeResourceSpecInstanceType enum ml.r5.24xlarge- Resource
Spec Instance Type Ml R52xlarge ml.r5.2xlargeResourceSpecInstanceType enum ml.r5.2xlarge- Resource
Spec Instance Type Ml R54xlarge ml.r5.4xlargeResourceSpecInstanceType enum ml.r5.4xlarge- Resource
Spec Instance Type Ml R58xlarge ml.r5.8xlargeResourceSpecInstanceType enum ml.r5.8xlarge- Resource
Spec Instance Type Ml R5Large ml.r5.largeResourceSpecInstanceType enum ml.r5.large- Resource
Spec Instance Type Ml R5Xlarge ml.r5.xlargeResourceSpecInstanceType enum ml.r5.xlarge- Resource
Spec Instance Type Ml T32xlarge ml.t3.2xlargeResourceSpecInstanceType enum ml.t3.2xlarge- Resource
Spec Instance Type Ml T3Large ml.t3.largeResourceSpecInstanceType enum ml.t3.large- Resource
Spec Instance Type Ml T3Medium ml.t3.mediumResourceSpecInstanceType enum ml.t3.medium- Resource
Spec Instance Type Ml T3Micro ml.t3.microResourceSpecInstanceType enum ml.t3.micro- Resource
Spec Instance Type Ml T3Small ml.t3.smallResourceSpecInstanceType enum ml.t3.small- Resource
Spec Instance Type Ml T3Xlarge ml.t3.xlargeResourceSpecInstanceType enum ml.t3.xlarge- Resource
Spec Instance Type Ml Trn12xlarge ml.trn1.2xlargeResourceSpecInstanceType enum ml.trn1.2xlarge- Resource
Spec Instance Type Ml Trn132xlarge ml.trn1.32xlargeResourceSpecInstanceType enum ml.trn1.32xlarge- Resource
Spec Instance Type Ml Trn1n32xlarge ml.trn1n.32xlargeResourceSpecInstanceType enum ml.trn1n.32xlarge- Resource
Spec Instance Type System systemResourceSpecInstanceType enum system
- Ml
C512xlarge ml.c5.12xlargeResourceSpecInstanceType enum ml.c5.12xlarge- Ml
C518xlarge ml.c5.18xlargeResourceSpecInstanceType enum ml.c5.18xlarge- Ml
C524xlarge ml.c5.24xlargeResourceSpecInstanceType enum ml.c5.24xlarge- Ml
C52xlarge ml.c5.2xlargeResourceSpecInstanceType enum ml.c5.2xlarge- Ml
C54xlarge ml.c5.4xlargeResourceSpecInstanceType enum ml.c5.4xlarge- Ml
C59xlarge ml.c5.9xlargeResourceSpecInstanceType enum ml.c5.9xlarge- Ml
C5Large ml.c5.largeResourceSpecInstanceType enum ml.c5.large- Ml
C5Xlarge ml.c5.xlargeResourceSpecInstanceType enum ml.c5.xlarge- Ml
G4dn12xlarge ml.g4dn.12xlargeResourceSpecInstanceType enum ml.g4dn.12xlarge- Ml
G4dn16xlarge ml.g4dn.16xlargeResourceSpecInstanceType enum ml.g4dn.16xlarge- Ml
G4dn2xlarge ml.g4dn.2xlargeResourceSpecInstanceType enum ml.g4dn.2xlarge- Ml
G4dn4xlarge ml.g4dn.4xlargeResourceSpecInstanceType enum ml.g4dn.4xlarge- Ml
G4dn8xlarge ml.g4dn.8xlargeResourceSpecInstanceType enum ml.g4dn.8xlarge- Ml
G4dn Xlarge ml.g4dn.xlargeResourceSpecInstanceType enum ml.g4dn.xlarge- Ml
G512xlarge ml.g5.12xlargeResourceSpecInstanceType enum ml.g5.12xlarge- Ml
G516xlarge ml.g5.16xlargeResourceSpecInstanceType enum ml.g5.16xlarge- Ml
G524xlarge ml.g5.24xlargeResourceSpecInstanceType enum ml.g5.24xlarge- Ml
G52xlarge ml.g5.2xlargeResourceSpecInstanceType enum ml.g5.2xlarge- Ml
G548xlarge ml.g5.48xlargeResourceSpecInstanceType enum ml.g5.48xlarge- Ml
G54xlarge ml.g5.4xlargeResourceSpecInstanceType enum ml.g5.4xlarge- Ml
G58xlarge ml.g5.8xlargeResourceSpecInstanceType enum ml.g5.8xlarge- Ml
G5Xlarge ml.g5.xlargeResourceSpecInstanceType enum ml.g5.xlarge- Ml
Geospatial Interactive ml.geospatial.interactiveResourceSpecInstanceType enum ml.geospatial.interactive- Ml
M512xlarge ml.m5.12xlargeResourceSpecInstanceType enum ml.m5.12xlarge- Ml
M516xlarge ml.m5.16xlargeResourceSpecInstanceType enum ml.m5.16xlarge- Ml
M524xlarge ml.m5.24xlargeResourceSpecInstanceType enum ml.m5.24xlarge- Ml
M52xlarge ml.m5.2xlargeResourceSpecInstanceType enum ml.m5.2xlarge- Ml
M54xlarge ml.m5.4xlargeResourceSpecInstanceType enum ml.m5.4xlarge- Ml
M58xlarge ml.m5.8xlargeResourceSpecInstanceType enum ml.m5.8xlarge- Ml
M5Large ml.m5.largeResourceSpecInstanceType enum ml.m5.large- Ml
M5Xlarge ml.m5.xlargeResourceSpecInstanceType enum ml.m5.xlarge- Ml
M5d12xlarge ml.m5d.12xlargeResourceSpecInstanceType enum ml.m5d.12xlarge- Ml
M5d16xlarge ml.m5d.16xlargeResourceSpecInstanceType enum ml.m5d.16xlarge- Ml
M5d24xlarge ml.m5d.24xlargeResourceSpecInstanceType enum ml.m5d.24xlarge- Ml
M5d2xlarge ml.m5d.2xlargeResourceSpecInstanceType enum ml.m5d.2xlarge- Ml
M5d4xlarge ml.m5d.4xlargeResourceSpecInstanceType enum ml.m5d.4xlarge- Ml
M5d8xlarge ml.m5d.8xlargeResourceSpecInstanceType enum ml.m5d.8xlarge- Ml
M5d Large ml.m5d.largeResourceSpecInstanceType enum ml.m5d.large- Ml
M5d Xlarge ml.m5d.xlargeResourceSpecInstanceType enum ml.m5d.xlarge- Ml
P316xlarge ml.p3.16xlargeResourceSpecInstanceType enum ml.p3.16xlarge- Ml
P32xlarge ml.p3.2xlargeResourceSpecInstanceType enum ml.p3.2xlarge- Ml
P38xlarge ml.p3.8xlargeResourceSpecInstanceType enum ml.p3.8xlarge- Ml
P3dn24xlarge ml.p3dn.24xlargeResourceSpecInstanceType enum ml.p3dn.24xlarge- Ml
P4d24xlarge ml.p4d.24xlargeResourceSpecInstanceType enum ml.p4d.24xlarge- Ml
P4de24xlarge ml.p4de.24xlargeResourceSpecInstanceType enum ml.p4de.24xlarge- Ml
R512xlarge ml.r5.12xlargeResourceSpecInstanceType enum ml.r5.12xlarge- Ml
R516xlarge ml.r5.16xlargeResourceSpecInstanceType enum ml.r5.16xlarge- Ml
R524xlarge ml.r5.24xlargeResourceSpecInstanceType enum ml.r5.24xlarge- Ml
R52xlarge ml.r5.2xlargeResourceSpecInstanceType enum ml.r5.2xlarge- Ml
R54xlarge ml.r5.4xlargeResourceSpecInstanceType enum ml.r5.4xlarge- Ml
R58xlarge ml.r5.8xlargeResourceSpecInstanceType enum ml.r5.8xlarge- Ml
R5Large ml.r5.largeResourceSpecInstanceType enum ml.r5.large- Ml
R5Xlarge ml.r5.xlargeResourceSpecInstanceType enum ml.r5.xlarge- Ml
T32xlarge ml.t3.2xlargeResourceSpecInstanceType enum ml.t3.2xlarge- Ml
T3Large ml.t3.largeResourceSpecInstanceType enum ml.t3.large- Ml
T3Medium ml.t3.mediumResourceSpecInstanceType enum ml.t3.medium- Ml
T3Micro ml.t3.microResourceSpecInstanceType enum ml.t3.micro- Ml
T3Small ml.t3.smallResourceSpecInstanceType enum ml.t3.small- Ml
T3Xlarge ml.t3.xlargeResourceSpecInstanceType enum ml.t3.xlarge- Ml
Trn12xlarge ml.trn1.2xlargeResourceSpecInstanceType enum ml.trn1.2xlarge- Ml
Trn132xlarge ml.trn1.32xlargeResourceSpecInstanceType enum ml.trn1.32xlarge- Ml
Trn1n32xlarge ml.trn1n.32xlargeResourceSpecInstanceType enum ml.trn1n.32xlarge- System
systemResourceSpecInstanceType enum system
- Ml
C512xlarge ml.c5.12xlargeResourceSpecInstanceType enum ml.c5.12xlarge- Ml
C518xlarge ml.c5.18xlargeResourceSpecInstanceType enum ml.c5.18xlarge- Ml
C524xlarge ml.c5.24xlargeResourceSpecInstanceType enum ml.c5.24xlarge- Ml
C52xlarge ml.c5.2xlargeResourceSpecInstanceType enum ml.c5.2xlarge- Ml
C54xlarge ml.c5.4xlargeResourceSpecInstanceType enum ml.c5.4xlarge- Ml
C59xlarge ml.c5.9xlargeResourceSpecInstanceType enum ml.c5.9xlarge- Ml
C5Large ml.c5.largeResourceSpecInstanceType enum ml.c5.large- Ml
C5Xlarge ml.c5.xlargeResourceSpecInstanceType enum ml.c5.xlarge- Ml
G4dn12xlarge ml.g4dn.12xlargeResourceSpecInstanceType enum ml.g4dn.12xlarge- Ml
G4dn16xlarge ml.g4dn.16xlargeResourceSpecInstanceType enum ml.g4dn.16xlarge- Ml
G4dn2xlarge ml.g4dn.2xlargeResourceSpecInstanceType enum ml.g4dn.2xlarge- Ml
G4dn4xlarge ml.g4dn.4xlargeResourceSpecInstanceType enum ml.g4dn.4xlarge- Ml
G4dn8xlarge ml.g4dn.8xlargeResourceSpecInstanceType enum ml.g4dn.8xlarge- Ml
G4dn Xlarge ml.g4dn.xlargeResourceSpecInstanceType enum ml.g4dn.xlarge- Ml
G512xlarge ml.g5.12xlargeResourceSpecInstanceType enum ml.g5.12xlarge- Ml
G516xlarge ml.g5.16xlargeResourceSpecInstanceType enum ml.g5.16xlarge- Ml
G524xlarge ml.g5.24xlargeResourceSpecInstanceType enum ml.g5.24xlarge- Ml
G52xlarge ml.g5.2xlargeResourceSpecInstanceType enum ml.g5.2xlarge- Ml
G548xlarge ml.g5.48xlargeResourceSpecInstanceType enum ml.g5.48xlarge- Ml
G54xlarge ml.g5.4xlargeResourceSpecInstanceType enum ml.g5.4xlarge- Ml
G58xlarge ml.g5.8xlargeResourceSpecInstanceType enum ml.g5.8xlarge- Ml
G5Xlarge ml.g5.xlargeResourceSpecInstanceType enum ml.g5.xlarge- Ml
Geospatial Interactive ml.geospatial.interactiveResourceSpecInstanceType enum ml.geospatial.interactive- Ml
M512xlarge ml.m5.12xlargeResourceSpecInstanceType enum ml.m5.12xlarge- Ml
M516xlarge ml.m5.16xlargeResourceSpecInstanceType enum ml.m5.16xlarge- Ml
M524xlarge ml.m5.24xlargeResourceSpecInstanceType enum ml.m5.24xlarge- Ml
M52xlarge ml.m5.2xlargeResourceSpecInstanceType enum ml.m5.2xlarge- Ml
M54xlarge ml.m5.4xlargeResourceSpecInstanceType enum ml.m5.4xlarge- Ml
M58xlarge ml.m5.8xlargeResourceSpecInstanceType enum ml.m5.8xlarge- Ml
M5Large ml.m5.largeResourceSpecInstanceType enum ml.m5.large- Ml
M5Xlarge ml.m5.xlargeResourceSpecInstanceType enum ml.m5.xlarge- Ml
M5d12xlarge ml.m5d.12xlargeResourceSpecInstanceType enum ml.m5d.12xlarge- Ml
M5d16xlarge ml.m5d.16xlargeResourceSpecInstanceType enum ml.m5d.16xlarge- Ml
M5d24xlarge ml.m5d.24xlargeResourceSpecInstanceType enum ml.m5d.24xlarge- Ml
M5d2xlarge ml.m5d.2xlargeResourceSpecInstanceType enum ml.m5d.2xlarge- Ml
M5d4xlarge ml.m5d.4xlargeResourceSpecInstanceType enum ml.m5d.4xlarge- Ml
M5d8xlarge ml.m5d.8xlargeResourceSpecInstanceType enum ml.m5d.8xlarge- Ml
M5d Large ml.m5d.largeResourceSpecInstanceType enum ml.m5d.large- Ml
M5d Xlarge ml.m5d.xlargeResourceSpecInstanceType enum ml.m5d.xlarge- Ml
P316xlarge ml.p3.16xlargeResourceSpecInstanceType enum ml.p3.16xlarge- Ml
P32xlarge ml.p3.2xlargeResourceSpecInstanceType enum ml.p3.2xlarge- Ml
P38xlarge ml.p3.8xlargeResourceSpecInstanceType enum ml.p3.8xlarge- Ml
P3dn24xlarge ml.p3dn.24xlargeResourceSpecInstanceType enum ml.p3dn.24xlarge- Ml
P4d24xlarge ml.p4d.24xlargeResourceSpecInstanceType enum ml.p4d.24xlarge- Ml
P4de24xlarge ml.p4de.24xlargeResourceSpecInstanceType enum ml.p4de.24xlarge- Ml
R512xlarge ml.r5.12xlargeResourceSpecInstanceType enum ml.r5.12xlarge- Ml
R516xlarge ml.r5.16xlargeResourceSpecInstanceType enum ml.r5.16xlarge- Ml
R524xlarge ml.r5.24xlargeResourceSpecInstanceType enum ml.r5.24xlarge- Ml
R52xlarge ml.r5.2xlargeResourceSpecInstanceType enum ml.r5.2xlarge- Ml
R54xlarge ml.r5.4xlargeResourceSpecInstanceType enum ml.r5.4xlarge- Ml
R58xlarge ml.r5.8xlargeResourceSpecInstanceType enum ml.r5.8xlarge- Ml
R5Large ml.r5.largeResourceSpecInstanceType enum ml.r5.large- Ml
R5Xlarge ml.r5.xlargeResourceSpecInstanceType enum ml.r5.xlarge- Ml
T32xlarge ml.t3.2xlargeResourceSpecInstanceType enum ml.t3.2xlarge- Ml
T3Large ml.t3.largeResourceSpecInstanceType enum ml.t3.large- Ml
T3Medium ml.t3.mediumResourceSpecInstanceType enum ml.t3.medium- Ml
T3Micro ml.t3.microResourceSpecInstanceType enum ml.t3.micro- Ml
T3Small ml.t3.smallResourceSpecInstanceType enum ml.t3.small- Ml
T3Xlarge ml.t3.xlargeResourceSpecInstanceType enum ml.t3.xlarge- Ml
Trn12xlarge ml.trn1.2xlargeResourceSpecInstanceType enum ml.trn1.2xlarge- Ml
Trn132xlarge ml.trn1.32xlargeResourceSpecInstanceType enum ml.trn1.32xlarge- Ml
Trn1n32xlarge ml.trn1n.32xlargeResourceSpecInstanceType enum ml.trn1n.32xlarge- System
systemResourceSpecInstanceType enum system
- ML_C512XLARGE
ml.c5.12xlargeResourceSpecInstanceType enum ml.c5.12xlarge- ML_C518XLARGE
ml.c5.18xlargeResourceSpecInstanceType enum ml.c5.18xlarge- ML_C524XLARGE
ml.c5.24xlargeResourceSpecInstanceType enum ml.c5.24xlarge- ML_C52XLARGE
ml.c5.2xlargeResourceSpecInstanceType enum ml.c5.2xlarge- ML_C54XLARGE
ml.c5.4xlargeResourceSpecInstanceType enum ml.c5.4xlarge- ML_C59XLARGE
ml.c5.9xlargeResourceSpecInstanceType enum ml.c5.9xlarge- ML_C5_LARGE
ml.c5.largeResourceSpecInstanceType enum ml.c5.large- ML_C5_XLARGE
ml.c5.xlargeResourceSpecInstanceType enum ml.c5.xlarge- ML_G4DN12XLARGE
ml.g4dn.12xlargeResourceSpecInstanceType enum ml.g4dn.12xlarge- ML_G4DN16XLARGE
ml.g4dn.16xlargeResourceSpecInstanceType enum ml.g4dn.16xlarge- ML_G4DN2XLARGE
ml.g4dn.2xlargeResourceSpecInstanceType enum ml.g4dn.2xlarge- ML_G4DN4XLARGE
ml.g4dn.4xlargeResourceSpecInstanceType enum ml.g4dn.4xlarge- ML_G4DN8XLARGE
ml.g4dn.8xlargeResourceSpecInstanceType enum ml.g4dn.8xlarge- ML_G4DN_XLARGE
ml.g4dn.xlargeResourceSpecInstanceType enum ml.g4dn.xlarge- ML_G512XLARGE
ml.g5.12xlargeResourceSpecInstanceType enum ml.g5.12xlarge- ML_G516XLARGE
ml.g5.16xlargeResourceSpecInstanceType enum ml.g5.16xlarge- ML_G524XLARGE
ml.g5.24xlargeResourceSpecInstanceType enum ml.g5.24xlarge- ML_G52XLARGE
ml.g5.2xlargeResourceSpecInstanceType enum ml.g5.2xlarge- ML_G548XLARGE
ml.g5.48xlargeResourceSpecInstanceType enum ml.g5.48xlarge- ML_G54XLARGE
ml.g5.4xlargeResourceSpecInstanceType enum ml.g5.4xlarge- ML_G58XLARGE
ml.g5.8xlargeResourceSpecInstanceType enum ml.g5.8xlarge- ML_G5_XLARGE
ml.g5.xlargeResourceSpecInstanceType enum ml.g5.xlarge- ML_GEOSPATIAL_INTERACTIVE
ml.geospatial.interactiveResourceSpecInstanceType enum ml.geospatial.interactive- ML_M512XLARGE
ml.m5.12xlargeResourceSpecInstanceType enum ml.m5.12xlarge- ML_M516XLARGE
ml.m5.16xlargeResourceSpecInstanceType enum ml.m5.16xlarge- ML_M524XLARGE
ml.m5.24xlargeResourceSpecInstanceType enum ml.m5.24xlarge- ML_M52XLARGE
ml.m5.2xlargeResourceSpecInstanceType enum ml.m5.2xlarge- ML_M54XLARGE
ml.m5.4xlargeResourceSpecInstanceType enum ml.m5.4xlarge- ML_M58XLARGE
ml.m5.8xlargeResourceSpecInstanceType enum ml.m5.8xlarge- ML_M5_LARGE
ml.m5.largeResourceSpecInstanceType enum ml.m5.large- ML_M5_XLARGE
ml.m5.xlargeResourceSpecInstanceType enum ml.m5.xlarge- ML_M5D12XLARGE
ml.m5d.12xlargeResourceSpecInstanceType enum ml.m5d.12xlarge- ML_M5D16XLARGE
ml.m5d.16xlargeResourceSpecInstanceType enum ml.m5d.16xlarge- ML_M5D24XLARGE
ml.m5d.24xlargeResourceSpecInstanceType enum ml.m5d.24xlarge- ML_M5D2XLARGE
ml.m5d.2xlargeResourceSpecInstanceType enum ml.m5d.2xlarge- ML_M5D4XLARGE
ml.m5d.4xlargeResourceSpecInstanceType enum ml.m5d.4xlarge- ML_M5D8XLARGE
ml.m5d.8xlargeResourceSpecInstanceType enum ml.m5d.8xlarge- ML_M5D_LARGE
ml.m5d.largeResourceSpecInstanceType enum ml.m5d.large- ML_M5D_XLARGE
ml.m5d.xlargeResourceSpecInstanceType enum ml.m5d.xlarge- ML_P316XLARGE
ml.p3.16xlargeResourceSpecInstanceType enum ml.p3.16xlarge- ML_P32XLARGE
ml.p3.2xlargeResourceSpecInstanceType enum ml.p3.2xlarge- ML_P38XLARGE
ml.p3.8xlargeResourceSpecInstanceType enum ml.p3.8xlarge- ML_P3DN24XLARGE
ml.p3dn.24xlargeResourceSpecInstanceType enum ml.p3dn.24xlarge- ML_P4D24XLARGE
ml.p4d.24xlargeResourceSpecInstanceType enum ml.p4d.24xlarge- ML_P4DE24XLARGE
ml.p4de.24xlargeResourceSpecInstanceType enum ml.p4de.24xlarge- ML_R512XLARGE
ml.r5.12xlargeResourceSpecInstanceType enum ml.r5.12xlarge- ML_R516XLARGE
ml.r5.16xlargeResourceSpecInstanceType enum ml.r5.16xlarge- ML_R524XLARGE
ml.r5.24xlargeResourceSpecInstanceType enum ml.r5.24xlarge- ML_R52XLARGE
ml.r5.2xlargeResourceSpecInstanceType enum ml.r5.2xlarge- ML_R54XLARGE
ml.r5.4xlargeResourceSpecInstanceType enum ml.r5.4xlarge- ML_R58XLARGE
ml.r5.8xlargeResourceSpecInstanceType enum ml.r5.8xlarge- ML_R5_LARGE
ml.r5.largeResourceSpecInstanceType enum ml.r5.large- ML_R5_XLARGE
ml.r5.xlargeResourceSpecInstanceType enum ml.r5.xlarge- ML_T32XLARGE
ml.t3.2xlargeResourceSpecInstanceType enum ml.t3.2xlarge- ML_T3_LARGE
ml.t3.largeResourceSpecInstanceType enum ml.t3.large- ML_T3_MEDIUM
ml.t3.mediumResourceSpecInstanceType enum ml.t3.medium- ML_T3_MICRO
ml.t3.microResourceSpecInstanceType enum ml.t3.micro- ML_T3_SMALL
ml.t3.smallResourceSpecInstanceType enum ml.t3.small- ML_T3_XLARGE
ml.t3.xlargeResourceSpecInstanceType enum ml.t3.xlarge- ML_TRN12XLARGE
ml.trn1.2xlargeResourceSpecInstanceType enum ml.trn1.2xlarge- ML_TRN132XLARGE
ml.trn1.32xlargeResourceSpecInstanceType enum ml.trn1.32xlarge- ML_TRN1N32XLARGE
ml.trn1n.32xlargeResourceSpecInstanceType enum ml.trn1n.32xlarge- SYSTEM
systemResourceSpecInstanceType enum system
- "ml.c5.12xlarge"
ml.c5.12xlargeResourceSpecInstanceType enum ml.c5.12xlarge- "ml.c5.18xlarge"
ml.c5.18xlargeResourceSpecInstanceType enum ml.c5.18xlarge- "ml.c5.24xlarge"
ml.c5.24xlargeResourceSpecInstanceType enum ml.c5.24xlarge- "ml.c5.2xlarge"
ml.c5.2xlargeResourceSpecInstanceType enum ml.c5.2xlarge- "ml.c5.4xlarge"
ml.c5.4xlargeResourceSpecInstanceType enum ml.c5.4xlarge- "ml.c5.9xlarge"
ml.c5.9xlargeResourceSpecInstanceType enum ml.c5.9xlarge- "ml.c5.large"
ml.c5.largeResourceSpecInstanceType enum ml.c5.large- "ml.c5.xlarge"
ml.c5.xlargeResourceSpecInstanceType enum ml.c5.xlarge- "ml.g4dn.12xlarge"
ml.g4dn.12xlargeResourceSpecInstanceType enum ml.g4dn.12xlarge- "ml.g4dn.16xlarge"
ml.g4dn.16xlargeResourceSpecInstanceType enum ml.g4dn.16xlarge- "ml.g4dn.2xlarge"
ml.g4dn.2xlargeResourceSpecInstanceType enum ml.g4dn.2xlarge- "ml.g4dn.4xlarge"
ml.g4dn.4xlargeResourceSpecInstanceType enum ml.g4dn.4xlarge- "ml.g4dn.8xlarge"
ml.g4dn.8xlargeResourceSpecInstanceType enum ml.g4dn.8xlarge- "ml.g4dn.xlarge"
ml.g4dn.xlargeResourceSpecInstanceType enum ml.g4dn.xlarge- "ml.g5.12xlarge"
ml.g5.12xlargeResourceSpecInstanceType enum ml.g5.12xlarge- "ml.g5.16xlarge"
ml.g5.16xlargeResourceSpecInstanceType enum ml.g5.16xlarge- "ml.g5.24xlarge"
ml.g5.24xlargeResourceSpecInstanceType enum ml.g5.24xlarge- "ml.g5.2xlarge"
ml.g5.2xlargeResourceSpecInstanceType enum ml.g5.2xlarge- "ml.g5.48xlarge"
ml.g5.48xlargeResourceSpecInstanceType enum ml.g5.48xlarge- "ml.g5.4xlarge"
ml.g5.4xlargeResourceSpecInstanceType enum ml.g5.4xlarge- "ml.g5.8xlarge"
ml.g5.8xlargeResourceSpecInstanceType enum ml.g5.8xlarge- "ml.g5.xlarge"
ml.g5.xlargeResourceSpecInstanceType enum ml.g5.xlarge- "ml.geospatial.interactive"
ml.geospatial.interactiveResourceSpecInstanceType enum ml.geospatial.interactive- "ml.m5.12xlarge"
ml.m5.12xlargeResourceSpecInstanceType enum ml.m5.12xlarge- "ml.m5.16xlarge"
ml.m5.16xlargeResourceSpecInstanceType enum ml.m5.16xlarge- "ml.m5.24xlarge"
ml.m5.24xlargeResourceSpecInstanceType enum ml.m5.24xlarge- "ml.m5.2xlarge"
ml.m5.2xlargeResourceSpecInstanceType enum ml.m5.2xlarge- "ml.m5.4xlarge"
ml.m5.4xlargeResourceSpecInstanceType enum ml.m5.4xlarge- "ml.m5.8xlarge"
ml.m5.8xlargeResourceSpecInstanceType enum ml.m5.8xlarge- "ml.m5.large"
ml.m5.largeResourceSpecInstanceType enum ml.m5.large- "ml.m5.xlarge"
ml.m5.xlargeResourceSpecInstanceType enum ml.m5.xlarge- "ml.m5d.12xlarge"
ml.m5d.12xlargeResourceSpecInstanceType enum ml.m5d.12xlarge- "ml.m5d.16xlarge"
ml.m5d.16xlargeResourceSpecInstanceType enum ml.m5d.16xlarge- "ml.m5d.24xlarge"
ml.m5d.24xlargeResourceSpecInstanceType enum ml.m5d.24xlarge- "ml.m5d.2xlarge"
ml.m5d.2xlargeResourceSpecInstanceType enum ml.m5d.2xlarge- "ml.m5d.4xlarge"
ml.m5d.4xlargeResourceSpecInstanceType enum ml.m5d.4xlarge- "ml.m5d.8xlarge"
ml.m5d.8xlargeResourceSpecInstanceType enum ml.m5d.8xlarge- "ml.m5d.large"
ml.m5d.largeResourceSpecInstanceType enum ml.m5d.large- "ml.m5d.xlarge"
ml.m5d.xlargeResourceSpecInstanceType enum ml.m5d.xlarge- "ml.p3.16xlarge"
ml.p3.16xlargeResourceSpecInstanceType enum ml.p3.16xlarge- "ml.p3.2xlarge"
ml.p3.2xlargeResourceSpecInstanceType enum ml.p3.2xlarge- "ml.p3.8xlarge"
ml.p3.8xlargeResourceSpecInstanceType enum ml.p3.8xlarge- "ml.p3dn.24xlarge"
ml.p3dn.24xlargeResourceSpecInstanceType enum ml.p3dn.24xlarge- "ml.p4d.24xlarge"
ml.p4d.24xlargeResourceSpecInstanceType enum ml.p4d.24xlarge- "ml.p4de.24xlarge"
ml.p4de.24xlargeResourceSpecInstanceType enum ml.p4de.24xlarge- "ml.r5.12xlarge"
ml.r5.12xlargeResourceSpecInstanceType enum ml.r5.12xlarge- "ml.r5.16xlarge"
ml.r5.16xlargeResourceSpecInstanceType enum ml.r5.16xlarge- "ml.r5.24xlarge"
ml.r5.24xlargeResourceSpecInstanceType enum ml.r5.24xlarge- "ml.r5.2xlarge"
ml.r5.2xlargeResourceSpecInstanceType enum ml.r5.2xlarge- "ml.r5.4xlarge"
ml.r5.4xlargeResourceSpecInstanceType enum ml.r5.4xlarge- "ml.r5.8xlarge"
ml.r5.8xlargeResourceSpecInstanceType enum ml.r5.8xlarge- "ml.r5.large"
ml.r5.largeResourceSpecInstanceType enum ml.r5.large- "ml.r5.xlarge"
ml.r5.xlargeResourceSpecInstanceType enum ml.r5.xlarge- "ml.t3.2xlarge"
ml.t3.2xlargeResourceSpecInstanceType enum ml.t3.2xlarge- "ml.t3.large"
ml.t3.largeResourceSpecInstanceType enum ml.t3.large- "ml.t3.medium"
ml.t3.mediumResourceSpecInstanceType enum ml.t3.medium- "ml.t3.micro"
ml.t3.microResourceSpecInstanceType enum ml.t3.micro- "ml.t3.small"
ml.t3.smallResourceSpecInstanceType enum ml.t3.small- "ml.t3.xlarge"
ml.t3.xlargeResourceSpecInstanceType enum ml.t3.xlarge- "ml.trn1.2xlarge"
ml.trn1.2xlargeResourceSpecInstanceType enum ml.trn1.2xlarge- "ml.trn1.32xlarge"
ml.trn1.32xlargeResourceSpecInstanceType enum ml.trn1.32xlarge- "ml.trn1n.32xlarge"
ml.trn1n.32xlargeResourceSpecInstanceType enum ml.trn1n.32xlarge- "system"
systemResourceSpecInstanceType enum system
ResourceSpecResponse, ResourceSpecResponseArgs
Definition of ResourceSpec- Instance
Type string - The instance type that the image version runs on.
- Sage
Maker stringImage Arn - The ARN of the SageMaker image that the image version belongs to.
- Sage
Maker stringImage Version Arn - The ARN of the image version created on the instance.
- Instance
Type string - The instance type that the image version runs on.
- Sage
Maker stringImage Arn - The ARN of the SageMaker image that the image version belongs to.
- Sage
Maker stringImage Version Arn - The ARN of the image version created on the instance.
- instance
Type String - The instance type that the image version runs on.
- sage
Maker StringImage Arn - The ARN of the SageMaker image that the image version belongs to.
- sage
Maker StringImage Version Arn - The ARN of the image version created on the instance.
- instance
Type string - The instance type that the image version runs on.
- sage
Maker stringImage Arn - The ARN of the SageMaker image that the image version belongs to.
- sage
Maker stringImage Version Arn - The ARN of the image version created on the instance.
- instance_
type str - The instance type that the image version runs on.
- sage_
maker_ strimage_ arn - The ARN of the SageMaker image that the image version belongs to.
- sage_
maker_ strimage_ version_ arn - The ARN of the image version created on the instance.
- instance
Type String - The instance type that the image version runs on.
- sage
Maker StringImage Arn - The ARN of the SageMaker image that the image version belongs to.
- sage
Maker StringImage Version Arn - The ARN of the image version created on the instance.
SageMakerAppProperties, SageMakerAppPropertiesArgs
Definition of SageMakerApp- Arn string
- Amazon Resource Name (ARN)
- Aws
Account stringId - AWS Account ID
- Aws
Properties Pulumi.Azure Native. Aws Connector. Inputs. Aws Sage Maker App Properties - AWS Properties
- Aws
Region string - AWS Region
- Aws
Source stringSchema - AWS Source Schema
- Dictionary<string, string>
- AWS Tags
- Public
Cloud stringConnectors Resource Id - Public Cloud Connectors Resource ID
- Public
Cloud stringResource Name - Public Cloud Resource Name
- Arn string
- Amazon Resource Name (ARN)
- Aws
Account stringId - AWS Account ID
- Aws
Properties AwsSage Maker App Properties - AWS Properties
- Aws
Region string - AWS Region
- Aws
Source stringSchema - AWS Source Schema
- map[string]string
- AWS Tags
- Public
Cloud stringConnectors Resource Id - Public Cloud Connectors Resource ID
- Public
Cloud stringResource Name - Public Cloud Resource Name
- arn String
- Amazon Resource Name (ARN)
- aws
Account StringId - AWS Account ID
- aws
Properties AwsSage Maker App Properties - AWS Properties
- aws
Region String - AWS Region
- aws
Source StringSchema - AWS Source Schema
- Map<String,String>
- AWS Tags
- public
Cloud StringConnectors Resource Id - Public Cloud Connectors Resource ID
- public
Cloud StringResource Name - Public Cloud Resource Name
- arn string
- Amazon Resource Name (ARN)
- aws
Account stringId - AWS Account ID
- aws
Properties AwsSage Maker App Properties - AWS Properties
- aws
Region string - AWS Region
- aws
Source stringSchema - AWS Source Schema
- {[key: string]: string}
- AWS Tags
- public
Cloud stringConnectors Resource Id - Public Cloud Connectors Resource ID
- public
Cloud stringResource Name - Public Cloud Resource Name
- arn str
- Amazon Resource Name (ARN)
- aws_
account_ strid - AWS Account ID
- aws_
properties AwsSage Maker App Properties - AWS Properties
- aws_
region str - AWS Region
- aws_
source_ strschema - AWS Source Schema
- Mapping[str, str]
- AWS Tags
- public_
cloud_ strconnectors_ resource_ id - Public Cloud Connectors Resource ID
- public_
cloud_ strresource_ name - Public Cloud Resource Name
- arn String
- Amazon Resource Name (ARN)
- aws
Account StringId - AWS Account ID
- aws
Properties Property Map - AWS Properties
- aws
Region String - AWS Region
- aws
Source StringSchema - AWS Source Schema
- Map<String>
- AWS Tags
- public
Cloud StringConnectors Resource Id - Public Cloud Connectors Resource ID
- public
Cloud StringResource Name - Public Cloud Resource Name
SageMakerAppPropertiesResponse, SageMakerAppPropertiesResponseArgs
Definition of SageMakerApp- Provisioning
State string - The status of the last operation.
- Arn string
- Amazon Resource Name (ARN)
- Aws
Account stringId - AWS Account ID
- Aws
Properties Pulumi.Azure Native. Aws Connector. Inputs. Aws Sage Maker App Properties Response - AWS Properties
- Aws
Region string - AWS Region
- Aws
Source stringSchema - AWS Source Schema
- Dictionary<string, string>
- AWS Tags
- Public
Cloud stringConnectors Resource Id - Public Cloud Connectors Resource ID
- Public
Cloud stringResource Name - Public Cloud Resource Name
- Provisioning
State string - The status of the last operation.
- Arn string
- Amazon Resource Name (ARN)
- Aws
Account stringId - AWS Account ID
- Aws
Properties AwsSage Maker App Properties Response - AWS Properties
- Aws
Region string - AWS Region
- Aws
Source stringSchema - AWS Source Schema
- map[string]string
- AWS Tags
- Public
Cloud stringConnectors Resource Id - Public Cloud Connectors Resource ID
- Public
Cloud stringResource Name - Public Cloud Resource Name
- provisioning
State String - The status of the last operation.
- arn String
- Amazon Resource Name (ARN)
- aws
Account StringId - AWS Account ID
- aws
Properties AwsSage Maker App Properties Response - AWS Properties
- aws
Region String - AWS Region
- aws
Source StringSchema - AWS Source Schema
- Map<String,String>
- AWS Tags
- public
Cloud StringConnectors Resource Id - Public Cloud Connectors Resource ID
- public
Cloud StringResource Name - Public Cloud Resource Name
- provisioning
State string - The status of the last operation.
- arn string
- Amazon Resource Name (ARN)
- aws
Account stringId - AWS Account ID
- aws
Properties AwsSage Maker App Properties Response - AWS Properties
- aws
Region string - AWS Region
- aws
Source stringSchema - AWS Source Schema
- {[key: string]: string}
- AWS Tags
- public
Cloud stringConnectors Resource Id - Public Cloud Connectors Resource ID
- public
Cloud stringResource Name - Public Cloud Resource Name
- provisioning_
state str - The status of the last operation.
- arn str
- Amazon Resource Name (ARN)
- aws_
account_ strid - AWS Account ID
- aws_
properties AwsSage Maker App Properties Response - AWS Properties
- aws_
region str - AWS Region
- aws_
source_ strschema - AWS Source Schema
- Mapping[str, str]
- AWS Tags
- public_
cloud_ strconnectors_ resource_ id - Public Cloud Connectors Resource ID
- public_
cloud_ strresource_ name - Public Cloud Resource Name
- provisioning
State String - The status of the last operation.
- arn String
- Amazon Resource Name (ARN)
- aws
Account StringId - AWS Account ID
- aws
Properties Property Map - AWS Properties
- aws
Region String - AWS Region
- aws
Source StringSchema - AWS Source Schema
- Map<String>
- AWS Tags
- public
Cloud StringConnectors Resource Id - Public Cloud Connectors Resource ID
- public
Cloud StringResource Name - Public Cloud Resource Name
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of the resource.- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Tag, TagArgs
Definition of Tag- Key string
- The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- Value string
- The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- Key string
- The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- Value string
- The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- key String
- The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- value String
- The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- key string
- The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- value string
- The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- key str
- The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- value str
- The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- key String
- The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- value String
- The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
TagResponse, TagResponseArgs
Definition of Tag- Key string
- The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- Value string
- The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- Key string
- The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- Value string
- The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- key String
- The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- value String
- The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- key string
- The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- value string
- The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- key str
- The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- value str
- The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- key String
- The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
- value String
- The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:awsconnector:SageMakerApp bqmsonklppqgjvicxnpire /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AwsConnector/sageMakerApps/{name}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
