Skip to content

finspaceClient#

Index > finspace > finspaceClient

Auto-generated documentation for finspace type annotations stubs module types-aiobotocore-finspace.

finspaceClient#

Type annotations and code completion for session.create_client("finspace") boto3 documentation

finspaceClient usage example

from aiobotocore.session import get_session
from types_aiobotocore_finspace.client import finspaceClient

session = get_session()
async with session.create_client("finspace") as client:
    client: finspaceClient

Exceptions#

aiobotocore client exceptions are generated in runtime. This class provides code completion for session.create_client("finspace").exceptions structure.

finspaceClient.exceptions usage example

async with session.create_client("finspace") as client:
    try:
        do_something(client)
    except (
            client.AccessDeniedException,
        client.ClientError,
        client.ConflictException,
        client.InternalServerException,
        client.InvalidRequestException,
        client.LimitExceededException,
        client.ResourceAlreadyExistsException,
        client.ResourceNotFoundException,
        client.ServiceQuotaExceededException,
        client.ThrottlingException,
        client.ValidationException,
    ) as e:
        print(e)
finspaceClient usage type checking example

from types_aiobotocore_finspace.client import Exceptions

def handle_error(exc: Exceptions.AccessDeniedException) -> None:
    ...

Methods#

can_paginate#

Check if an operation can be paginated.

Type annotations and code completion for session.create_client("finspace").can_paginate method. boto3 documentation

# can_paginate method definition

def can_paginate(
    self,
    operation_name: str,
) -> bool:
    ...

close#

Closes underlying endpoint connections.

Type annotations and code completion for session.create_client("finspace").close method. boto3 documentation

# close method definition

await def close(
    self,
) -> None:
    ...

create_environment#

Create a new FinSpace environment.

Type annotations and code completion for session.create_client("finspace").create_environment method. boto3 documentation

# create_environment method definition

await def create_environment(
    self,
    *,
    name: str,
    description: str = ...,
    kmsKeyId: str = ...,
    tags: Mapping[str, str] = ...,
    federationMode: FederationModeType = ...,  # (1)
    federationParameters: FederationParametersTypeDef = ...,  # (2)
    superuserParameters: SuperuserParametersTypeDef = ...,  # (3)
    dataBundles: Sequence[str] = ...,
) -> CreateEnvironmentResponseTypeDef:  # (4)
    ...
  1. See FederationModeType
  2. See FederationParametersTypeDef
  3. See SuperuserParametersTypeDef
  4. See CreateEnvironmentResponseTypeDef
# create_environment method usage example with argument unpacking

kwargs: CreateEnvironmentRequestRequestTypeDef = {  # (1)
    "name": ...,
}

parent.create_environment(**kwargs)
  1. See CreateEnvironmentRequestRequestTypeDef

create_kx_changeset#

Creates a changeset for a kdb database.

Type annotations and code completion for session.create_client("finspace").create_kx_changeset method. boto3 documentation

# create_kx_changeset method definition

await def create_kx_changeset(
    self,
    *,
    environmentId: str,
    databaseName: str,
    changeRequests: Sequence[ChangeRequestTypeDef],  # (1)
    clientToken: str,
) -> CreateKxChangesetResponseTypeDef:  # (2)
    ...
  1. See ChangeRequestTypeDef
  2. See CreateKxChangesetResponseTypeDef
# create_kx_changeset method usage example with argument unpacking

kwargs: CreateKxChangesetRequestRequestTypeDef = {  # (1)
    "environmentId": ...,
    "databaseName": ...,
    "changeRequests": ...,
    "clientToken": ...,
}

parent.create_kx_changeset(**kwargs)
  1. See CreateKxChangesetRequestRequestTypeDef

create_kx_cluster#

Creates a new kdb cluster.

Type annotations and code completion for session.create_client("finspace").create_kx_cluster method. boto3 documentation

# create_kx_cluster method definition

await def create_kx_cluster(
    self,
    *,
    environmentId: str,
    clusterName: str,
    clusterType: KxClusterTypeType,  # (1)
    capacityConfiguration: CapacityConfigurationTypeDef,  # (2)
    releaseLabel: str,
    azMode: KxAzModeType,  # (3)
    clientToken: str = ...,
    databases: Sequence[KxDatabaseConfigurationTypeDef] = ...,  # (4)
    cacheStorageConfigurations: Sequence[KxCacheStorageConfigurationTypeDef] = ...,  # (5)
    autoScalingConfiguration: AutoScalingConfigurationTypeDef = ...,  # (6)
    clusterDescription: str = ...,
    vpcConfiguration: VpcConfigurationTypeDef = ...,  # (7)
    initializationScript: str = ...,
    commandLineArguments: Sequence[KxCommandLineArgumentTypeDef] = ...,  # (8)
    code: CodeConfigurationTypeDef = ...,  # (9)
    executionRole: str = ...,
    savedownStorageConfiguration: KxSavedownStorageConfigurationTypeDef = ...,  # (10)
    availabilityZoneId: str = ...,
    tags: Mapping[str, str] = ...,
) -> CreateKxClusterResponseTypeDef:  # (11)
    ...
  1. See KxClusterTypeType
  2. See CapacityConfigurationTypeDef
  3. See KxAzModeType
  4. See KxDatabaseConfigurationTypeDef
  5. See KxCacheStorageConfigurationTypeDef
  6. See AutoScalingConfigurationTypeDef
  7. See VpcConfigurationTypeDef
  8. See KxCommandLineArgumentTypeDef
  9. See CodeConfigurationTypeDef
  10. See KxSavedownStorageConfigurationTypeDef
  11. See CreateKxClusterResponseTypeDef
# create_kx_cluster method usage example with argument unpacking

kwargs: CreateKxClusterRequestRequestTypeDef = {  # (1)
    "environmentId": ...,
    "clusterName": ...,
    "clusterType": ...,
    "capacityConfiguration": ...,
    "releaseLabel": ...,
    "azMode": ...,
}

parent.create_kx_cluster(**kwargs)
  1. See CreateKxClusterRequestRequestTypeDef

create_kx_database#

Creates a new kdb database in the environment.

Type annotations and code completion for session.create_client("finspace").create_kx_database method. boto3 documentation

# create_kx_database method definition

await def create_kx_database(
    self,
    *,
    environmentId: str,
    databaseName: str,
    clientToken: str,
    description: str = ...,
    tags: Mapping[str, str] = ...,
) -> CreateKxDatabaseResponseTypeDef:  # (1)
    ...
  1. See CreateKxDatabaseResponseTypeDef
# create_kx_database method usage example with argument unpacking

kwargs: CreateKxDatabaseRequestRequestTypeDef = {  # (1)
    "environmentId": ...,
    "databaseName": ...,
    "clientToken": ...,
}

parent.create_kx_database(**kwargs)
  1. See CreateKxDatabaseRequestRequestTypeDef

create_kx_environment#

Creates a managed kdb environment for the account.

Type annotations and code completion for session.create_client("finspace").create_kx_environment method. boto3 documentation

# create_kx_environment method definition

await def create_kx_environment(
    self,
    *,
    name: str,
    kmsKeyId: str,
    description: str = ...,
    tags: Mapping[str, str] = ...,
    clientToken: str = ...,
) -> CreateKxEnvironmentResponseTypeDef:  # (1)
    ...
  1. See CreateKxEnvironmentResponseTypeDef
# create_kx_environment method usage example with argument unpacking

kwargs: CreateKxEnvironmentRequestRequestTypeDef = {  # (1)
    "name": ...,
    "kmsKeyId": ...,
}

parent.create_kx_environment(**kwargs)
  1. See CreateKxEnvironmentRequestRequestTypeDef

create_kx_user#

Creates a user in FinSpace kdb environment with an associated IAM role.

Type annotations and code completion for session.create_client("finspace").create_kx_user method. boto3 documentation

# create_kx_user method definition

await def create_kx_user(
    self,
    *,
    environmentId: str,
    userName: str,
    iamRole: str,
    tags: Mapping[str, str] = ...,
    clientToken: str = ...,
) -> CreateKxUserResponseTypeDef:  # (1)
    ...
  1. See CreateKxUserResponseTypeDef
# create_kx_user method usage example with argument unpacking

kwargs: CreateKxUserRequestRequestTypeDef = {  # (1)
    "environmentId": ...,
    "userName": ...,
    "iamRole": ...,
}

parent.create_kx_user(**kwargs)
  1. See CreateKxUserRequestRequestTypeDef

delete_environment#

Delete an FinSpace environment.

Type annotations and code completion for session.create_client("finspace").delete_environment method. boto3 documentation

# delete_environment method definition

await def delete_environment(
    self,
    *,
    environmentId: str,
) -> Dict[str, Any]:
    ...
# delete_environment method usage example with argument unpacking

kwargs: DeleteEnvironmentRequestRequestTypeDef = {  # (1)
    "environmentId": ...,
}

parent.delete_environment(**kwargs)
  1. See DeleteEnvironmentRequestRequestTypeDef

delete_kx_cluster#

Deletes a kdb cluster.

Type annotations and code completion for session.create_client("finspace").delete_kx_cluster method. boto3 documentation

# delete_kx_cluster method definition

await def delete_kx_cluster(
    self,
    *,
    environmentId: str,
    clusterName: str,
    clientToken: str = ...,
) -> Dict[str, Any]:
    ...
# delete_kx_cluster method usage example with argument unpacking

kwargs: DeleteKxClusterRequestRequestTypeDef = {  # (1)
    "environmentId": ...,
    "clusterName": ...,
}

parent.delete_kx_cluster(**kwargs)
  1. See DeleteKxClusterRequestRequestTypeDef

delete_kx_database#

Deletes the specified database and all of its associated data.

Type annotations and code completion for session.create_client("finspace").delete_kx_database method. boto3 documentation

# delete_kx_database method definition

await def delete_kx_database(
    self,
    *,
    environmentId: str,
    databaseName: str,
    clientToken: str,
) -> Dict[str, Any]:
    ...
# delete_kx_database method usage example with argument unpacking

kwargs: DeleteKxDatabaseRequestRequestTypeDef = {  # (1)
    "environmentId": ...,
    "databaseName": ...,
    "clientToken": ...,
}

parent.delete_kx_database(**kwargs)
  1. See DeleteKxDatabaseRequestRequestTypeDef

delete_kx_environment#

Deletes the kdb environment.

Type annotations and code completion for session.create_client("finspace").delete_kx_environment method. boto3 documentation

# delete_kx_environment method definition

await def delete_kx_environment(
    self,
    *,
    environmentId: str,
) -> Dict[str, Any]:
    ...
# delete_kx_environment method usage example with argument unpacking

kwargs: DeleteKxEnvironmentRequestRequestTypeDef = {  # (1)
    "environmentId": ...,
}

parent.delete_kx_environment(**kwargs)
  1. See DeleteKxEnvironmentRequestRequestTypeDef

delete_kx_user#

Deletes a user in the specified kdb environment.

Type annotations and code completion for session.create_client("finspace").delete_kx_user method. boto3 documentation

# delete_kx_user method definition

await def delete_kx_user(
    self,
    *,
    userName: str,
    environmentId: str,
) -> Dict[str, Any]:
    ...
# delete_kx_user method usage example with argument unpacking

kwargs: DeleteKxUserRequestRequestTypeDef = {  # (1)
    "userName": ...,
    "environmentId": ...,
}

parent.delete_kx_user(**kwargs)
  1. See DeleteKxUserRequestRequestTypeDef

generate_presigned_url#

Generate a presigned url given a client, its method, and arguments.

Type annotations and code completion for session.create_client("finspace").generate_presigned_url method. boto3 documentation

# generate_presigned_url method definition

await def generate_presigned_url(
    self,
    ClientMethod: str,
    Params: Mapping[str, Any] = ...,
    ExpiresIn: int = 3600,
    HttpMethod: str = ...,
) -> str:
    ...

get_environment#

Returns the FinSpace environment object.

Type annotations and code completion for session.create_client("finspace").get_environment method. boto3 documentation

# get_environment method definition

await def get_environment(
    self,
    *,
    environmentId: str,
) -> GetEnvironmentResponseTypeDef:  # (1)
    ...
  1. See GetEnvironmentResponseTypeDef
# get_environment method usage example with argument unpacking

kwargs: GetEnvironmentRequestRequestTypeDef = {  # (1)
    "environmentId": ...,
}

parent.get_environment(**kwargs)
  1. See GetEnvironmentRequestRequestTypeDef

get_kx_changeset#

Returns information about a kdb changeset.

Type annotations and code completion for session.create_client("finspace").get_kx_changeset method. boto3 documentation

# get_kx_changeset method definition

await def get_kx_changeset(
    self,
    *,
    environmentId: str,
    databaseName: str,
    changesetId: str,
) -> GetKxChangesetResponseTypeDef:  # (1)
    ...
  1. See GetKxChangesetResponseTypeDef
# get_kx_changeset method usage example with argument unpacking

kwargs: GetKxChangesetRequestRequestTypeDef = {  # (1)
    "environmentId": ...,
    "databaseName": ...,
    "changesetId": ...,
}

parent.get_kx_changeset(**kwargs)
  1. See GetKxChangesetRequestRequestTypeDef

get_kx_cluster#

Retrieves information about a kdb cluster.

Type annotations and code completion for session.create_client("finspace").get_kx_cluster method. boto3 documentation

# get_kx_cluster method definition

await def get_kx_cluster(
    self,
    *,
    environmentId: str,
    clusterName: str,
) -> GetKxClusterResponseTypeDef:  # (1)
    ...
  1. See GetKxClusterResponseTypeDef
# get_kx_cluster method usage example with argument unpacking

kwargs: GetKxClusterRequestRequestTypeDef = {  # (1)
    "environmentId": ...,
    "clusterName": ...,
}

parent.get_kx_cluster(**kwargs)
  1. See GetKxClusterRequestRequestTypeDef

get_kx_connection_string#

Retrieves a connection string for a user to connect to a kdb cluster.

Type annotations and code completion for session.create_client("finspace").get_kx_connection_string method. boto3 documentation

# get_kx_connection_string method definition

await def get_kx_connection_string(
    self,
    *,
    userArn: str,
    environmentId: str,
    clusterName: str,
) -> GetKxConnectionStringResponseTypeDef:  # (1)
    ...
  1. See GetKxConnectionStringResponseTypeDef
# get_kx_connection_string method usage example with argument unpacking

kwargs: GetKxConnectionStringRequestRequestTypeDef = {  # (1)
    "userArn": ...,
    "environmentId": ...,
    "clusterName": ...,
}

parent.get_kx_connection_string(**kwargs)
  1. See GetKxConnectionStringRequestRequestTypeDef

get_kx_database#

Returns database information for the specified environment ID.

Type annotations and code completion for session.create_client("finspace").get_kx_database method. boto3 documentation

# get_kx_database method definition

await def get_kx_database(
    self,
    *,
    environmentId: str,
    databaseName: str,
) -> GetKxDatabaseResponseTypeDef:  # (1)
    ...
  1. See GetKxDatabaseResponseTypeDef
# get_kx_database method usage example with argument unpacking

kwargs: GetKxDatabaseRequestRequestTypeDef = {  # (1)
    "environmentId": ...,
    "databaseName": ...,
}

parent.get_kx_database(**kwargs)
  1. See GetKxDatabaseRequestRequestTypeDef

get_kx_environment#

Retrieves all the information for the specified kdb environment.

Type annotations and code completion for session.create_client("finspace").get_kx_environment method. boto3 documentation

# get_kx_environment method definition

await def get_kx_environment(
    self,
    *,
    environmentId: str,
) -> GetKxEnvironmentResponseTypeDef:  # (1)
    ...
  1. See GetKxEnvironmentResponseTypeDef
# get_kx_environment method usage example with argument unpacking

kwargs: GetKxEnvironmentRequestRequestTypeDef = {  # (1)
    "environmentId": ...,
}

parent.get_kx_environment(**kwargs)
  1. See GetKxEnvironmentRequestRequestTypeDef

get_kx_user#

Retrieves information about the specified kdb user.

Type annotations and code completion for session.create_client("finspace").get_kx_user method. boto3 documentation

# get_kx_user method definition

await def get_kx_user(
    self,
    *,
    userName: str,
    environmentId: str,
) -> GetKxUserResponseTypeDef:  # (1)
    ...
  1. See GetKxUserResponseTypeDef
# get_kx_user method usage example with argument unpacking

kwargs: GetKxUserRequestRequestTypeDef = {  # (1)
    "userName": ...,
    "environmentId": ...,
}

parent.get_kx_user(**kwargs)
  1. See GetKxUserRequestRequestTypeDef

list_environments#

A list of all of your FinSpace environments.

Type annotations and code completion for session.create_client("finspace").list_environments method. boto3 documentation

# list_environments method definition

await def list_environments(
    self,
    *,
    nextToken: str = ...,
    maxResults: int = ...,
) -> ListEnvironmentsResponseTypeDef:  # (1)
    ...
  1. See ListEnvironmentsResponseTypeDef
# list_environments method usage example with argument unpacking

kwargs: ListEnvironmentsRequestRequestTypeDef = {  # (1)
    "nextToken": ...,
}

parent.list_environments(**kwargs)
  1. See ListEnvironmentsRequestRequestTypeDef

list_kx_changesets#

Returns a list of all the changesets for a database.

Type annotations and code completion for session.create_client("finspace").list_kx_changesets method. boto3 documentation

# list_kx_changesets method definition

await def list_kx_changesets(
    self,
    *,
    environmentId: str,
    databaseName: str,
    nextToken: str = ...,
    maxResults: int = ...,
) -> ListKxChangesetsResponseTypeDef:  # (1)
    ...
  1. See ListKxChangesetsResponseTypeDef
# list_kx_changesets method usage example with argument unpacking

kwargs: ListKxChangesetsRequestRequestTypeDef = {  # (1)
    "environmentId": ...,
    "databaseName": ...,
}

parent.list_kx_changesets(**kwargs)
  1. See ListKxChangesetsRequestRequestTypeDef

list_kx_cluster_nodes#

Lists all the nodes in a kdb cluster.

Type annotations and code completion for session.create_client("finspace").list_kx_cluster_nodes method. boto3 documentation

# list_kx_cluster_nodes method definition

await def list_kx_cluster_nodes(
    self,
    *,
    environmentId: str,
    clusterName: str,
    nextToken: str = ...,
    maxResults: int = ...,
) -> ListKxClusterNodesResponseTypeDef:  # (1)
    ...
  1. See ListKxClusterNodesResponseTypeDef
# list_kx_cluster_nodes method usage example with argument unpacking

kwargs: ListKxClusterNodesRequestRequestTypeDef = {  # (1)
    "environmentId": ...,
    "clusterName": ...,
}

parent.list_kx_cluster_nodes(**kwargs)
  1. See ListKxClusterNodesRequestRequestTypeDef

list_kx_clusters#

Returns a list of clusters.

Type annotations and code completion for session.create_client("finspace").list_kx_clusters method. boto3 documentation

# list_kx_clusters method definition

await def list_kx_clusters(
    self,
    *,
    environmentId: str,
    clusterType: KxClusterTypeType = ...,  # (1)
    maxResults: int = ...,
    nextToken: str = ...,
) -> ListKxClustersResponseTypeDef:  # (2)
    ...
  1. See KxClusterTypeType
  2. See ListKxClustersResponseTypeDef
# list_kx_clusters method usage example with argument unpacking

kwargs: ListKxClustersRequestRequestTypeDef = {  # (1)
    "environmentId": ...,
}

parent.list_kx_clusters(**kwargs)
  1. See ListKxClustersRequestRequestTypeDef

list_kx_databases#

Returns a list of all the databases in the kdb environment.

Type annotations and code completion for session.create_client("finspace").list_kx_databases method. boto3 documentation

# list_kx_databases method definition

await def list_kx_databases(
    self,
    *,
    environmentId: str,
    nextToken: str = ...,
    maxResults: int = ...,
) -> ListKxDatabasesResponseTypeDef:  # (1)
    ...
  1. See ListKxDatabasesResponseTypeDef
# list_kx_databases method usage example with argument unpacking

kwargs: ListKxDatabasesRequestRequestTypeDef = {  # (1)
    "environmentId": ...,
}

parent.list_kx_databases(**kwargs)
  1. See ListKxDatabasesRequestRequestTypeDef

list_kx_environments#

Returns a list of kdb environments created in an account.

Type annotations and code completion for session.create_client("finspace").list_kx_environments method. boto3 documentation

# list_kx_environments method definition

await def list_kx_environments(
    self,
    *,
    nextToken: str = ...,
    maxResults: int = ...,
) -> ListKxEnvironmentsResponseTypeDef:  # (1)
    ...
  1. See ListKxEnvironmentsResponseTypeDef
# list_kx_environments method usage example with argument unpacking

kwargs: ListKxEnvironmentsRequestRequestTypeDef = {  # (1)
    "nextToken": ...,
}

parent.list_kx_environments(**kwargs)
  1. See ListKxEnvironmentsRequestRequestTypeDef

list_kx_users#

Lists all the users in a kdb environment.

Type annotations and code completion for session.create_client("finspace").list_kx_users method. boto3 documentation

# list_kx_users method definition

await def list_kx_users(
    self,
    *,
    environmentId: str,
    nextToken: str = ...,
    maxResults: int = ...,
) -> ListKxUsersResponseTypeDef:  # (1)
    ...
  1. See ListKxUsersResponseTypeDef
# list_kx_users method usage example with argument unpacking

kwargs: ListKxUsersRequestRequestTypeDef = {  # (1)
    "environmentId": ...,
}

parent.list_kx_users(**kwargs)
  1. See ListKxUsersRequestRequestTypeDef

list_tags_for_resource#

A list of all tags for a resource.

Type annotations and code completion for session.create_client("finspace").list_tags_for_resource method. boto3 documentation

# list_tags_for_resource method definition

await def list_tags_for_resource(
    self,
    *,
    resourceArn: str,
) -> ListTagsForResourceResponseTypeDef:  # (1)
    ...
  1. See ListTagsForResourceResponseTypeDef
# list_tags_for_resource method usage example with argument unpacking

kwargs: ListTagsForResourceRequestRequestTypeDef = {  # (1)
    "resourceArn": ...,
}

parent.list_tags_for_resource(**kwargs)
  1. See ListTagsForResourceRequestRequestTypeDef

tag_resource#

Adds metadata tags to a FinSpace resource.

Type annotations and code completion for session.create_client("finspace").tag_resource method. boto3 documentation

# tag_resource method definition

await def tag_resource(
    self,
    *,
    resourceArn: str,
    tags: Mapping[str, str],
) -> Dict[str, Any]:
    ...
# tag_resource method usage example with argument unpacking

kwargs: TagResourceRequestRequestTypeDef = {  # (1)
    "resourceArn": ...,
    "tags": ...,
}

parent.tag_resource(**kwargs)
  1. See TagResourceRequestRequestTypeDef

untag_resource#

Removes metadata tags from a FinSpace resource.

Type annotations and code completion for session.create_client("finspace").untag_resource method. boto3 documentation

# untag_resource method definition

await def untag_resource(
    self,
    *,
    resourceArn: str,
    tagKeys: Sequence[str],
) -> Dict[str, Any]:
    ...
# untag_resource method usage example with argument unpacking

kwargs: UntagResourceRequestRequestTypeDef = {  # (1)
    "resourceArn": ...,
    "tagKeys": ...,
}

parent.untag_resource(**kwargs)
  1. See UntagResourceRequestRequestTypeDef

update_environment#

Update your FinSpace environment.

Type annotations and code completion for session.create_client("finspace").update_environment method. boto3 documentation

# update_environment method definition

await def update_environment(
    self,
    *,
    environmentId: str,
    name: str = ...,
    description: str = ...,
    federationMode: FederationModeType = ...,  # (1)
    federationParameters: FederationParametersTypeDef = ...,  # (2)
) -> UpdateEnvironmentResponseTypeDef:  # (3)
    ...
  1. See FederationModeType
  2. See FederationParametersTypeDef
  3. See UpdateEnvironmentResponseTypeDef
# update_environment method usage example with argument unpacking

kwargs: UpdateEnvironmentRequestRequestTypeDef = {  # (1)
    "environmentId": ...,
}

parent.update_environment(**kwargs)
  1. See UpdateEnvironmentRequestRequestTypeDef

update_kx_cluster_databases#

Updates the databases mounted on a kdb cluster, which includes the changesetId and all the dbPaths to be cached.

Type annotations and code completion for session.create_client("finspace").update_kx_cluster_databases method. boto3 documentation

# update_kx_cluster_databases method definition

await def update_kx_cluster_databases(
    self,
    *,
    environmentId: str,
    clusterName: str,
    databases: Sequence[KxDatabaseConfigurationTypeDef],  # (1)
    clientToken: str = ...,
) -> Dict[str, Any]:
    ...
  1. See KxDatabaseConfigurationTypeDef
# update_kx_cluster_databases method usage example with argument unpacking

kwargs: UpdateKxClusterDatabasesRequestRequestTypeDef = {  # (1)
    "environmentId": ...,
    "clusterName": ...,
    "databases": ...,
}

parent.update_kx_cluster_databases(**kwargs)
  1. See UpdateKxClusterDatabasesRequestRequestTypeDef

update_kx_database#

Updates information for the given kdb database.

Type annotations and code completion for session.create_client("finspace").update_kx_database method. boto3 documentation

# update_kx_database method definition

await def update_kx_database(
    self,
    *,
    environmentId: str,
    databaseName: str,
    clientToken: str,
    description: str = ...,
) -> UpdateKxDatabaseResponseTypeDef:  # (1)
    ...
  1. See UpdateKxDatabaseResponseTypeDef
# update_kx_database method usage example with argument unpacking

kwargs: UpdateKxDatabaseRequestRequestTypeDef = {  # (1)
    "environmentId": ...,
    "databaseName": ...,
    "clientToken": ...,
}

parent.update_kx_database(**kwargs)
  1. See UpdateKxDatabaseRequestRequestTypeDef

update_kx_environment#

Updates information for the given kdb environment.

Type annotations and code completion for session.create_client("finspace").update_kx_environment method. boto3 documentation

# update_kx_environment method definition

await def update_kx_environment(
    self,
    *,
    environmentId: str,
    name: str = ...,
    description: str = ...,
    clientToken: str = ...,
) -> UpdateKxEnvironmentResponseTypeDef:  # (1)
    ...
  1. See UpdateKxEnvironmentResponseTypeDef
# update_kx_environment method usage example with argument unpacking

kwargs: UpdateKxEnvironmentRequestRequestTypeDef = {  # (1)
    "environmentId": ...,
}

parent.update_kx_environment(**kwargs)
  1. See UpdateKxEnvironmentRequestRequestTypeDef

update_kx_environment_network#

Updates environment network to connect to your internal network by using a transit gateway.

Type annotations and code completion for session.create_client("finspace").update_kx_environment_network method. boto3 documentation

# update_kx_environment_network method definition

await def update_kx_environment_network(
    self,
    *,
    environmentId: str,
    transitGatewayConfiguration: TransitGatewayConfigurationTypeDef = ...,  # (1)
    customDNSConfiguration: Sequence[CustomDNSServerTypeDef] = ...,  # (2)
    clientToken: str = ...,
) -> UpdateKxEnvironmentNetworkResponseTypeDef:  # (3)
    ...
  1. See TransitGatewayConfigurationTypeDef
  2. See CustomDNSServerTypeDef
  3. See UpdateKxEnvironmentNetworkResponseTypeDef
# update_kx_environment_network method usage example with argument unpacking

kwargs: UpdateKxEnvironmentNetworkRequestRequestTypeDef = {  # (1)
    "environmentId": ...,
}

parent.update_kx_environment_network(**kwargs)
  1. See UpdateKxEnvironmentNetworkRequestRequestTypeDef

update_kx_user#

Updates the user details.

Type annotations and code completion for session.create_client("finspace").update_kx_user method. boto3 documentation

# update_kx_user method definition

await def update_kx_user(
    self,
    *,
    environmentId: str,
    userName: str,
    iamRole: str,
    clientToken: str = ...,
) -> UpdateKxUserResponseTypeDef:  # (1)
    ...
  1. See UpdateKxUserResponseTypeDef
# update_kx_user method usage example with argument unpacking

kwargs: UpdateKxUserRequestRequestTypeDef = {  # (1)
    "environmentId": ...,
    "userName": ...,
    "iamRole": ...,
}

parent.update_kx_user(**kwargs)
  1. See UpdateKxUserRequestRequestTypeDef

__aenter__#

Type annotations and code completion for session.create_client("finspace").__aenter__ method. boto3 documentation

# __aenter__ method definition

await def __aenter__(
    self,
) -> finspaceClient:
    ...

__aexit__#

Type annotations and code completion for session.create_client("finspace").__aexit__ method. boto3 documentation

# __aexit__ method definition

await def __aexit__(
    self,
    exc_type: Any,
    exc_val: Any,
    exc_tb: Any,
) -> Any:
    ...

get_paginator#

Type annotations and code completion for session.create_client("finspace").get_paginator method with overloads.