getPartitionIndexes method

Future<GetPartitionIndexesResponse> getPartitionIndexes({
  1. required String databaseName,
  2. required String tableName,
  3. String? catalogId,
  4. String? nextToken,
})

Retrieves the partition indexes associated with a table.

May throw InternalServiceException. May throw OperationTimeoutException. May throw InvalidInputException. May throw EntityNotFoundException. May throw ConflictException.

Parameter databaseName : Specifies the name of a database from which you want to retrieve partition indexes.

Parameter tableName : Specifies the name of a table for which you want to retrieve the partition indexes.

Parameter catalogId : The catalog ID where the table resides.

Parameter nextToken : A continuation token, included if this is a continuation call.

Implementation

Future<GetPartitionIndexesResponse> getPartitionIndexes({
  required String databaseName,
  required String tableName,
  String? catalogId,
  String? nextToken,
}) async {
  ArgumentError.checkNotNull(databaseName, 'databaseName');
  _s.validateStringLength(
    'databaseName',
    databaseName,
    1,
    255,
    isRequired: true,
  );
  ArgumentError.checkNotNull(tableName, 'tableName');
  _s.validateStringLength(
    'tableName',
    tableName,
    1,
    255,
    isRequired: true,
  );
  _s.validateStringLength(
    'catalogId',
    catalogId,
    1,
    255,
  );
  final headers = <String, String>{
    'Content-Type': 'application/x-amz-json-1.1',
    'X-Amz-Target': 'AWSGlue.GetPartitionIndexes'
  };
  final jsonResponse = await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
    payload: {
      'DatabaseName': databaseName,
      'TableName': tableName,
      if (catalogId != null) 'CatalogId': catalogId,
      if (nextToken != null) 'NextToken': nextToken,
    },
  );

  return GetPartitionIndexesResponse.fromJson(jsonResponse.body);
}