deleteColumnStatisticsForPartition method

Future<void> deleteColumnStatisticsForPartition({
  1. required String columnName,
  2. required String databaseName,
  3. required List<String> partitionValues,
  4. required String tableName,
  5. String? catalogId,
})

Delete the partition column statistics of a column.

The Identity and Access Management (IAM) permission required for this operation is DeletePartition.

May throw EntityNotFoundException. May throw InvalidInputException. May throw InternalServiceException. May throw OperationTimeoutException. May throw GlueEncryptionException.

Parameter columnName : Name of the column.

Parameter databaseName : The name of the catalog database where the partitions reside.

Parameter partitionValues : A list of partition values identifying the partition.

Parameter tableName : The name of the partitions' table.

Parameter catalogId : The ID of the Data Catalog where the partitions in question reside. If none is supplied, the AWS account ID is used by default.

Implementation

Future<void> deleteColumnStatisticsForPartition({
  required String columnName,
  required String databaseName,
  required List<String> partitionValues,
  required String tableName,
  String? catalogId,
}) async {
  ArgumentError.checkNotNull(columnName, 'columnName');
  _s.validateStringLength(
    'columnName',
    columnName,
    1,
    255,
    isRequired: true,
  );
  ArgumentError.checkNotNull(databaseName, 'databaseName');
  _s.validateStringLength(
    'databaseName',
    databaseName,
    1,
    255,
    isRequired: true,
  );
  ArgumentError.checkNotNull(partitionValues, 'partitionValues');
  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.DeleteColumnStatisticsForPartition'
  };
  await _protocol.send(
    method: 'POST',
    requestUri: '/',
    exceptionFnMap: _exceptionFns,
    // TODO queryParams
    headers: headers,
    payload: {
      'ColumnName': columnName,
      'DatabaseName': databaseName,
      'PartitionValues': partitionValues,
      'TableName': tableName,
      if (catalogId != null) 'CatalogId': catalogId,
    },
  );
}