finspace / Paginator / ListKxEnvironments
ListKxEnvironments#
- class finspace.Paginator.ListKxEnvironments#
paginator = client.get_paginator('list_kx_environments')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
finspace.Client.list_kx_environments()
.See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a
NextToken
will be provided in the output that you can use to resume pagination.PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the
NextToken
from a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'environments': [ { 'name': 'string', 'environmentId': 'string', 'awsAccountId': 'string', 'status': 'CREATE_REQUESTED'|'CREATING'|'CREATED'|'DELETE_REQUESTED'|'DELETING'|'DELETED'|'FAILED_CREATION'|'RETRY_DELETION'|'FAILED_DELETION'|'UPDATE_NETWORK_REQUESTED'|'UPDATING_NETWORK'|'FAILED_UPDATING_NETWORK'|'SUSPENDED', 'tgwStatus': 'NONE'|'UPDATE_REQUESTED'|'UPDATING'|'FAILED_UPDATE'|'SUCCESSFULLY_UPDATED', 'dnsStatus': 'NONE'|'UPDATE_REQUESTED'|'UPDATING'|'FAILED_UPDATE'|'SUCCESSFULLY_UPDATED', 'errorMessage': 'string', 'description': 'string', 'environmentArn': 'string', 'kmsKeyId': 'string', 'dedicatedServiceAccountId': 'string', 'transitGatewayConfiguration': { 'transitGatewayID': 'string', 'routableCIDRSpace': 'string' }, 'customDNSConfiguration': [ { 'customDNSServerName': 'string', 'customDNSServerIP': 'string' }, ], 'creationTimestamp': datetime(2015, 1, 1), 'updateTimestamp': datetime(2015, 1, 1), 'availabilityZoneIds': [ 'string', ], 'certificateAuthorityArn': 'string' }, ], 'NextToken': 'string' }
Response Structure
(dict) –
environments (list) –
A list of environments in an account.
(dict) –
The details of a kdb environment.
name (string) –
The name of the kdb environment.
environmentId (string) –
A unique identifier for the kdb environment.
awsAccountId (string) –
The unique identifier of the AWS account in which you create the kdb environment.
status (string) –
The status of the environment creation.
CREATE_REQUESTED – Environment creation has been requested.
CREATING – Environment is in the process of being created.
FAILED_CREATION – Environment creation has failed.
CREATED – Environment is successfully created and is currently active.
DELETE REQUESTED – Environment deletion has been requested.
DELETING – Environment is in the process of being deleted.
RETRY_DELETION – Initial environment deletion failed, system is reattempting delete.
DELETED – Environment has been deleted.
FAILED_DELETION – Environment deletion has failed.
tgwStatus (string) –
The status of the network configuration.
dnsStatus (string) –
The status of DNS configuration.
errorMessage (string) –
Specifies the error message that appears if a flow fails.
description (string) –
A description of the kdb environment.
environmentArn (string) –
The Amazon Resource Name (ARN) of your kdb environment.
kmsKeyId (string) –
The unique identifier of the KMS key.
dedicatedServiceAccountId (string) –
A unique identifier for the AWS environment infrastructure account.
transitGatewayConfiguration (dict) –
Specifies the transit gateway and network configuration to connect the kdb environment to an internal network.
transitGatewayID (string) –
The identifier of the transit gateway created by the customer to connect outbound traffics from kdb network to your internal network.
routableCIDRSpace (string) –
The routing CIDR on behalf of kdb environment. It could be any “/26 range in the 100.64.0.0 CIDR space. After providing, it will be added to the customer’s transit gateway routing table so that the traffics could be routed to kdb network.
customDNSConfiguration (list) –
A list of DNS server name and server IP. This is used to set up Route-53 outbound resolvers.
(dict) –
A list of DNS server name and server IP. This is used to set up Route-53 outbound resolvers.
customDNSServerName (string) –
The name of the DNS server.
customDNSServerIP (string) –
The IP address of the DNS server.
creationTimestamp (datetime) –
The timestamp at which the kdb environment 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.
updateTimestamp (datetime) –
The timestamp at which the kdb environment was modified 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.
availabilityZoneIds (list) –
The identifier of the availability zones where subnets for the environment are created.
(string) –
certificateAuthorityArn (string) –
The Amazon Resource Name (ARN) of the certificate authority:
NextToken (string) –
A token to resume pagination.