deleteCustomAction method

Future<void> deleteCustomAction({
  1. required String customActionArn,
})

Deletes a custom action.

May throw InternalServiceError. May throw InvalidRequestException. May throw ResourceNotFoundException. May throw UnauthorizedException.

Parameter customActionArn : The fully defined ARN of the custom action.

Implementation

Future<void> deleteCustomAction({
  required String customActionArn,
}) async {
  final $payload = <String, dynamic>{
    'CustomActionArn': customActionArn,
  };
  final response = await _protocol.send(
    payload: $payload,
    method: 'POST',
    requestUri: '/delete-custom-action',
    exceptionFnMap: _exceptionFns,
  );
}