DedicatedHost

class DedicatedHost : KotlinCustomResource

Provides an EC2 Host resource. This allows Dedicated Hosts to be allocated, modified, and released.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ec2.DedicatedHost;
import com.pulumi.aws.ec2.DedicatedHostArgs;
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 test = new DedicatedHost("test", DedicatedHostArgs.builder()
.autoPlacement("on")
.availabilityZone("us-west-2a")
.hostRecovery("on")
.instanceType("c5.18xlarge")
.build());
}
}

Import

Hosts can be imported using the host id, e.g.,

$ pulumi import aws:ec2/dedicatedHost:DedicatedHost example h-0385a99d0e4b20cbb

Properties

Link copied to clipboard
val arn: Output<String>

The ARN of the Dedicated Host.

Link copied to clipboard
val autoPlacement: Output<String>?

Indicates whether the host accepts any untargeted instance launches that match its instance type configuration, or if it only accepts Host tenancy instance launches that specify its unique host ID. Valid values: on, off. Default: on.

Link copied to clipboard

The Availability Zone in which to allocate the Dedicated Host.

Link copied to clipboard
val hostRecovery: Output<String>?

Indicates whether to enable or disable host recovery for the Dedicated Host. Valid values: on, off. Default: off.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val instanceFamily: Output<String>?

Specifies the instance family to be supported by the Dedicated Hosts. If you specify an instance family, the Dedicated Hosts support multiple instance types within that instance family. Exactly one of instance_family or instance_type must be specified.

Link copied to clipboard
val instanceType: Output<String>?

Specifies the instance type to be supported by the Dedicated Hosts. If you specify an instance type, the Dedicated Hosts support instances of the specified instance type only. Exactly one of instance_family or instance_type must be specified.

Link copied to clipboard
val outpostArn: Output<String>?

The Amazon Resource Name (ARN) of the AWS Outpost on which to allocate the Dedicated Host.

Link copied to clipboard
val ownerId: Output<String>

The ID of the AWS account that owns the Dedicated Host.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val tags: Output<Map<String, String>>?

Map of tags to assign to this resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Link copied to clipboard
val tagsAll: Output<Map<String, String>>

A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Link copied to clipboard
val urn: Output<String>