123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865 |
- import {Request} from '../lib/request';
- import {Response} from '../lib/response';
- import {AWSError} from '../lib/error';
- import {Service} from '../lib/service';
- import {ServiceConfigurationOptions} from '../lib/service';
- import {ConfigBase as Config} from '../lib/config-base';
- interface Blob {}
- declare class Keyspaces extends Service {
- /**
- * Constructs a service object. This object has one method for each API operation.
- */
- constructor(options?: Keyspaces.Types.ClientConfiguration)
- config: Config & Keyspaces.Types.ClientConfiguration;
- /**
- * The CreateKeyspace operation adds a new keyspace to your account. In an Amazon Web Services account, keyspace names must be unique within each Region. CreateKeyspace is an asynchronous operation. You can monitor the creation status of the new keyspace by using the GetKeyspace operation. For more information, see Creating keyspaces in the Amazon Keyspaces Developer Guide.
- */
- createKeyspace(params: Keyspaces.Types.CreateKeyspaceRequest, callback?: (err: AWSError, data: Keyspaces.Types.CreateKeyspaceResponse) => void): Request<Keyspaces.Types.CreateKeyspaceResponse, AWSError>;
- /**
- * The CreateKeyspace operation adds a new keyspace to your account. In an Amazon Web Services account, keyspace names must be unique within each Region. CreateKeyspace is an asynchronous operation. You can monitor the creation status of the new keyspace by using the GetKeyspace operation. For more information, see Creating keyspaces in the Amazon Keyspaces Developer Guide.
- */
- createKeyspace(callback?: (err: AWSError, data: Keyspaces.Types.CreateKeyspaceResponse) => void): Request<Keyspaces.Types.CreateKeyspaceResponse, AWSError>;
- /**
- * The CreateTable operation adds a new table to the specified keyspace. Within a keyspace, table names must be unique. CreateTable is an asynchronous operation. When the request is received, the status of the table is set to CREATING. You can monitor the creation status of the new table by using the GetTable operation, which returns the current status of the table. You can start using a table when the status is ACTIVE. For more information, see Creating tables in the Amazon Keyspaces Developer Guide.
- */
- createTable(params: Keyspaces.Types.CreateTableRequest, callback?: (err: AWSError, data: Keyspaces.Types.CreateTableResponse) => void): Request<Keyspaces.Types.CreateTableResponse, AWSError>;
- /**
- * The CreateTable operation adds a new table to the specified keyspace. Within a keyspace, table names must be unique. CreateTable is an asynchronous operation. When the request is received, the status of the table is set to CREATING. You can monitor the creation status of the new table by using the GetTable operation, which returns the current status of the table. You can start using a table when the status is ACTIVE. For more information, see Creating tables in the Amazon Keyspaces Developer Guide.
- */
- createTable(callback?: (err: AWSError, data: Keyspaces.Types.CreateTableResponse) => void): Request<Keyspaces.Types.CreateTableResponse, AWSError>;
- /**
- * The DeleteKeyspace operation deletes a keyspace and all of its tables.
- */
- deleteKeyspace(params: Keyspaces.Types.DeleteKeyspaceRequest, callback?: (err: AWSError, data: Keyspaces.Types.DeleteKeyspaceResponse) => void): Request<Keyspaces.Types.DeleteKeyspaceResponse, AWSError>;
- /**
- * The DeleteKeyspace operation deletes a keyspace and all of its tables.
- */
- deleteKeyspace(callback?: (err: AWSError, data: Keyspaces.Types.DeleteKeyspaceResponse) => void): Request<Keyspaces.Types.DeleteKeyspaceResponse, AWSError>;
- /**
- * The DeleteTable operation deletes a table and all of its data. After a DeleteTable request is received, the specified table is in the DELETING state until Amazon Keyspaces completes the deletion. If the table is in the ACTIVE state, you can delete it. If a table is either in the CREATING or UPDATING states, then Amazon Keyspaces returns a ResourceInUseException. If the specified table does not exist, Amazon Keyspaces returns a ResourceNotFoundException. If the table is already in the DELETING state, no error is returned.
- */
- deleteTable(params: Keyspaces.Types.DeleteTableRequest, callback?: (err: AWSError, data: Keyspaces.Types.DeleteTableResponse) => void): Request<Keyspaces.Types.DeleteTableResponse, AWSError>;
- /**
- * The DeleteTable operation deletes a table and all of its data. After a DeleteTable request is received, the specified table is in the DELETING state until Amazon Keyspaces completes the deletion. If the table is in the ACTIVE state, you can delete it. If a table is either in the CREATING or UPDATING states, then Amazon Keyspaces returns a ResourceInUseException. If the specified table does not exist, Amazon Keyspaces returns a ResourceNotFoundException. If the table is already in the DELETING state, no error is returned.
- */
- deleteTable(callback?: (err: AWSError, data: Keyspaces.Types.DeleteTableResponse) => void): Request<Keyspaces.Types.DeleteTableResponse, AWSError>;
- /**
- * Returns the name and the Amazon Resource Name (ARN) of the specified table.
- */
- getKeyspace(params: Keyspaces.Types.GetKeyspaceRequest, callback?: (err: AWSError, data: Keyspaces.Types.GetKeyspaceResponse) => void): Request<Keyspaces.Types.GetKeyspaceResponse, AWSError>;
- /**
- * Returns the name and the Amazon Resource Name (ARN) of the specified table.
- */
- getKeyspace(callback?: (err: AWSError, data: Keyspaces.Types.GetKeyspaceResponse) => void): Request<Keyspaces.Types.GetKeyspaceResponse, AWSError>;
- /**
- * Returns information about the table, including the table's name and current status, the keyspace name, configuration settings, and metadata. To read table metadata using GetTable, Select action permissions for the table and system tables are required to complete the operation.
- */
- getTable(params: Keyspaces.Types.GetTableRequest, callback?: (err: AWSError, data: Keyspaces.Types.GetTableResponse) => void): Request<Keyspaces.Types.GetTableResponse, AWSError>;
- /**
- * Returns information about the table, including the table's name and current status, the keyspace name, configuration settings, and metadata. To read table metadata using GetTable, Select action permissions for the table and system tables are required to complete the operation.
- */
- getTable(callback?: (err: AWSError, data: Keyspaces.Types.GetTableResponse) => void): Request<Keyspaces.Types.GetTableResponse, AWSError>;
- /**
- * Returns auto scaling related settings of the specified table in JSON format. If the table is a multi-Region table, the Amazon Web Services Region specific auto scaling settings of the table are included. Amazon Keyspaces auto scaling helps you provision throughput capacity for variable workloads efficiently by increasing and decreasing your table's read and write capacity automatically in response to application traffic. For more information, see Managing throughput capacity automatically with Amazon Keyspaces auto scaling in the Amazon Keyspaces Developer Guide. GetTableAutoScalingSettings can't be used as an action in an IAM policy. To define permissions for GetTableAutoScalingSettings, you must allow the following two actions in the IAM policy statement's Action element: application-autoscaling:DescribeScalableTargets application-autoscaling:DescribeScalingPolicies
- */
- getTableAutoScalingSettings(params: Keyspaces.Types.GetTableAutoScalingSettingsRequest, callback?: (err: AWSError, data: Keyspaces.Types.GetTableAutoScalingSettingsResponse) => void): Request<Keyspaces.Types.GetTableAutoScalingSettingsResponse, AWSError>;
- /**
- * Returns auto scaling related settings of the specified table in JSON format. If the table is a multi-Region table, the Amazon Web Services Region specific auto scaling settings of the table are included. Amazon Keyspaces auto scaling helps you provision throughput capacity for variable workloads efficiently by increasing and decreasing your table's read and write capacity automatically in response to application traffic. For more information, see Managing throughput capacity automatically with Amazon Keyspaces auto scaling in the Amazon Keyspaces Developer Guide. GetTableAutoScalingSettings can't be used as an action in an IAM policy. To define permissions for GetTableAutoScalingSettings, you must allow the following two actions in the IAM policy statement's Action element: application-autoscaling:DescribeScalableTargets application-autoscaling:DescribeScalingPolicies
- */
- getTableAutoScalingSettings(callback?: (err: AWSError, data: Keyspaces.Types.GetTableAutoScalingSettingsResponse) => void): Request<Keyspaces.Types.GetTableAutoScalingSettingsResponse, AWSError>;
- /**
- * Returns a list of keyspaces.
- */
- listKeyspaces(params: Keyspaces.Types.ListKeyspacesRequest, callback?: (err: AWSError, data: Keyspaces.Types.ListKeyspacesResponse) => void): Request<Keyspaces.Types.ListKeyspacesResponse, AWSError>;
- /**
- * Returns a list of keyspaces.
- */
- listKeyspaces(callback?: (err: AWSError, data: Keyspaces.Types.ListKeyspacesResponse) => void): Request<Keyspaces.Types.ListKeyspacesResponse, AWSError>;
- /**
- * Returns a list of tables for a specified keyspace.
- */
- listTables(params: Keyspaces.Types.ListTablesRequest, callback?: (err: AWSError, data: Keyspaces.Types.ListTablesResponse) => void): Request<Keyspaces.Types.ListTablesResponse, AWSError>;
- /**
- * Returns a list of tables for a specified keyspace.
- */
- listTables(callback?: (err: AWSError, data: Keyspaces.Types.ListTablesResponse) => void): Request<Keyspaces.Types.ListTablesResponse, AWSError>;
- /**
- * Returns a list of all tags associated with the specified Amazon Keyspaces resource.
- */
- listTagsForResource(params: Keyspaces.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: Keyspaces.Types.ListTagsForResourceResponse) => void): Request<Keyspaces.Types.ListTagsForResourceResponse, AWSError>;
- /**
- * Returns a list of all tags associated with the specified Amazon Keyspaces resource.
- */
- listTagsForResource(callback?: (err: AWSError, data: Keyspaces.Types.ListTagsForResourceResponse) => void): Request<Keyspaces.Types.ListTagsForResourceResponse, AWSError>;
- /**
- * Restores the table to the specified point in time within the earliest_restorable_timestamp and the current time. For more information about restore points, see Time window for PITR continuous backups in the Amazon Keyspaces Developer Guide. Any number of users can execute up to 4 concurrent restores (any type of restore) in a given account. When you restore using point in time recovery, Amazon Keyspaces restores your source table's schema and data to the state based on the selected timestamp (day:hour:minute:second) to a new table. The Time to Live (TTL) settings are also restored to the state based on the selected timestamp. In addition to the table's schema, data, and TTL settings, RestoreTable restores the capacity mode, auto scaling settings, encryption settings, and point-in-time recovery settings from the source table. Unlike the table's schema data and TTL settings, which are restored based on the selected timestamp, these settings are always restored based on the table's settings as of the current time or when the table was deleted. You can also overwrite these settings during restore: Read/write capacity mode Provisioned throughput capacity units Auto scaling settings Point-in-time (PITR) settings Tags For more information, see PITR restore settings in the Amazon Keyspaces Developer Guide. Note that the following settings are not restored, and you must configure them manually for the new table: Identity and Access Management (IAM) policies Amazon CloudWatch metrics and alarms
- */
- restoreTable(params: Keyspaces.Types.RestoreTableRequest, callback?: (err: AWSError, data: Keyspaces.Types.RestoreTableResponse) => void): Request<Keyspaces.Types.RestoreTableResponse, AWSError>;
- /**
- * Restores the table to the specified point in time within the earliest_restorable_timestamp and the current time. For more information about restore points, see Time window for PITR continuous backups in the Amazon Keyspaces Developer Guide. Any number of users can execute up to 4 concurrent restores (any type of restore) in a given account. When you restore using point in time recovery, Amazon Keyspaces restores your source table's schema and data to the state based on the selected timestamp (day:hour:minute:second) to a new table. The Time to Live (TTL) settings are also restored to the state based on the selected timestamp. In addition to the table's schema, data, and TTL settings, RestoreTable restores the capacity mode, auto scaling settings, encryption settings, and point-in-time recovery settings from the source table. Unlike the table's schema data and TTL settings, which are restored based on the selected timestamp, these settings are always restored based on the table's settings as of the current time or when the table was deleted. You can also overwrite these settings during restore: Read/write capacity mode Provisioned throughput capacity units Auto scaling settings Point-in-time (PITR) settings Tags For more information, see PITR restore settings in the Amazon Keyspaces Developer Guide. Note that the following settings are not restored, and you must configure them manually for the new table: Identity and Access Management (IAM) policies Amazon CloudWatch metrics and alarms
- */
- restoreTable(callback?: (err: AWSError, data: Keyspaces.Types.RestoreTableResponse) => void): Request<Keyspaces.Types.RestoreTableResponse, AWSError>;
- /**
- * Associates a set of tags with a Amazon Keyspaces resource. You can then activate these user-defined tags so that they appear on the Cost Management Console for cost allocation tracking. For more information, see Adding tags and labels to Amazon Keyspaces resources in the Amazon Keyspaces Developer Guide. For IAM policy examples that show how to control access to Amazon Keyspaces resources based on tags, see Amazon Keyspaces resource access based on tags in the Amazon Keyspaces Developer Guide.
- */
- tagResource(params: Keyspaces.Types.TagResourceRequest, callback?: (err: AWSError, data: Keyspaces.Types.TagResourceResponse) => void): Request<Keyspaces.Types.TagResourceResponse, AWSError>;
- /**
- * Associates a set of tags with a Amazon Keyspaces resource. You can then activate these user-defined tags so that they appear on the Cost Management Console for cost allocation tracking. For more information, see Adding tags and labels to Amazon Keyspaces resources in the Amazon Keyspaces Developer Guide. For IAM policy examples that show how to control access to Amazon Keyspaces resources based on tags, see Amazon Keyspaces resource access based on tags in the Amazon Keyspaces Developer Guide.
- */
- tagResource(callback?: (err: AWSError, data: Keyspaces.Types.TagResourceResponse) => void): Request<Keyspaces.Types.TagResourceResponse, AWSError>;
- /**
- * Removes the association of tags from a Amazon Keyspaces resource.
- */
- untagResource(params: Keyspaces.Types.UntagResourceRequest, callback?: (err: AWSError, data: Keyspaces.Types.UntagResourceResponse) => void): Request<Keyspaces.Types.UntagResourceResponse, AWSError>;
- /**
- * Removes the association of tags from a Amazon Keyspaces resource.
- */
- untagResource(callback?: (err: AWSError, data: Keyspaces.Types.UntagResourceResponse) => void): Request<Keyspaces.Types.UntagResourceResponse, AWSError>;
- /**
- * Adds new columns to the table or updates one of the table's settings, for example capacity mode, auto scaling, encryption, point-in-time recovery, or ttl settings. Note that you can only update one specific table setting per update operation.
- */
- updateTable(params: Keyspaces.Types.UpdateTableRequest, callback?: (err: AWSError, data: Keyspaces.Types.UpdateTableResponse) => void): Request<Keyspaces.Types.UpdateTableResponse, AWSError>;
- /**
- * Adds new columns to the table or updates one of the table's settings, for example capacity mode, auto scaling, encryption, point-in-time recovery, or ttl settings. Note that you can only update one specific table setting per update operation.
- */
- updateTable(callback?: (err: AWSError, data: Keyspaces.Types.UpdateTableResponse) => void): Request<Keyspaces.Types.UpdateTableResponse, AWSError>;
- }
- declare namespace Keyspaces {
- export type ARN = string;
- export interface AutoScalingPolicy {
- /**
- * Auto scaling scales up capacity automatically when traffic exceeds this target utilization rate, and then back down when it falls below the target. A double between 20 and 90.
- */
- targetTrackingScalingPolicyConfiguration?: TargetTrackingScalingPolicyConfiguration;
- }
- export interface AutoScalingSettings {
- /**
- * This optional parameter enables auto scaling for the table if set to false.
- */
- autoScalingDisabled?: BooleanObject;
- /**
- * The minimum level of throughput the table should always be ready to support. The value must be between 1 and the max throughput per second quota for your account (40,000 by default).
- */
- minimumUnits?: CapacityUnits;
- /**
- * Manage costs by specifying the maximum amount of throughput to provision. The value must be between 1 and the max throughput per second quota for your account (40,000 by default).
- */
- maximumUnits?: CapacityUnits;
- /**
- * Amazon Keyspaces supports the target tracking auto scaling policy. With this policy, Amazon Keyspaces auto scaling ensures that the table's ratio of consumed to provisioned capacity stays at or near the target value that you specify. You define the target value as a percentage between 20 and 90.
- */
- scalingPolicy?: AutoScalingPolicy;
- }
- export interface AutoScalingSpecification {
- /**
- * The auto scaling settings for the table's write capacity.
- */
- writeCapacityAutoScaling?: AutoScalingSettings;
- /**
- * The auto scaling settings for the table's read capacity.
- */
- readCapacityAutoScaling?: AutoScalingSettings;
- }
- export type BooleanObject = boolean;
- export interface CapacitySpecification {
- /**
- * The read/write throughput capacity mode for a table. The options are: throughputMode:PAY_PER_REQUEST and throughputMode:PROVISIONED - Provisioned capacity mode requires readCapacityUnits and writeCapacityUnits as input. The default is throughput_mode:PAY_PER_REQUEST. For more information, see Read/write capacity modes in the Amazon Keyspaces Developer Guide.
- */
- throughputMode: ThroughputMode;
- /**
- * The throughput capacity specified for read operations defined in read capacity units (RCUs).
- */
- readCapacityUnits?: CapacityUnits;
- /**
- * The throughput capacity specified for write operations defined in write capacity units (WCUs).
- */
- writeCapacityUnits?: CapacityUnits;
- }
- export interface CapacitySpecificationSummary {
- /**
- * The read/write throughput capacity mode for a table. The options are: throughputMode:PAY_PER_REQUEST and throughputMode:PROVISIONED - Provisioned capacity mode requires readCapacityUnits and writeCapacityUnits as input. The default is throughput_mode:PAY_PER_REQUEST. For more information, see Read/write capacity modes in the Amazon Keyspaces Developer Guide.
- */
- throughputMode: ThroughputMode;
- /**
- * The throughput capacity specified for read operations defined in read capacity units (RCUs).
- */
- readCapacityUnits?: CapacityUnits;
- /**
- * The throughput capacity specified for write operations defined in write capacity units (WCUs).
- */
- writeCapacityUnits?: CapacityUnits;
- /**
- * The timestamp of the last operation that changed the provisioned throughput capacity of a table.
- */
- lastUpdateToPayPerRequestTimestamp?: Timestamp;
- }
- export type CapacityUnits = number;
- export interface ClientSideTimestamps {
- /**
- * Shows how to enable client-side timestamps settings for the specified table.
- */
- status: ClientSideTimestampsStatus;
- }
- export type ClientSideTimestampsStatus = "ENABLED"|string;
- export interface ClusteringKey {
- /**
- * The name(s) of the clustering column(s).
- */
- name: GenericString;
- /**
- * Sets the ascendant (ASC) or descendant (DESC) order modifier.
- */
- orderBy: SortOrder;
- }
- export type ClusteringKeyList = ClusteringKey[];
- export interface ColumnDefinition {
- /**
- * The name of the column.
- */
- name: GenericString;
- /**
- * The data type of the column. For a list of available data types, see Data types in the Amazon Keyspaces Developer Guide.
- */
- type: GenericString;
- }
- export type ColumnDefinitionList = ColumnDefinition[];
- export interface Comment {
- /**
- * An optional description of the table.
- */
- message: String;
- }
- export interface CreateKeyspaceRequest {
- /**
- * The name of the keyspace to be created.
- */
- keyspaceName: KeyspaceName;
- /**
- * A list of key-value pair tags to be attached to the keyspace. For more information, see Adding tags and labels to Amazon Keyspaces resources in the Amazon Keyspaces Developer Guide.
- */
- tags?: TagList;
- /**
- * The replication specification of the keyspace includes: replicationStrategy - the required value is SINGLE_REGION or MULTI_REGION. regionList - if the replicationStrategy is MULTI_REGION, the regionList requires the current Region and at least one additional Amazon Web Services Region where the keyspace is going to be replicated in. The maximum number of supported replication Regions including the current Region is six.
- */
- replicationSpecification?: ReplicationSpecification;
- }
- export interface CreateKeyspaceResponse {
- /**
- * The unique identifier of the keyspace in the format of an Amazon Resource Name (ARN).
- */
- resourceArn: ARN;
- }
- export interface CreateTableRequest {
- /**
- * The name of the keyspace that the table is going to be created in.
- */
- keyspaceName: KeyspaceName;
- /**
- * The name of the table.
- */
- tableName: TableName;
- /**
- * The schemaDefinition consists of the following parameters. For each column to be created: name - The name of the column. type - An Amazon Keyspaces data type. For more information, see Data types in the Amazon Keyspaces Developer Guide. The primary key of the table consists of the following columns: partitionKeys - The partition key can be a single column, or it can be a compound value composed of two or more columns. The partition key portion of the primary key is required and determines how Amazon Keyspaces stores your data. name - The name of each partition key column. clusteringKeys - The optional clustering column portion of your primary key determines how the data is clustered and sorted within each partition. name - The name of the clustering column. orderBy - Sets the ascendant (ASC) or descendant (DESC) order modifier. To define a column as static use staticColumns - Static columns store values that are shared by all rows in the same partition: name - The name of the column. type - An Amazon Keyspaces data type.
- */
- schemaDefinition: SchemaDefinition;
- /**
- * This parameter allows to enter a description of the table.
- */
- comment?: Comment;
- /**
- * Specifies the read/write throughput capacity mode for the table. The options are: throughputMode:PAY_PER_REQUEST and throughputMode:PROVISIONED - Provisioned capacity mode requires readCapacityUnits and writeCapacityUnits as input. The default is throughput_mode:PAY_PER_REQUEST. For more information, see Read/write capacity modes in the Amazon Keyspaces Developer Guide.
- */
- capacitySpecification?: CapacitySpecification;
- /**
- * Specifies how the encryption key for encryption at rest is managed for the table. You can choose one of the following KMS key (KMS key): type:AWS_OWNED_KMS_KEY - This key is owned by Amazon Keyspaces. type:CUSTOMER_MANAGED_KMS_KEY - This key is stored in your account and is created, owned, and managed by you. This option requires the kms_key_identifier of the KMS key in Amazon Resource Name (ARN) format as input. The default is type:AWS_OWNED_KMS_KEY. For more information, see Encryption at rest in the Amazon Keyspaces Developer Guide.
- */
- encryptionSpecification?: EncryptionSpecification;
- /**
- * Specifies if pointInTimeRecovery is enabled or disabled for the table. The options are: status=ENABLED status=DISABLED If it's not specified, the default is status=DISABLED. For more information, see Point-in-time recovery in the Amazon Keyspaces Developer Guide.
- */
- pointInTimeRecovery?: PointInTimeRecovery;
- /**
- * Enables Time to Live custom settings for the table. The options are: status:enabled status:disabled The default is status:disabled. After ttl is enabled, you can't disable it for the table. For more information, see Expiring data by using Amazon Keyspaces Time to Live (TTL) in the Amazon Keyspaces Developer Guide.
- */
- ttl?: TimeToLive;
- /**
- * The default Time to Live setting in seconds for the table. For more information, see Setting the default TTL value for a table in the Amazon Keyspaces Developer Guide.
- */
- defaultTimeToLive?: DefaultTimeToLive;
- /**
- * A list of key-value pair tags to be attached to the resource. For more information, see Adding tags and labels to Amazon Keyspaces resources in the Amazon Keyspaces Developer Guide.
- */
- tags?: TagList;
- /**
- * Enables client-side timestamps for the table. By default, the setting is disabled. You can enable client-side timestamps with the following option: status: "enabled" Once client-side timestamps are enabled for a table, this setting cannot be disabled.
- */
- clientSideTimestamps?: ClientSideTimestamps;
- /**
- * The optional auto scaling settings for a table in provisioned capacity mode. Specifies if the service can manage throughput capacity automatically on your behalf. Auto scaling helps you provision throughput capacity for variable workloads efficiently by increasing and decreasing your table's read and write capacity automatically in response to application traffic. For more information, see Managing throughput capacity automatically with Amazon Keyspaces auto scaling in the Amazon Keyspaces Developer Guide. By default, auto scaling is disabled for a table.
- */
- autoScalingSpecification?: AutoScalingSpecification;
- /**
- * The optional Amazon Web Services Region specific settings of a multi-Region table. These settings overwrite the general settings of the table for the specified Region. For a multi-Region table in provisioned capacity mode, you can configure the table's read capacity differently for each Region's replica. The write capacity, however, remains synchronized between all replicas to ensure that there's enough capacity to replicate writes across all Regions. To define the read capacity for a table replica in a specific Region, you can do so by configuring the following parameters. region: The Region where these settings are applied. (Required) readCapacityUnits: The provisioned read capacity units. (Optional) readCapacityAutoScaling: The read capacity auto scaling settings for the table. (Optional)
- */
- replicaSpecifications?: ReplicaSpecificationList;
- }
- export interface CreateTableResponse {
- /**
- * The unique identifier of the table in the format of an Amazon Resource Name (ARN).
- */
- resourceArn: ARN;
- }
- export type DefaultTimeToLive = number;
- export interface DeleteKeyspaceRequest {
- /**
- * The name of the keyspace to be deleted.
- */
- keyspaceName: KeyspaceName;
- }
- export interface DeleteKeyspaceResponse {
- }
- export interface DeleteTableRequest {
- /**
- * The name of the keyspace of the to be deleted table.
- */
- keyspaceName: KeyspaceName;
- /**
- * The name of the table to be deleted.
- */
- tableName: TableName;
- }
- export interface DeleteTableResponse {
- }
- export type DoubleObject = number;
- export interface EncryptionSpecification {
- /**
- * The encryption option specified for the table. You can choose one of the following KMS keys (KMS keys): type:AWS_OWNED_KMS_KEY - This key is owned by Amazon Keyspaces. type:CUSTOMER_MANAGED_KMS_KEY - This key is stored in your account and is created, owned, and managed by you. This option requires the kms_key_identifier of the KMS key in Amazon Resource Name (ARN) format as input. The default is type:AWS_OWNED_KMS_KEY. For more information, see Encryption at rest in the Amazon Keyspaces Developer Guide.
- */
- type: EncryptionType;
- /**
- * The Amazon Resource Name (ARN) of the customer managed KMS key, for example kms_key_identifier:ARN.
- */
- kmsKeyIdentifier?: kmsKeyARN;
- }
- export type EncryptionType = "CUSTOMER_MANAGED_KMS_KEY"|"AWS_OWNED_KMS_KEY"|string;
- export type GenericString = string;
- export interface GetKeyspaceRequest {
- /**
- * The name of the keyspace.
- */
- keyspaceName: KeyspaceName;
- }
- export interface GetKeyspaceResponse {
- /**
- * The name of the keyspace.
- */
- keyspaceName: KeyspaceName;
- /**
- * Returns the ARN of the keyspace.
- */
- resourceArn: ARN;
- /**
- * Returns the replication strategy of the keyspace. The options are SINGLE_REGION or MULTI_REGION.
- */
- replicationStrategy: rs;
- /**
- * If the replicationStrategy of the keyspace is MULTI_REGION, a list of replication Regions is returned.
- */
- replicationRegions?: RegionList;
- }
- export interface GetTableAutoScalingSettingsRequest {
- /**
- * The name of the keyspace.
- */
- keyspaceName: KeyspaceName;
- /**
- * The name of the table.
- */
- tableName: TableName;
- }
- export interface GetTableAutoScalingSettingsResponse {
- /**
- * The name of the keyspace.
- */
- keyspaceName: KeyspaceName;
- /**
- * The name of the table.
- */
- tableName: TableName;
- /**
- * The Amazon Resource Name (ARN) of the table.
- */
- resourceArn: ARN;
- /**
- * The auto scaling settings of the table.
- */
- autoScalingSpecification?: AutoScalingSpecification;
- /**
- * The Amazon Web Services Region specific settings of a multi-Region table. Returns the settings for all Regions the table is replicated in.
- */
- replicaSpecifications?: ReplicaAutoScalingSpecificationList;
- }
- export interface GetTableRequest {
- /**
- * The name of the keyspace that the table is stored in.
- */
- keyspaceName: KeyspaceName;
- /**
- * The name of the table.
- */
- tableName: TableName;
- }
- export interface GetTableResponse {
- /**
- * The name of the keyspace that the specified table is stored in.
- */
- keyspaceName: KeyspaceName;
- /**
- * The name of the specified table.
- */
- tableName: TableName;
- /**
- * The Amazon Resource Name (ARN) of the specified table.
- */
- resourceArn: ARN;
- /**
- * The creation timestamp of the specified table.
- */
- creationTimestamp?: Timestamp;
- /**
- * The current status of the specified table.
- */
- status?: TableStatus;
- /**
- * The schema definition of the specified table.
- */
- schemaDefinition?: SchemaDefinition;
- /**
- * The read/write throughput capacity mode for a table. The options are: throughputMode:PAY_PER_REQUEST throughputMode:PROVISIONED
- */
- capacitySpecification?: CapacitySpecificationSummary;
- /**
- * The encryption settings of the specified table.
- */
- encryptionSpecification?: EncryptionSpecification;
- /**
- * The point-in-time recovery status of the specified table.
- */
- pointInTimeRecovery?: PointInTimeRecoverySummary;
- /**
- * The custom Time to Live settings of the specified table.
- */
- ttl?: TimeToLive;
- /**
- * The default Time to Live settings in seconds of the specified table.
- */
- defaultTimeToLive?: DefaultTimeToLive;
- /**
- * The the description of the specified table.
- */
- comment?: Comment;
- /**
- * The client-side timestamps setting of the table.
- */
- clientSideTimestamps?: ClientSideTimestamps;
- /**
- * Returns the Amazon Web Services Region specific settings of all Regions a multi-Region table is replicated in.
- */
- replicaSpecifications?: ReplicaSpecificationSummaryList;
- }
- export type IntegerObject = number;
- export type KeyspaceName = string;
- export interface KeyspaceSummary {
- /**
- * The name of the keyspace.
- */
- keyspaceName: KeyspaceName;
- /**
- * The unique identifier of the keyspace in the format of an Amazon Resource Name (ARN).
- */
- resourceArn: ARN;
- /**
- * This property specifies if a keyspace is a single Region keyspace or a multi-Region keyspace. The available values are SINGLE_REGION or MULTI_REGION.
- */
- replicationStrategy: rs;
- /**
- * If the replicationStrategy of the keyspace is MULTI_REGION, a list of replication Regions is returned.
- */
- replicationRegions?: RegionList;
- }
- export type KeyspaceSummaryList = KeyspaceSummary[];
- export interface ListKeyspacesRequest {
- /**
- * The pagination token. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.
- */
- nextToken?: NextToken;
- /**
- * The total number of keyspaces to return in the output. If the total number of keyspaces available is more than the value specified, a NextToken is provided in the output. To resume pagination, provide the NextToken value as an argument of a subsequent API invocation.
- */
- maxResults?: MaxResults;
- }
- export interface ListKeyspacesResponse {
- /**
- * A token to specify where to start paginating. This is the NextToken from a previously truncated response.
- */
- nextToken?: NextToken;
- /**
- * A list of keyspaces.
- */
- keyspaces: KeyspaceSummaryList;
- }
- export interface ListTablesRequest {
- /**
- * The pagination token. To resume pagination, provide the NextToken value as an argument of a subsequent API invocation.
- */
- nextToken?: NextToken;
- /**
- * The total number of tables to return in the output. If the total number of tables available is more than the value specified, a NextToken is provided in the output. To resume pagination, provide the NextToken value as an argument of a subsequent API invocation.
- */
- maxResults?: MaxResults;
- /**
- * The name of the keyspace.
- */
- keyspaceName: KeyspaceName;
- }
- export interface ListTablesResponse {
- /**
- * A token to specify where to start paginating. This is the NextToken from a previously truncated response.
- */
- nextToken?: NextToken;
- /**
- * A list of tables.
- */
- tables?: TableSummaryList;
- }
- export interface ListTagsForResourceRequest {
- /**
- * The Amazon Resource Name (ARN) of the Amazon Keyspaces resource.
- */
- resourceArn: ARN;
- /**
- * The pagination token. To resume pagination, provide the NextToken value as argument of a subsequent API invocation.
- */
- nextToken?: NextToken;
- /**
- * The total number of tags to return in the output. If the total number of tags available is more than the value specified, a NextToken is provided in the output. To resume pagination, provide the NextToken value as an argument of a subsequent API invocation.
- */
- maxResults?: MaxResults;
- }
- export interface ListTagsForResourceResponse {
- /**
- * A token to specify where to start paginating. This is the NextToken from a previously truncated response.
- */
- nextToken?: NextToken;
- /**
- * A list of tags.
- */
- tags?: TagList;
- }
- export type MaxResults = number;
- export type NextToken = string;
- export interface PartitionKey {
- /**
- * The name(s) of the partition key column(s).
- */
- name: GenericString;
- }
- export type PartitionKeyList = PartitionKey[];
- export interface PointInTimeRecovery {
- /**
- * The options are: status=ENABLED status=DISABLED
- */
- status: PointInTimeRecoveryStatus;
- }
- export type PointInTimeRecoveryStatus = "ENABLED"|"DISABLED"|string;
- export interface PointInTimeRecoverySummary {
- /**
- * Shows if point-in-time recovery is enabled or disabled for the specified table.
- */
- status: PointInTimeRecoveryStatus;
- /**
- * Specifies the earliest possible restore point of the table in ISO 8601 format.
- */
- earliestRestorableTimestamp?: Timestamp;
- }
- export type RegionList = region[];
- export interface ReplicaAutoScalingSpecification {
- /**
- * The Amazon Web Services Region.
- */
- region?: region;
- /**
- * The auto scaling settings for a multi-Region table in the specified Amazon Web Services Region.
- */
- autoScalingSpecification?: AutoScalingSpecification;
- }
- export type ReplicaAutoScalingSpecificationList = ReplicaAutoScalingSpecification[];
- export interface ReplicaSpecification {
- /**
- * The Amazon Web Services Region.
- */
- region: region;
- /**
- * The provisioned read capacity units for the multi-Region table in the specified Amazon Web Services Region.
- */
- readCapacityUnits?: CapacityUnits;
- /**
- * The read capacity auto scaling settings for the multi-Region table in the specified Amazon Web Services Region.
- */
- readCapacityAutoScaling?: AutoScalingSettings;
- }
- export type ReplicaSpecificationList = ReplicaSpecification[];
- export interface ReplicaSpecificationSummary {
- /**
- * The Amazon Web Services Region.
- */
- region?: region;
- /**
- * The status of the multi-Region table in the specified Amazon Web Services Region.
- */
- status?: TableStatus;
- capacitySpecification?: CapacitySpecificationSummary;
- }
- export type ReplicaSpecificationSummaryList = ReplicaSpecificationSummary[];
- export interface ReplicationSpecification {
- /**
- * The replicationStrategy of a keyspace, the required value is SINGLE_REGION or MULTI_REGION.
- */
- replicationStrategy: rs;
- /**
- * The regionList can contain up to six Amazon Web Services Regions where the keyspace is replicated in.
- */
- regionList?: RegionList;
- }
- export interface RestoreTableRequest {
- /**
- * The keyspace name of the source table.
- */
- sourceKeyspaceName: KeyspaceName;
- /**
- * The name of the source table.
- */
- sourceTableName: TableName;
- /**
- * The name of the target keyspace.
- */
- targetKeyspaceName: KeyspaceName;
- /**
- * The name of the target table.
- */
- targetTableName: TableName;
- /**
- * The restore timestamp in ISO 8601 format.
- */
- restoreTimestamp?: Timestamp;
- /**
- * Specifies the read/write throughput capacity mode for the target table. The options are: throughputMode:PAY_PER_REQUEST throughputMode:PROVISIONED - Provisioned capacity mode requires readCapacityUnits and writeCapacityUnits as input. The default is throughput_mode:PAY_PER_REQUEST. For more information, see Read/write capacity modes in the Amazon Keyspaces Developer Guide.
- */
- capacitySpecificationOverride?: CapacitySpecification;
- /**
- * Specifies the encryption settings for the target table. You can choose one of the following KMS key (KMS key): type:AWS_OWNED_KMS_KEY - This key is owned by Amazon Keyspaces. type:CUSTOMER_MANAGED_KMS_KEY - This key is stored in your account and is created, owned, and managed by you. This option requires the kms_key_identifier of the KMS key in Amazon Resource Name (ARN) format as input. The default is type:AWS_OWNED_KMS_KEY. For more information, see Encryption at rest in the Amazon Keyspaces Developer Guide.
- */
- encryptionSpecificationOverride?: EncryptionSpecification;
- /**
- * Specifies the pointInTimeRecovery settings for the target table. The options are: status=ENABLED status=DISABLED If it's not specified, the default is status=DISABLED. For more information, see Point-in-time recovery in the Amazon Keyspaces Developer Guide.
- */
- pointInTimeRecoveryOverride?: PointInTimeRecovery;
- /**
- * A list of key-value pair tags to be attached to the restored table. For more information, see Adding tags and labels to Amazon Keyspaces resources in the Amazon Keyspaces Developer Guide.
- */
- tagsOverride?: TagList;
- /**
- * The optional auto scaling settings for the restored table in provisioned capacity mode. Specifies if the service can manage throughput capacity of a provisioned table automatically on your behalf. Amazon Keyspaces auto scaling helps you provision throughput capacity for variable workloads efficiently by increasing and decreasing your table's read and write capacity automatically in response to application traffic. For more information, see Managing throughput capacity automatically with Amazon Keyspaces auto scaling in the Amazon Keyspaces Developer Guide.
- */
- autoScalingSpecification?: AutoScalingSpecification;
- /**
- * The optional Region specific settings of a multi-Regional table.
- */
- replicaSpecifications?: ReplicaSpecificationList;
- }
- export interface RestoreTableResponse {
- /**
- * The Amazon Resource Name (ARN) of the restored table.
- */
- restoredTableARN: ARN;
- }
- export interface SchemaDefinition {
- /**
- * The regular columns of the table.
- */
- allColumns: ColumnDefinitionList;
- /**
- * The columns that are part of the partition key of the table .
- */
- partitionKeys: PartitionKeyList;
- /**
- * The columns that are part of the clustering key of the table.
- */
- clusteringKeys?: ClusteringKeyList;
- /**
- * The columns that have been defined as STATIC. Static columns store values that are shared by all rows in the same partition.
- */
- staticColumns?: StaticColumnList;
- }
- export type SortOrder = "ASC"|"DESC"|string;
- export interface StaticColumn {
- /**
- * The name of the static column.
- */
- name: GenericString;
- }
- export type StaticColumnList = StaticColumn[];
- export type String = string;
- export type TableName = string;
- export type TableStatus = "ACTIVE"|"CREATING"|"UPDATING"|"DELETING"|"DELETED"|"RESTORING"|"INACCESSIBLE_ENCRYPTION_CREDENTIALS"|string;
- export interface TableSummary {
- /**
- * The name of the keyspace that the table is stored in.
- */
- keyspaceName: KeyspaceName;
- /**
- * The name of the table.
- */
- tableName: TableName;
- /**
- * The unique identifier of the table in the format of an Amazon Resource Name (ARN).
- */
- resourceArn: ARN;
- }
- export type TableSummaryList = TableSummary[];
- export interface Tag {
- /**
- * The key of the tag. Tag keys are case sensitive. Each Amazon Keyspaces resource can only have up to one tag with the same key. If you try to add an existing tag (same key), the existing tag value will be updated to the new value.
- */
- key: TagKey;
- /**
- * The value of the tag. Tag values are case-sensitive and can be null.
- */
- value: TagValue;
- }
- export type TagKey = string;
- export type TagList = Tag[];
- export interface TagResourceRequest {
- /**
- * The Amazon Resource Name (ARN) of the Amazon Keyspaces resource to which to add tags.
- */
- resourceArn: ARN;
- /**
- * The tags to be assigned to the Amazon Keyspaces resource.
- */
- tags: TagList;
- }
- export interface TagResourceResponse {
- }
- export type TagValue = string;
- export interface TargetTrackingScalingPolicyConfiguration {
- /**
- * Specifies if scale-in is enabled. When auto scaling automatically decreases capacity for a table, the table scales in. When scaling policies are set, they can't scale in the table lower than its minimum capacity.
- */
- disableScaleIn?: BooleanObject;
- /**
- * Specifies a scale-in cool down period. A cooldown period in seconds between scaling activities that lets the table stabilize before another scaling activity starts.
- */
- scaleInCooldown?: IntegerObject;
- /**
- * Specifies a scale out cool down period. A cooldown period in seconds between scaling activities that lets the table stabilize before another scaling activity starts.
- */
- scaleOutCooldown?: IntegerObject;
- /**
- * Specifies the target value for the target tracking auto scaling policy. Amazon Keyspaces auto scaling scales up capacity automatically when traffic exceeds this target utilization rate, and then back down when it falls below the target. This ensures that the ratio of consumed capacity to provisioned capacity stays at or near this value. You define targetValue as a percentage. A double between 20 and 90.
- */
- targetValue: DoubleObject;
- }
- export type ThroughputMode = "PAY_PER_REQUEST"|"PROVISIONED"|string;
- export interface TimeToLive {
- /**
- * Shows how to enable custom Time to Live (TTL) settings for the specified table.
- */
- status: TimeToLiveStatus;
- }
- export type TimeToLiveStatus = "ENABLED"|string;
- export type Timestamp = Date;
- export interface UntagResourceRequest {
- /**
- * The Amazon Keyspaces resource that the tags will be removed from. This value is an Amazon Resource Name (ARN).
- */
- resourceArn: ARN;
- /**
- * A list of existing tags to be removed from the Amazon Keyspaces resource.
- */
- tags: TagList;
- }
- export interface UntagResourceResponse {
- }
- export interface UpdateTableRequest {
- /**
- * The name of the keyspace the specified table is stored in.
- */
- keyspaceName: KeyspaceName;
- /**
- * The name of the table.
- */
- tableName: TableName;
- /**
- * For each column to be added to the specified table: name - The name of the column. type - An Amazon Keyspaces data type. For more information, see Data types in the Amazon Keyspaces Developer Guide.
- */
- addColumns?: ColumnDefinitionList;
- /**
- * Modifies the read/write throughput capacity mode for the table. The options are: throughputMode:PAY_PER_REQUEST and throughputMode:PROVISIONED - Provisioned capacity mode requires readCapacityUnits and writeCapacityUnits as input. The default is throughput_mode:PAY_PER_REQUEST. For more information, see Read/write capacity modes in the Amazon Keyspaces Developer Guide.
- */
- capacitySpecification?: CapacitySpecification;
- /**
- * Modifies the encryption settings of the table. You can choose one of the following KMS key (KMS key): type:AWS_OWNED_KMS_KEY - This key is owned by Amazon Keyspaces. type:CUSTOMER_MANAGED_KMS_KEY - This key is stored in your account and is created, owned, and managed by you. This option requires the kms_key_identifier of the KMS key in Amazon Resource Name (ARN) format as input. The default is AWS_OWNED_KMS_KEY. For more information, see Encryption at rest in the Amazon Keyspaces Developer Guide.
- */
- encryptionSpecification?: EncryptionSpecification;
- /**
- * Modifies the pointInTimeRecovery settings of the table. The options are: status=ENABLED status=DISABLED If it's not specified, the default is status=DISABLED. For more information, see Point-in-time recovery in the Amazon Keyspaces Developer Guide.
- */
- pointInTimeRecovery?: PointInTimeRecovery;
- /**
- * Modifies Time to Live custom settings for the table. The options are: status:enabled status:disabled The default is status:disabled. After ttl is enabled, you can't disable it for the table. For more information, see Expiring data by using Amazon Keyspaces Time to Live (TTL) in the Amazon Keyspaces Developer Guide.
- */
- ttl?: TimeToLive;
- /**
- * The default Time to Live setting in seconds for the table. For more information, see Setting the default TTL value for a table in the Amazon Keyspaces Developer Guide.
- */
- defaultTimeToLive?: DefaultTimeToLive;
- /**
- * Enables client-side timestamps for the table. By default, the setting is disabled. You can enable client-side timestamps with the following option: status: "enabled" Once client-side timestamps are enabled for a table, this setting cannot be disabled.
- */
- clientSideTimestamps?: ClientSideTimestamps;
- /**
- * The optional auto scaling settings to update for a table in provisioned capacity mode. Specifies if the service can manage throughput capacity of a provisioned table automatically on your behalf. Amazon Keyspaces auto scaling helps you provision throughput capacity for variable workloads efficiently by increasing and decreasing your table's read and write capacity automatically in response to application traffic. If auto scaling is already enabled for the table, you can use UpdateTable to update the minimum and maximum values or the auto scaling policy settings independently. For more information, see Managing throughput capacity automatically with Amazon Keyspaces auto scaling in the Amazon Keyspaces Developer Guide.
- */
- autoScalingSpecification?: AutoScalingSpecification;
- /**
- * The Region specific settings of a multi-Regional table.
- */
- replicaSpecifications?: ReplicaSpecificationList;
- }
- export interface UpdateTableResponse {
- /**
- * The Amazon Resource Name (ARN) of the modified table.
- */
- resourceArn: ARN;
- }
- export type kmsKeyARN = string;
- export type region = string;
- export type rs = "SINGLE_REGION"|"MULTI_REGION"|string;
- /**
- * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
- */
- export type apiVersion = "2022-02-10"|"latest"|string;
- export interface ClientApiVersions {
- /**
- * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
- */
- apiVersion?: apiVersion;
- }
- export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
- /**
- * Contains interfaces for use with the Keyspaces client.
- */
- export import Types = Keyspaces;
- }
- export = Keyspaces;
|