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

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.KxVolume

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 Volume.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.finspace.KxVolume("example", {
        name: "my-tf-kx-volume",
        environmentId: exampleAwsFinspaceKxEnvironment.id,
        availabilityZones: "use1-az2",
        azMode: "SINGLE",
        type: "NAS_1",
        nas1Configurations: [{
            size: 1200,
            type: "SSD_250",
        }],
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.finspace.KxVolume("example",
        name="my-tf-kx-volume",
        environment_id=example_aws_finspace_kx_environment["id"],
        availability_zones="use1-az2",
        az_mode="SINGLE",
        type="NAS_1",
        nas1_configurations=[aws.finspace.KxVolumeNas1ConfigurationArgs(
            size=1200,
            type="SSD_250",
        )])
    
    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.NewKxVolume(ctx, "example", &finspace.KxVolumeArgs{
    			Name:              pulumi.String("my-tf-kx-volume"),
    			EnvironmentId:     pulumi.Any(exampleAwsFinspaceKxEnvironment.Id),
    			AvailabilityZones: pulumi.StringArray("use1-az2"),
    			AzMode:            pulumi.String("SINGLE"),
    			Type:              pulumi.String("NAS_1"),
    			Nas1Configurations: finspace.KxVolumeNas1ConfigurationArray{
    				&finspace.KxVolumeNas1ConfigurationArgs{
    					Size: pulumi.Int(1200),
    					Type: pulumi.String("SSD_250"),
    				},
    			},
    		})
    		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.KxVolume("example", new()
        {
            Name = "my-tf-kx-volume",
            EnvironmentId = exampleAwsFinspaceKxEnvironment.Id,
            AvailabilityZones = "use1-az2",
            AzMode = "SINGLE",
            Type = "NAS_1",
            Nas1Configurations = new[]
            {
                new Aws.FinSpace.Inputs.KxVolumeNas1ConfigurationArgs
                {
                    Size = 1200,
                    Type = "SSD_250",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.finspace.KxVolume;
    import com.pulumi.aws.finspace.KxVolumeArgs;
    import com.pulumi.aws.finspace.inputs.KxVolumeNas1ConfigurationArgs;
    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 KxVolume("example", KxVolumeArgs.builder()        
                .name("my-tf-kx-volume")
                .environmentId(exampleAwsFinspaceKxEnvironment.id())
                .availabilityZones("use1-az2")
                .azMode("SINGLE")
                .type("NAS_1")
                .nas1Configurations(KxVolumeNas1ConfigurationArgs.builder()
                    .size(1200)
                    .type("SSD_250")
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:finspace:KxVolume
        properties:
          name: my-tf-kx-volume
          environmentId: ${exampleAwsFinspaceKxEnvironment.id}
          availabilityZones: use1-az2
          azMode: SINGLE
          type: NAS_1
          nas1Configurations:
            - size: 1200
              type: SSD_250
    

    Create KxVolume Resource

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

    Constructor syntax

    new KxVolume(name: string, args: KxVolumeArgs, opts?: CustomResourceOptions);
    @overload
    def KxVolume(resource_name: str,
                 args: KxVolumeArgs,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def KxVolume(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 availability_zones: Optional[Sequence[str]] = None,
                 az_mode: Optional[str] = None,
                 environment_id: Optional[str] = None,
                 type: Optional[str] = None,
                 description: Optional[str] = None,
                 name: Optional[str] = None,
                 nas1_configurations: Optional[Sequence[KxVolumeNas1ConfigurationArgs]] = None,
                 tags: Optional[Mapping[str, str]] = None)
    func NewKxVolume(ctx *Context, name string, args KxVolumeArgs, opts ...ResourceOption) (*KxVolume, error)
    public KxVolume(string name, KxVolumeArgs args, CustomResourceOptions? opts = null)
    public KxVolume(String name, KxVolumeArgs args)
    public KxVolume(String name, KxVolumeArgs args, CustomResourceOptions options)
    
    type: aws:finspace:KxVolume
    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 KxVolumeArgs
    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 KxVolumeArgs
    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 KxVolumeArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args KxVolumeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args KxVolumeArgs
    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 kxVolumeResource = new Aws.FinSpace.KxVolume("kxVolumeResource", new()
    {
        AvailabilityZones = new[]
        {
            "string",
        },
        AzMode = "string",
        EnvironmentId = "string",
        Type = "string",
        Description = "string",
        Name = "string",
        Nas1Configurations = new[]
        {
            new Aws.FinSpace.Inputs.KxVolumeNas1ConfigurationArgs
            {
                Size = 0,
                Type = "string",
            },
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := finspace.NewKxVolume(ctx, "kxVolumeResource", &finspace.KxVolumeArgs{
    	AvailabilityZones: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	AzMode:        pulumi.String("string"),
    	EnvironmentId: pulumi.String("string"),
    	Type:          pulumi.String("string"),
    	Description:   pulumi.String("string"),
    	Name:          pulumi.String("string"),
    	Nas1Configurations: finspace.KxVolumeNas1ConfigurationArray{
    		&finspace.KxVolumeNas1ConfigurationArgs{
    			Size: pulumi.Int(0),
    			Type: pulumi.String("string"),
    		},
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var kxVolumeResource = new KxVolume("kxVolumeResource", KxVolumeArgs.builder()        
        .availabilityZones("string")
        .azMode("string")
        .environmentId("string")
        .type("string")
        .description("string")
        .name("string")
        .nas1Configurations(KxVolumeNas1ConfigurationArgs.builder()
            .size(0)
            .type("string")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    kx_volume_resource = aws.finspace.KxVolume("kxVolumeResource",
        availability_zones=["string"],
        az_mode="string",
        environment_id="string",
        type="string",
        description="string",
        name="string",
        nas1_configurations=[aws.finspace.KxVolumeNas1ConfigurationArgs(
            size=0,
            type="string",
        )],
        tags={
            "string": "string",
        })
    
    const kxVolumeResource = new aws.finspace.KxVolume("kxVolumeResource", {
        availabilityZones: ["string"],
        azMode: "string",
        environmentId: "string",
        type: "string",
        description: "string",
        name: "string",
        nas1Configurations: [{
            size: 0,
            type: "string",
        }],
        tags: {
            string: "string",
        },
    });
    
    type: aws:finspace:KxVolume
    properties:
        availabilityZones:
            - string
        azMode: string
        description: string
        environmentId: string
        name: string
        nas1Configurations:
            - size: 0
              type: string
        tags:
            string: string
        type: string
    

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

    AvailabilityZones List<string>

    The identifier of the AWS Availability Zone IDs.

    The following arguments are optional:

    AzMode string
    The number of availability zones you want to assign per volume. Currently, Finspace only support SINGLE for volumes.
    EnvironmentId string
    A unique identifier for the kdb environment, whose clusters can attach to the volume.
    Type string
    The type of file system volume. Currently, FinSpace only supports the NAS_1 volume type. When you select the NAS_1 volume type, you must also provide nas1_configuration.
    Description string
    Description of the volume.
    Name string
    Unique name for the volumr that you want to create.
    Nas1Configurations List<KxVolumeNas1Configuration>
    Specifies the configuration for the Network attached storage (NAS_1) file system volume. This parameter is required when volume_type is NAS_1. See nas1_configuration Argument Reference below.
    Tags Dictionary<string, string>
    A list of key-value pairs to label the volume. You can add up to 50 tags to a volume
    AvailabilityZones []string

    The identifier of the AWS Availability Zone IDs.

    The following arguments are optional:

    AzMode string
    The number of availability zones you want to assign per volume. Currently, Finspace only support SINGLE for volumes.
    EnvironmentId string
    A unique identifier for the kdb environment, whose clusters can attach to the volume.
    Type string
    The type of file system volume. Currently, FinSpace only supports the NAS_1 volume type. When you select the NAS_1 volume type, you must also provide nas1_configuration.
    Description string
    Description of the volume.
    Name string
    Unique name for the volumr that you want to create.
    Nas1Configurations []KxVolumeNas1ConfigurationArgs
    Specifies the configuration for the Network attached storage (NAS_1) file system volume. This parameter is required when volume_type is NAS_1. See nas1_configuration Argument Reference below.
    Tags map[string]string
    A list of key-value pairs to label the volume. You can add up to 50 tags to a volume
    availabilityZones List<String>

    The identifier of the AWS Availability Zone IDs.

    The following arguments are optional:

    azMode String
    The number of availability zones you want to assign per volume. Currently, Finspace only support SINGLE for volumes.
    environmentId String
    A unique identifier for the kdb environment, whose clusters can attach to the volume.
    type String
    The type of file system volume. Currently, FinSpace only supports the NAS_1 volume type. When you select the NAS_1 volume type, you must also provide nas1_configuration.
    description String
    Description of the volume.
    name String
    Unique name for the volumr that you want to create.
    nas1Configurations List<KxVolumeNas1Configuration>
    Specifies the configuration for the Network attached storage (NAS_1) file system volume. This parameter is required when volume_type is NAS_1. See nas1_configuration Argument Reference below.
    tags Map<String,String>
    A list of key-value pairs to label the volume. You can add up to 50 tags to a volume
    availabilityZones string[]

    The identifier of the AWS Availability Zone IDs.

    The following arguments are optional:

    azMode string
    The number of availability zones you want to assign per volume. Currently, Finspace only support SINGLE for volumes.
    environmentId string
    A unique identifier for the kdb environment, whose clusters can attach to the volume.
    type string
    The type of file system volume. Currently, FinSpace only supports the NAS_1 volume type. When you select the NAS_1 volume type, you must also provide nas1_configuration.
    description string
    Description of the volume.
    name string
    Unique name for the volumr that you want to create.
    nas1Configurations KxVolumeNas1Configuration[]
    Specifies the configuration for the Network attached storage (NAS_1) file system volume. This parameter is required when volume_type is NAS_1. See nas1_configuration Argument Reference below.
    tags {[key: string]: string}
    A list of key-value pairs to label the volume. You can add up to 50 tags to a volume
    availability_zones Sequence[str]

    The identifier of the AWS Availability Zone IDs.

    The following arguments are optional:

    az_mode str
    The number of availability zones you want to assign per volume. Currently, Finspace only support SINGLE for volumes.
    environment_id str
    A unique identifier for the kdb environment, whose clusters can attach to the volume.
    type str
    The type of file system volume. Currently, FinSpace only supports the NAS_1 volume type. When you select the NAS_1 volume type, you must also provide nas1_configuration.
    description str
    Description of the volume.
    name str
    Unique name for the volumr that you want to create.
    nas1_configurations Sequence[KxVolumeNas1ConfigurationArgs]
    Specifies the configuration for the Network attached storage (NAS_1) file system volume. This parameter is required when volume_type is NAS_1. See nas1_configuration Argument Reference below.
    tags Mapping[str, str]
    A list of key-value pairs to label the volume. You can add up to 50 tags to a volume
    availabilityZones List<String>

    The identifier of the AWS Availability Zone IDs.

    The following arguments are optional:

    azMode String
    The number of availability zones you want to assign per volume. Currently, Finspace only support SINGLE for volumes.
    environmentId String
    A unique identifier for the kdb environment, whose clusters can attach to the volume.
    type String
    The type of file system volume. Currently, FinSpace only supports the NAS_1 volume type. When you select the NAS_1 volume type, you must also provide nas1_configuration.
    description String
    Description of the volume.
    name String
    Unique name for the volumr that you want to create.
    nas1Configurations List<Property Map>
    Specifies the configuration for the Network attached storage (NAS_1) file system volume. This parameter is required when volume_type is NAS_1. See nas1_configuration Argument Reference below.
    tags Map<String>
    A list of key-value pairs to label the volume. You can add up to 50 tags to a volume

    Outputs

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

    Arn string
    Amazon Resource Name (ARN) identifier of the KX volume.
    AttachedClusters List<KxVolumeAttachedCluster>
    CreatedTimestamp string
    The timestamp at which the volume 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 volume 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 volume creation.
    StatusReason string
    The error message when a failed state occurs.
    TagsAll Dictionary<string, string>

    Deprecated: Please use tags instead.

    Arn string
    Amazon Resource Name (ARN) identifier of the KX volume.
    AttachedClusters []KxVolumeAttachedCluster
    CreatedTimestamp string
    The timestamp at which the volume 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 volume 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 volume creation.
    StatusReason string
    The error message when a failed state occurs.
    TagsAll map[string]string

    Deprecated: Please use tags instead.

    arn String
    Amazon Resource Name (ARN) identifier of the KX volume.
    attachedClusters List<KxVolumeAttachedCluster>
    createdTimestamp String
    The timestamp at which the volume 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 volume 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 volume creation.
    statusReason String
    The error message when a failed state occurs.
    tagsAll Map<String,String>

    Deprecated: Please use tags instead.

    arn string
    Amazon Resource Name (ARN) identifier of the KX volume.
    attachedClusters KxVolumeAttachedCluster[]
    createdTimestamp string
    The timestamp at which the volume 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 volume 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 volume creation.
    statusReason string
    The error message when a failed state occurs.
    tagsAll {[key: string]: string}

    Deprecated: Please use tags instead.

    arn str
    Amazon Resource Name (ARN) identifier of the KX volume.
    attached_clusters Sequence[KxVolumeAttachedCluster]
    created_timestamp str
    The timestamp at which the volume 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 volume 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 volume creation.
    status_reason str
    The error message when a failed state occurs.
    tags_all Mapping[str, str]

    Deprecated: Please use tags instead.

    arn String
    Amazon Resource Name (ARN) identifier of the KX volume.
    attachedClusters List<Property Map>
    createdTimestamp String
    The timestamp at which the volume 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 volume 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 volume creation.
    statusReason String
    The error message when a failed state occurs.
    tagsAll Map<String>

    Deprecated: Please use tags instead.

    Look up Existing KxVolume Resource

    Get an existing KxVolume 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?: KxVolumeState, opts?: CustomResourceOptions): KxVolume
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            attached_clusters: Optional[Sequence[KxVolumeAttachedClusterArgs]] = None,
            availability_zones: Optional[Sequence[str]] = None,
            az_mode: Optional[str] = None,
            created_timestamp: Optional[str] = None,
            description: Optional[str] = None,
            environment_id: Optional[str] = None,
            last_modified_timestamp: Optional[str] = None,
            name: Optional[str] = None,
            nas1_configurations: Optional[Sequence[KxVolumeNas1ConfigurationArgs]] = None,
            status: Optional[str] = None,
            status_reason: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            type: Optional[str] = None) -> KxVolume
    func GetKxVolume(ctx *Context, name string, id IDInput, state *KxVolumeState, opts ...ResourceOption) (*KxVolume, error)
    public static KxVolume Get(string name, Input<string> id, KxVolumeState? state, CustomResourceOptions? opts = null)
    public static KxVolume get(String name, Output<String> id, KxVolumeState 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 volume.
    AttachedClusters List<KxVolumeAttachedCluster>
    AvailabilityZones List<string>

    The identifier of the AWS Availability Zone IDs.

    The following arguments are optional:

    AzMode string
    The number of availability zones you want to assign per volume. Currently, Finspace only support SINGLE for volumes.
    CreatedTimestamp string
    The timestamp at which the volume 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.
    Description string
    Description of the volume.
    EnvironmentId string
    A unique identifier for the kdb environment, whose clusters can attach to the volume.
    LastModifiedTimestamp string
    Last timestamp at which the volume 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 volumr that you want to create.
    Nas1Configurations List<KxVolumeNas1Configuration>
    Specifies the configuration for the Network attached storage (NAS_1) file system volume. This parameter is required when volume_type is NAS_1. See nas1_configuration Argument Reference below.
    Status string
    The status of volume creation.
    StatusReason string
    The error message when a failed state occurs.
    Tags Dictionary<string, string>
    A list of key-value pairs to label the volume. You can add up to 50 tags to a volume
    TagsAll Dictionary<string, string>

    Deprecated: Please use tags instead.

    Type string
    The type of file system volume. Currently, FinSpace only supports the NAS_1 volume type. When you select the NAS_1 volume type, you must also provide nas1_configuration.
    Arn string
    Amazon Resource Name (ARN) identifier of the KX volume.
    AttachedClusters []KxVolumeAttachedClusterArgs
    AvailabilityZones []string

    The identifier of the AWS Availability Zone IDs.

    The following arguments are optional:

    AzMode string
    The number of availability zones you want to assign per volume. Currently, Finspace only support SINGLE for volumes.
    CreatedTimestamp string
    The timestamp at which the volume 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.
    Description string
    Description of the volume.
    EnvironmentId string
    A unique identifier for the kdb environment, whose clusters can attach to the volume.
    LastModifiedTimestamp string
    Last timestamp at which the volume 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 volumr that you want to create.
    Nas1Configurations []KxVolumeNas1ConfigurationArgs
    Specifies the configuration for the Network attached storage (NAS_1) file system volume. This parameter is required when volume_type is NAS_1. See nas1_configuration Argument Reference below.
    Status string
    The status of volume creation.
    StatusReason string
    The error message when a failed state occurs.
    Tags map[string]string
    A list of key-value pairs to label the volume. You can add up to 50 tags to a volume
    TagsAll map[string]string

    Deprecated: Please use tags instead.

    Type string
    The type of file system volume. Currently, FinSpace only supports the NAS_1 volume type. When you select the NAS_1 volume type, you must also provide nas1_configuration.
    arn String
    Amazon Resource Name (ARN) identifier of the KX volume.
    attachedClusters List<KxVolumeAttachedCluster>
    availabilityZones List<String>

    The identifier of the AWS Availability Zone IDs.

    The following arguments are optional:

    azMode String
    The number of availability zones you want to assign per volume. Currently, Finspace only support SINGLE for volumes.
    createdTimestamp String
    The timestamp at which the volume 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.
    description String
    Description of the volume.
    environmentId String
    A unique identifier for the kdb environment, whose clusters can attach to the volume.
    lastModifiedTimestamp String
    Last timestamp at which the volume 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 volumr that you want to create.
    nas1Configurations List<KxVolumeNas1Configuration>
    Specifies the configuration for the Network attached storage (NAS_1) file system volume. This parameter is required when volume_type is NAS_1. See nas1_configuration Argument Reference below.
    status String
    The status of volume creation.
    statusReason String
    The error message when a failed state occurs.
    tags Map<String,String>
    A list of key-value pairs to label the volume. You can add up to 50 tags to a volume
    tagsAll Map<String,String>

    Deprecated: Please use tags instead.

    type String
    The type of file system volume. Currently, FinSpace only supports the NAS_1 volume type. When you select the NAS_1 volume type, you must also provide nas1_configuration.
    arn string
    Amazon Resource Name (ARN) identifier of the KX volume.
    attachedClusters KxVolumeAttachedCluster[]
    availabilityZones string[]

    The identifier of the AWS Availability Zone IDs.

    The following arguments are optional:

    azMode string
    The number of availability zones you want to assign per volume. Currently, Finspace only support SINGLE for volumes.
    createdTimestamp string
    The timestamp at which the volume 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.
    description string
    Description of the volume.
    environmentId string
    A unique identifier for the kdb environment, whose clusters can attach to the volume.
    lastModifiedTimestamp string
    Last timestamp at which the volume 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 volumr that you want to create.
    nas1Configurations KxVolumeNas1Configuration[]
    Specifies the configuration for the Network attached storage (NAS_1) file system volume. This parameter is required when volume_type is NAS_1. See nas1_configuration Argument Reference below.
    status string
    The status of volume creation.
    statusReason string
    The error message when a failed state occurs.
    tags {[key: string]: string}
    A list of key-value pairs to label the volume. You can add up to 50 tags to a volume
    tagsAll {[key: string]: string}

    Deprecated: Please use tags instead.

    type string
    The type of file system volume. Currently, FinSpace only supports the NAS_1 volume type. When you select the NAS_1 volume type, you must also provide nas1_configuration.
    arn str
    Amazon Resource Name (ARN) identifier of the KX volume.
    attached_clusters Sequence[KxVolumeAttachedClusterArgs]
    availability_zones Sequence[str]

    The identifier of the AWS Availability Zone IDs.

    The following arguments are optional:

    az_mode str
    The number of availability zones you want to assign per volume. Currently, Finspace only support SINGLE for volumes.
    created_timestamp str
    The timestamp at which the volume 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.
    description str
    Description of the volume.
    environment_id str
    A unique identifier for the kdb environment, whose clusters can attach to the volume.
    last_modified_timestamp str
    Last timestamp at which the volume 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 volumr that you want to create.
    nas1_configurations Sequence[KxVolumeNas1ConfigurationArgs]
    Specifies the configuration for the Network attached storage (NAS_1) file system volume. This parameter is required when volume_type is NAS_1. See nas1_configuration Argument Reference below.
    status str
    The status of volume creation.
    status_reason str
    The error message when a failed state occurs.
    tags Mapping[str, str]
    A list of key-value pairs to label the volume. You can add up to 50 tags to a volume
    tags_all Mapping[str, str]

    Deprecated: Please use tags instead.

    type str
    The type of file system volume. Currently, FinSpace only supports the NAS_1 volume type. When you select the NAS_1 volume type, you must also provide nas1_configuration.
    arn String
    Amazon Resource Name (ARN) identifier of the KX volume.
    attachedClusters List<Property Map>
    availabilityZones List<String>

    The identifier of the AWS Availability Zone IDs.

    The following arguments are optional:

    azMode String
    The number of availability zones you want to assign per volume. Currently, Finspace only support SINGLE for volumes.
    createdTimestamp String
    The timestamp at which the volume 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.
    description String
    Description of the volume.
    environmentId String
    A unique identifier for the kdb environment, whose clusters can attach to the volume.
    lastModifiedTimestamp String
    Last timestamp at which the volume 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 volumr that you want to create.
    nas1Configurations List<Property Map>
    Specifies the configuration for the Network attached storage (NAS_1) file system volume. This parameter is required when volume_type is NAS_1. See nas1_configuration Argument Reference below.
    status String
    The status of volume creation.
    statusReason String
    The error message when a failed state occurs.
    tags Map<String>
    A list of key-value pairs to label the volume. You can add up to 50 tags to a volume
    tagsAll Map<String>

    Deprecated: Please use tags instead.

    type String
    The type of file system volume. Currently, FinSpace only supports the NAS_1 volume type. When you select the NAS_1 volume type, you must also provide nas1_configuration.

    Supporting Types

    KxVolumeAttachedCluster, KxVolumeAttachedClusterArgs

    KxVolumeNas1Configuration, KxVolumeNas1ConfigurationArgs

    Size int
    The size of the network attached storage.
    Type string
    The type of the network attached storage.
    Size int
    The size of the network attached storage.
    Type string
    The type of the network attached storage.
    size Integer
    The size of the network attached storage.
    type String
    The type of the network attached storage.
    size number
    The size of the network attached storage.
    type string
    The type of the network attached storage.
    size int
    The size of the network attached storage.
    type str
    The type of the network attached storage.
    size Number
    The size of the network attached storage.
    type String
    The type of the network attached storage.

    Import

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

    $ pulumi import aws:finspace/kxVolume:KxVolume example n3ceo7wqxoxcti5tujqwzs,my-tf-kx-volume
    

    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