describeLakeFormationIdentityCenterConfiguration method

Future<DescribeLakeFormationIdentityCenterConfigurationResponse> describeLakeFormationIdentityCenterConfiguration({
  1. String? catalogId,
})

Retrieves the instance ARN and application ARN for the connection.

May throw AccessDeniedException. May throw EntityNotFoundException. May throw InternalServiceException. May throw InvalidInputException. May throw OperationTimeoutException.

Parameter catalogId : The identifier for the Data Catalog. By default, the account ID. The Data Catalog is the persistent metadata store. It contains database definitions, table definitions, and other control information to manage your Lake Formation environment.

Implementation

Future<DescribeLakeFormationIdentityCenterConfigurationResponse>
    describeLakeFormationIdentityCenterConfiguration({
  String? catalogId,
}) async {
  final $payload = <String, dynamic>{
    if (catalogId != null) 'CatalogId': catalogId,
  };
  final response = await _protocol.send(
    payload: $payload,
    method: 'POST',
    requestUri: '/DescribeLakeFormationIdentityCenterConfiguration',
    exceptionFnMap: _exceptionFns,
  );
  return DescribeLakeFormationIdentityCenterConfigurationResponse.fromJson(
      response);
}