deleteBillingGroup method

Future<DeleteBillingGroupOutput> deleteBillingGroup({
  1. required String arn,
})

Deletes a billing group.

May throw AccessDeniedException. May throw InternalServerException. May throw ThrottlingException. May throw ValidationException.

Parameter arn : The Amazon Resource Name (ARN) of the billing group that you're deleting.

Implementation

Future<DeleteBillingGroupOutput> deleteBillingGroup({
  required String arn,
}) async {
  final $payload = <String, dynamic>{
    'Arn': arn,
  };
  final response = await _protocol.send(
    payload: $payload,
    method: 'POST',
    requestUri: '/delete-billing-group',
    exceptionFnMap: _exceptionFns,
  );
  return DeleteBillingGroupOutput.fromJson(response);
}