Device

class Device : KotlinCustomResource

Provides a SageMaker Device resource.

Example Usage

Basic usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.sagemaker.Device;
import com.pulumi.aws.sagemaker.DeviceArgs;
import com.pulumi.aws.sagemaker.inputs.DeviceDeviceArgs;
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 example = new Device("example", DeviceArgs.builder()
.deviceFleetName(aws_sagemaker_device_fleet.example().device_fleet_name())
.device(DeviceDeviceArgs.builder()
.deviceName("example")
.build())
.build());
}
}

Import

SageMaker Devices can be imported using the device-fleet-name/device-name, e.g.,

$ pulumi import aws:sagemaker/device:Device example my-fleet/my-device

Properties

Link copied to clipboard
val agentVersion: Output<String>
Link copied to clipboard
val arn: Output<String>

The Amazon Resource Name (ARN) assigned by AWS to this Device.

Link copied to clipboard
val device: Output<DeviceDevice>

The device to register with SageMaker Edge Manager. See Device details below.

Link copied to clipboard
val deviceFleetName: Output<String>

The name of the Device Fleet.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val urn: Output<String>