Alias

class Alias : KotlinCustomResource

Provides a GameLift Alias resource.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.gamelift.Alias;
import com.pulumi.aws.gamelift.AliasArgs;
import com.pulumi.aws.gamelift.inputs.AliasRoutingStrategyArgs;
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 Alias("example", AliasArgs.builder()
.description("Example Description")
.routingStrategy(AliasRoutingStrategyArgs.builder()
.message("Example Message")
.type("TERMINAL")
.build())
.build());
}
}

Import

GameLift Aliases can be imported using the ID, e.g.,

$ pulumi import aws:gamelift/alias:Alias example <alias-id>

Properties

Link copied to clipboard
val arn: Output<String>

Alias ARN.

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

Description of the alias.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<String>

Name of the alias.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Specifies the fleet and/or routing type to use for the alias.

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

Key-value map of resource tags. .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>