deleteBrand method

Future<DeleteBrandResponse> deleteBrand({
  1. required String awsAccountId,
  2. required String brandId,
})
Deletes an Quick Sight brand.

May throw AccessDeniedException. May throw ConflictException. May throw InternalServerException. May throw InvalidRequestException. May throw ResourceNotFoundException. May throw ThrottlingException.

Parameter awsAccountId : The ID of the Amazon Web Services account that owns the brand.

Parameter brandId : The ID of the Quick brand.

Implementation

Future<DeleteBrandResponse> deleteBrand({
  required String awsAccountId,
  required String brandId,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/accounts/${Uri.encodeComponent(awsAccountId)}/brands/${Uri.encodeComponent(brandId)}',
    exceptionFnMap: _exceptionFns,
  );
  return DeleteBrandResponse.fromJson(response);
}