KxScalingGroup

class KxScalingGroup : KotlinCustomResource

Resource for managing an AWS FinSpace Kx Scaling Group.

Example Usage

Basic Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.finspace.KxScalingGroup("example", {
name: "my-tf-kx-scalinggroup",
environmentId: exampleAwsFinspaceKxEnvironment.id,
availabilityZoneId: "use1-az2",
hostType: "kx.sg.4xlarge",
});
import pulumi
import pulumi_aws as aws
example = aws.finspace.KxScalingGroup("example",
name="my-tf-kx-scalinggroup",
environment_id=example_aws_finspace_kx_environment["id"],
availability_zone_id="use1-az2",
host_type="kx.sg.4xlarge")
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var example = new Aws.FinSpace.KxScalingGroup("example", new()
{
Name = "my-tf-kx-scalinggroup",
EnvironmentId = exampleAwsFinspaceKxEnvironment.Id,
AvailabilityZoneId = "use1-az2",
HostType = "kx.sg.4xlarge",
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/finspace"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := finspace.NewKxScalingGroup(ctx, "example", &finspace.KxScalingGroupArgs{
Name: pulumi.String("my-tf-kx-scalinggroup"),
EnvironmentId: pulumi.Any(exampleAwsFinspaceKxEnvironment.Id),
AvailabilityZoneId: pulumi.String("use1-az2"),
HostType: pulumi.String("kx.sg.4xlarge"),
})
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.aws.finspace.KxScalingGroup;
import com.pulumi.aws.finspace.KxScalingGroupArgs;
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 KxScalingGroup("example", KxScalingGroupArgs.builder()
.name("my-tf-kx-scalinggroup")
.environmentId(exampleAwsFinspaceKxEnvironment.id())
.availabilityZoneId("use1-az2")
.hostType("kx.sg.4xlarge")
.build());
}
}
resources:
example:
type: aws:finspace:KxScalingGroup
properties:
name: my-tf-kx-scalinggroup
environmentId: ${exampleAwsFinspaceKxEnvironment.id}
availabilityZoneId: use1-az2
hostType: kx.sg.4xlarge

Import

Using pulumi import, import an AWS FinSpace Kx Scaling Group using the id (environment ID and scaling group name, comma-delimited). For example:

$ pulumi import aws:finspace/kxScalingGroup:KxScalingGroup example n3ceo7wqxoxcti5tujqwzs,my-tf-kx-scalinggroup

Properties

Link copied to clipboard
val arn: Output<String>

Amazon Resource Name (ARN) identifier of the KX Scaling Group.

Link copied to clipboard

The availability zone identifiers for the requested regions.

Link copied to clipboard
val clusters: Output<List<String>>

The list of Managed kdb clusters that are currently active in the given scaling group.

Link copied to clipboard

The timestamp at which the scaling group was created in FinSpace. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.

Link copied to clipboard
val environmentId: Output<String>

A unique identifier for the kdb environment, where you want to create the scaling group.

Link copied to clipboard
val hostType: Output<String>

The memory and CPU capabilities of the scaling group host on which FinSpace Managed kdb clusters will be placed. The following arguments are optional:

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

Last timestamp at which the scaling group was updated in FinSpace. Value determined as epoch time in seconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000.

Link copied to clipboard
val name: Output<String>

Unique name for the scaling group that you want to create.

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

The status of scaling group.

Link copied to clipboard
val statusReason: Output<String>

The error message when a failed state occurs.

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

Key-value mapping 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. You can add up to 50 tags to a scaling group.

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

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>