1. Packages
  2. AWS
  3. API Docs
  4. finspace
  5. KxScalingGroup
AWS v6.77.0 published on Wednesday, Apr 9, 2025 by Pulumi

aws.finspace.KxScalingGroup

Explore with Pulumi AI

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",
});
Copy
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")
Copy
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
	})
}
Copy
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",
    });

});
Copy
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());

    }
}
Copy
resources:
  example:
    type: aws:finspace:KxScalingGroup
    properties:
      name: my-tf-kx-scalinggroup
      environmentId: ${exampleAwsFinspaceKxEnvironment.id}
      availabilityZoneId: use1-az2
      hostType: kx.sg.4xlarge
Copy

Create KxScalingGroup Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new KxScalingGroup(name: string, args: KxScalingGroupArgs, opts?: CustomResourceOptions);
@overload
def KxScalingGroup(resource_name: str,
                   args: KxScalingGroupArgs,
                   opts: Optional[ResourceOptions] = None)

@overload
def KxScalingGroup(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   availability_zone_id: Optional[str] = None,
                   environment_id: Optional[str] = None,
                   host_type: Optional[str] = None,
                   name: Optional[str] = None,
                   tags: Optional[Mapping[str, str]] = None)
func NewKxScalingGroup(ctx *Context, name string, args KxScalingGroupArgs, opts ...ResourceOption) (*KxScalingGroup, error)
public KxScalingGroup(string name, KxScalingGroupArgs args, CustomResourceOptions? opts = null)
public KxScalingGroup(String name, KxScalingGroupArgs args)
public KxScalingGroup(String name, KxScalingGroupArgs args, CustomResourceOptions options)
type: aws:finspace:KxScalingGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. KxScalingGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. KxScalingGroupArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. KxScalingGroupArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. KxScalingGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. KxScalingGroupArgs
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 kxScalingGroupResource = new Aws.FinSpace.KxScalingGroup("kxScalingGroupResource", new()
{
    AvailabilityZoneId = "string",
    EnvironmentId = "string",
    HostType = "string",
    Name = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := finspace.NewKxScalingGroup(ctx, "kxScalingGroupResource", &finspace.KxScalingGroupArgs{
	AvailabilityZoneId: pulumi.String("string"),
	EnvironmentId:      pulumi.String("string"),
	HostType:           pulumi.String("string"),
	Name:               pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var kxScalingGroupResource = new KxScalingGroup("kxScalingGroupResource", KxScalingGroupArgs.builder()
    .availabilityZoneId("string")
    .environmentId("string")
    .hostType("string")
    .name("string")
    .tags(Map.of("string", "string"))
    .build());
Copy
kx_scaling_group_resource = aws.finspace.KxScalingGroup("kxScalingGroupResource",
    availability_zone_id="string",
    environment_id="string",
    host_type="string",
    name="string",
    tags={
        "string": "string",
    })
Copy
const kxScalingGroupResource = new aws.finspace.KxScalingGroup("kxScalingGroupResource", {
    availabilityZoneId: "string",
    environmentId: "string",
    hostType: "string",
    name: "string",
    tags: {
        string: "string",
    },
});
Copy
type: aws:finspace:KxScalingGroup
properties:
    availabilityZoneId: string
    environmentId: string
    hostType: string
    name: string
    tags:
        string: string
Copy

KxScalingGroup 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 KxScalingGroup resource accepts the following input properties:

AvailabilityZoneId
This property is required.
Changes to this property will trigger replacement.
string
The availability zone identifiers for the requested regions.
EnvironmentId
This property is required.
Changes to this property will trigger replacement.
string
A unique identifier for the kdb environment, where you want to create the scaling group.
HostType
This property is required.
Changes to this property will trigger replacement.
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:

Name Changes to this property will trigger replacement. string
Unique name for the scaling group that you want to create.
Tags Dictionary<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.
AvailabilityZoneId
This property is required.
Changes to this property will trigger replacement.
string
The availability zone identifiers for the requested regions.
EnvironmentId
This property is required.
Changes to this property will trigger replacement.
string
A unique identifier for the kdb environment, where you want to create the scaling group.
HostType
This property is required.
Changes to this property will trigger replacement.
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:

Name Changes to this property will trigger replacement. string
Unique name for the scaling group that you want to create.
Tags 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.
availabilityZoneId
This property is required.
Changes to this property will trigger replacement.
String
The availability zone identifiers for the requested regions.
environmentId
This property is required.
Changes to this property will trigger replacement.
String
A unique identifier for the kdb environment, where you want to create the scaling group.
hostType
This property is required.
Changes to this property will trigger replacement.
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:

name Changes to this property will trigger replacement. String
Unique name for the scaling group that you want to create.
tags 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.
availabilityZoneId
This property is required.
Changes to this property will trigger replacement.
string
The availability zone identifiers for the requested regions.
environmentId
This property is required.
Changes to this property will trigger replacement.
string
A unique identifier for the kdb environment, where you want to create the scaling group.
hostType
This property is required.
Changes to this property will trigger replacement.
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:

name Changes to this property will trigger replacement. string
Unique name for the scaling group that you want to create.
tags {[key: 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.
availability_zone_id
This property is required.
Changes to this property will trigger replacement.
str
The availability zone identifiers for the requested regions.
environment_id
This property is required.
Changes to this property will trigger replacement.
str
A unique identifier for the kdb environment, where you want to create the scaling group.
host_type
This property is required.
Changes to this property will trigger replacement.
str

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

The following arguments are optional:

name Changes to this property will trigger replacement. str
Unique name for the scaling group that you want to create.
tags Mapping[str, str]
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.
availabilityZoneId
This property is required.
Changes to this property will trigger replacement.
String
The availability zone identifiers for the requested regions.
environmentId
This property is required.
Changes to this property will trigger replacement.
String
A unique identifier for the kdb environment, where you want to create the scaling group.
hostType
This property is required.
Changes to this property will trigger replacement.
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:

name Changes to this property will trigger replacement. String
Unique name for the scaling group that you want to create.
tags Map<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.

Outputs

All input properties are implicitly available as output properties. Additionally, the KxScalingGroup resource produces the following output properties:

Arn string
Amazon Resource Name (ARN) identifier of the KX Scaling Group.
Clusters List<string>
The list of Managed kdb clusters that are currently active in the given scaling group.
CreatedTimestamp string
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.
Id string
The provider-assigned unique ID for this managed resource.
LastModifiedTimestamp string
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.
Status string
The status of scaling group.

  • CREATING – The scaling group creation is in progress.
  • CREATE_FAILED – The scaling group creation has failed.
  • ACTIVE – The scaling group is active.
  • UPDATING – The scaling group is in the process of being updated.
  • UPDATE_FAILED – The update action failed.
  • DELETING – The scaling group is in the process of being deleted.
  • DELETE_FAILED – The system failed to delete the scaling group.
  • DELETED – The scaling group is successfully deleted.
StatusReason string
The error message when a failed state occurs.
TagsAll Dictionary<string, string>
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Arn string
Amazon Resource Name (ARN) identifier of the KX Scaling Group.
Clusters []string
The list of Managed kdb clusters that are currently active in the given scaling group.
CreatedTimestamp string
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.
Id string
The provider-assigned unique ID for this managed resource.
LastModifiedTimestamp string
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.
Status string
The status of scaling group.

  • CREATING – The scaling group creation is in progress.
  • CREATE_FAILED – The scaling group creation has failed.
  • ACTIVE – The scaling group is active.
  • UPDATING – The scaling group is in the process of being updated.
  • UPDATE_FAILED – The update action failed.
  • DELETING – The scaling group is in the process of being deleted.
  • DELETE_FAILED – The system failed to delete the scaling group.
  • DELETED – The scaling group is successfully deleted.
StatusReason string
The error message when a failed state occurs.
TagsAll map[string]string
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
Amazon Resource Name (ARN) identifier of the KX Scaling Group.
clusters List<String>
The list of Managed kdb clusters that are currently active in the given scaling group.
createdTimestamp String
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.
id String
The provider-assigned unique ID for this managed resource.
lastModifiedTimestamp String
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.
status String
The status of scaling group.

  • CREATING – The scaling group creation is in progress.
  • CREATE_FAILED – The scaling group creation has failed.
  • ACTIVE – The scaling group is active.
  • UPDATING – The scaling group is in the process of being updated.
  • UPDATE_FAILED – The update action failed.
  • DELETING – The scaling group is in the process of being deleted.
  • DELETE_FAILED – The system failed to delete the scaling group.
  • DELETED – The scaling group is successfully deleted.
statusReason String
The error message when a failed state occurs.
tagsAll Map<String,String>
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn string
Amazon Resource Name (ARN) identifier of the KX Scaling Group.
clusters string[]
The list of Managed kdb clusters that are currently active in the given scaling group.
createdTimestamp string
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.
id string
The provider-assigned unique ID for this managed resource.
lastModifiedTimestamp string
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.
status string
The status of scaling group.

  • CREATING – The scaling group creation is in progress.
  • CREATE_FAILED – The scaling group creation has failed.
  • ACTIVE – The scaling group is active.
  • UPDATING – The scaling group is in the process of being updated.
  • UPDATE_FAILED – The update action failed.
  • DELETING – The scaling group is in the process of being deleted.
  • DELETE_FAILED – The system failed to delete the scaling group.
  • DELETED – The scaling group is successfully deleted.
statusReason string
The error message when a failed state occurs.
tagsAll {[key: string]: string}
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn str
Amazon Resource Name (ARN) identifier of the KX Scaling Group.
clusters Sequence[str]
The list of Managed kdb clusters that are currently active in the given scaling group.
created_timestamp str
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.
id str
The provider-assigned unique ID for this managed resource.
last_modified_timestamp str
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.
status str
The status of scaling group.

  • CREATING – The scaling group creation is in progress.
  • CREATE_FAILED – The scaling group creation has failed.
  • ACTIVE – The scaling group is active.
  • UPDATING – The scaling group is in the process of being updated.
  • UPDATE_FAILED – The update action failed.
  • DELETING – The scaling group is in the process of being deleted.
  • DELETE_FAILED – The system failed to delete the scaling group.
  • DELETED – The scaling group is successfully deleted.
status_reason str
The error message when a failed state occurs.
tags_all Mapping[str, str]
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
Amazon Resource Name (ARN) identifier of the KX Scaling Group.
clusters List<String>
The list of Managed kdb clusters that are currently active in the given scaling group.
createdTimestamp String
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.
id String
The provider-assigned unique ID for this managed resource.
lastModifiedTimestamp String
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.
status String
The status of scaling group.

  • CREATING – The scaling group creation is in progress.
  • CREATE_FAILED – The scaling group creation has failed.
  • ACTIVE – The scaling group is active.
  • UPDATING – The scaling group is in the process of being updated.
  • UPDATE_FAILED – The update action failed.
  • DELETING – The scaling group is in the process of being deleted.
  • DELETE_FAILED – The system failed to delete the scaling group.
  • DELETED – The scaling group is successfully deleted.
statusReason String
The error message when a failed state occurs.
tagsAll Map<String>
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Look up Existing KxScalingGroup Resource

Get an existing KxScalingGroup resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: KxScalingGroupState, opts?: CustomResourceOptions): KxScalingGroup
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arn: Optional[str] = None,
        availability_zone_id: Optional[str] = None,
        clusters: Optional[Sequence[str]] = None,
        created_timestamp: Optional[str] = None,
        environment_id: Optional[str] = None,
        host_type: Optional[str] = None,
        last_modified_timestamp: Optional[str] = None,
        name: Optional[str] = None,
        status: Optional[str] = None,
        status_reason: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None) -> KxScalingGroup
func GetKxScalingGroup(ctx *Context, name string, id IDInput, state *KxScalingGroupState, opts ...ResourceOption) (*KxScalingGroup, error)
public static KxScalingGroup Get(string name, Input<string> id, KxScalingGroupState? state, CustomResourceOptions? opts = null)
public static KxScalingGroup get(String name, Output<String> id, KxScalingGroupState state, CustomResourceOptions options)
resources:  _:    type: aws:finspace:KxScalingGroup    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Arn string
Amazon Resource Name (ARN) identifier of the KX Scaling Group.
AvailabilityZoneId Changes to this property will trigger replacement. string
The availability zone identifiers for the requested regions.
Clusters List<string>
The list of Managed kdb clusters that are currently active in the given scaling group.
CreatedTimestamp string
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.
EnvironmentId Changes to this property will trigger replacement. string
A unique identifier for the kdb environment, where you want to create the scaling group.
HostType Changes to this property will trigger replacement. 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:

LastModifiedTimestamp string
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.
Name Changes to this property will trigger replacement. string
Unique name for the scaling group that you want to create.
Status string
The status of scaling group.

  • CREATING – The scaling group creation is in progress.
  • CREATE_FAILED – The scaling group creation has failed.
  • ACTIVE – The scaling group is active.
  • UPDATING – The scaling group is in the process of being updated.
  • UPDATE_FAILED – The update action failed.
  • DELETING – The scaling group is in the process of being deleted.
  • DELETE_FAILED – The system failed to delete the scaling group.
  • DELETED – The scaling group is successfully deleted.
StatusReason string
The error message when a failed state occurs.
Tags Dictionary<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.
TagsAll Dictionary<string, string>
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Arn string
Amazon Resource Name (ARN) identifier of the KX Scaling Group.
AvailabilityZoneId Changes to this property will trigger replacement. string
The availability zone identifiers for the requested regions.
Clusters []string
The list of Managed kdb clusters that are currently active in the given scaling group.
CreatedTimestamp string
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.
EnvironmentId Changes to this property will trigger replacement. string
A unique identifier for the kdb environment, where you want to create the scaling group.
HostType Changes to this property will trigger replacement. 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:

LastModifiedTimestamp string
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.
Name Changes to this property will trigger replacement. string
Unique name for the scaling group that you want to create.
Status string
The status of scaling group.

  • CREATING – The scaling group creation is in progress.
  • CREATE_FAILED – The scaling group creation has failed.
  • ACTIVE – The scaling group is active.
  • UPDATING – The scaling group is in the process of being updated.
  • UPDATE_FAILED – The update action failed.
  • DELETING – The scaling group is in the process of being deleted.
  • DELETE_FAILED – The system failed to delete the scaling group.
  • DELETED – The scaling group is successfully deleted.
StatusReason string
The error message when a failed state occurs.
Tags 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.
TagsAll map[string]string
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
Amazon Resource Name (ARN) identifier of the KX Scaling Group.
availabilityZoneId Changes to this property will trigger replacement. String
The availability zone identifiers for the requested regions.
clusters List<String>
The list of Managed kdb clusters that are currently active in the given scaling group.
createdTimestamp String
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.
environmentId Changes to this property will trigger replacement. String
A unique identifier for the kdb environment, where you want to create the scaling group.
hostType Changes to this property will trigger replacement. 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:

lastModifiedTimestamp String
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.
name Changes to this property will trigger replacement. String
Unique name for the scaling group that you want to create.
status String
The status of scaling group.

  • CREATING – The scaling group creation is in progress.
  • CREATE_FAILED – The scaling group creation has failed.
  • ACTIVE – The scaling group is active.
  • UPDATING – The scaling group is in the process of being updated.
  • UPDATE_FAILED – The update action failed.
  • DELETING – The scaling group is in the process of being deleted.
  • DELETE_FAILED – The system failed to delete the scaling group.
  • DELETED – The scaling group is successfully deleted.
statusReason String
The error message when a failed state occurs.
tags 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.
tagsAll Map<String,String>
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn string
Amazon Resource Name (ARN) identifier of the KX Scaling Group.
availabilityZoneId Changes to this property will trigger replacement. string
The availability zone identifiers for the requested regions.
clusters string[]
The list of Managed kdb clusters that are currently active in the given scaling group.
createdTimestamp string
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.
environmentId Changes to this property will trigger replacement. string
A unique identifier for the kdb environment, where you want to create the scaling group.
hostType Changes to this property will trigger replacement. 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:

lastModifiedTimestamp string
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.
name Changes to this property will trigger replacement. string
Unique name for the scaling group that you want to create.
status string
The status of scaling group.

  • CREATING – The scaling group creation is in progress.
  • CREATE_FAILED – The scaling group creation has failed.
  • ACTIVE – The scaling group is active.
  • UPDATING – The scaling group is in the process of being updated.
  • UPDATE_FAILED – The update action failed.
  • DELETING – The scaling group is in the process of being deleted.
  • DELETE_FAILED – The system failed to delete the scaling group.
  • DELETED – The scaling group is successfully deleted.
statusReason string
The error message when a failed state occurs.
tags {[key: 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.
tagsAll {[key: string]: string}
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn str
Amazon Resource Name (ARN) identifier of the KX Scaling Group.
availability_zone_id Changes to this property will trigger replacement. str
The availability zone identifiers for the requested regions.
clusters Sequence[str]
The list of Managed kdb clusters that are currently active in the given scaling group.
created_timestamp str
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.
environment_id Changes to this property will trigger replacement. str
A unique identifier for the kdb environment, where you want to create the scaling group.
host_type Changes to this property will trigger replacement. str

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

The following arguments are optional:

last_modified_timestamp str
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.
name Changes to this property will trigger replacement. str
Unique name for the scaling group that you want to create.
status str
The status of scaling group.

  • CREATING – The scaling group creation is in progress.
  • CREATE_FAILED – The scaling group creation has failed.
  • ACTIVE – The scaling group is active.
  • UPDATING – The scaling group is in the process of being updated.
  • UPDATE_FAILED – The update action failed.
  • DELETING – The scaling group is in the process of being deleted.
  • DELETE_FAILED – The system failed to delete the scaling group.
  • DELETED – The scaling group is successfully deleted.
status_reason str
The error message when a failed state occurs.
tags Mapping[str, str]
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.
tags_all Mapping[str, str]
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
Amazon Resource Name (ARN) identifier of the KX Scaling Group.
availabilityZoneId Changes to this property will trigger replacement. String
The availability zone identifiers for the requested regions.
clusters List<String>
The list of Managed kdb clusters that are currently active in the given scaling group.
createdTimestamp String
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.
environmentId Changes to this property will trigger replacement. String
A unique identifier for the kdb environment, where you want to create the scaling group.
hostType Changes to this property will trigger replacement. 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:

lastModifiedTimestamp String
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.
name Changes to this property will trigger replacement. String
Unique name for the scaling group that you want to create.
status String
The status of scaling group.

  • CREATING – The scaling group creation is in progress.
  • CREATE_FAILED – The scaling group creation has failed.
  • ACTIVE – The scaling group is active.
  • UPDATING – The scaling group is in the process of being updated.
  • UPDATE_FAILED – The update action failed.
  • DELETING – The scaling group is in the process of being deleted.
  • DELETE_FAILED – The system failed to delete the scaling group.
  • DELETED – The scaling group is successfully deleted.
statusReason String
The error message when a failed state occurs.
tags Map<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.
tagsAll Map<String>
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

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
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.