1. Packages
  2. AWS Classic
  3. API Docs
  4. finspace
  5. KxScalingGroup

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.36.0 published on Wednesday, May 15, 2024 by Pulumi

aws.finspace.KxScalingGroup

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.36.0 published on Wednesday, May 15, 2024 by Pulumi

    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")
    
    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
    	})
    }
    
    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 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
    

    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 string
    The unique name of the resource.
    args KxScalingGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args 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 string
    The unique name of the resource.
    args KxScalingGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args KxScalingGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args KxScalingGroupArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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" },
        },
    });
    
    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"),
    	},
    })
    
    var kxScalingGroupResource = new KxScalingGroup("kxScalingGroupResource", KxScalingGroupArgs.builder()        
        .availabilityZoneId("string")
        .environmentId("string")
        .hostType("string")
        .name("string")
        .tags(Map.of("string", "string"))
        .build());
    
    kx_scaling_group_resource = aws.finspace.KxScalingGroup("kxScalingGroupResource",
        availability_zone_id="string",
        environment_id="string",
        host_type="string",
        name="string",
        tags={
            "string": "string",
        })
    
    const kxScalingGroupResource = new aws.finspace.KxScalingGroup("kxScalingGroupResource", {
        availabilityZoneId: "string",
        environmentId: "string",
        hostType: "string",
        name: "string",
        tags: {
            string: "string",
        },
    });
    
    type: aws:finspace:KxScalingGroup
    properties:
        availabilityZoneId: string
        environmentId: string
        hostType: string
        name: string
        tags:
            string: string
    

    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

    The KxScalingGroup resource accepts the following input properties:

    AvailabilityZoneId string
    The availability zone identifiers for the requested regions.
    EnvironmentId string
    A unique identifier for the kdb environment, where you want to create the scaling group.
    HostType 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 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 string
    The availability zone identifiers for the requested regions.
    EnvironmentId string
    A unique identifier for the kdb environment, where you want to create the scaling group.
    HostType 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 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 String
    The availability zone identifiers for the requested regions.
    environmentId String
    A unique identifier for the kdb environment, where you want to create the scaling group.
    hostType 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 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 string
    The availability zone identifiers for the requested regions.
    environmentId string
    A unique identifier for the kdb environment, where you want to create the scaling group.
    hostType 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 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 str
    The availability zone identifiers for the requested regions.
    environment_id str
    A unique identifier for the kdb environment, where you want to create the scaling group.
    host_type 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 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 String
    The availability zone identifiers for the requested regions.
    environmentId String
    A unique identifier for the kdb environment, where you want to create the scaling group.
    hostType 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 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.
    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.
    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.
    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.
    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.
    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.
    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)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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 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 string
    A unique identifier for the kdb environment, where you want to create the scaling group.
    HostType 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 string
    Unique name for the scaling group that you want to create.
    Status string
    The status of scaling group.
    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 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 string
    A unique identifier for the kdb environment, where you want to create the scaling group.
    HostType 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 string
    Unique name for the scaling group that you want to create.
    Status string
    The status of scaling group.
    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 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 String
    A unique identifier for the kdb environment, where you want to create the scaling group.
    hostType 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 String
    Unique name for the scaling group that you want to create.
    status String
    The status of scaling group.
    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 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 string
    A unique identifier for the kdb environment, where you want to create the scaling group.
    hostType 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 string
    Unique name for the scaling group that you want to create.
    status string
    The status of scaling group.
    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 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 str
    A unique identifier for the kdb environment, where you want to create the scaling group.
    host_type 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 str
    Unique name for the scaling group that you want to create.
    status str
    The status of scaling group.
    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 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 String
    A unique identifier for the kdb environment, where you want to create the scaling group.
    hostType 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 String
    Unique name for the scaling group that you want to create.
    status String
    The status of scaling group.
    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
    

    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.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.36.0 published on Wednesday, May 15, 2024 by Pulumi