deleteAccessLogSubscription method

Future<void> deleteAccessLogSubscription({
  1. required String accessLogSubscriptionIdentifier,
})

Deletes the specified access log subscription.

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

Parameter accessLogSubscriptionIdentifier : The ID or ARN of the access log subscription.

Implementation

Future<void> deleteAccessLogSubscription({
  required String accessLogSubscriptionIdentifier,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'DELETE',
    requestUri:
        '/accesslogsubscriptions/${Uri.encodeComponent(accessLogSubscriptionIdentifier)}',
    exceptionFnMap: _exceptionFns,
  );
}